diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
index b6baf49bf..e87c3e0c6 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.yml
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -21,6 +21,7 @@ body:
- [The installation instructions](https://docs.paperless-ngx.com/setup/#installation).
- [Existing issues and discussions](https://github.com/paperless-ngx/paperless-ngx/search?q=&type=issues).
- Disable any custom container initialization scripts, if using
+ - Remove any third-party parser plugins — issues caused by or requiring changes to a third-party plugin will be closed without investigation.
If you encounter issues while installing or configuring Paperless-ngx, please post in the ["Support" section of the discussions](https://github.com/paperless-ngx/paperless-ngx/discussions/new?category=support).
- type: textarea
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index dfca17dbb..8ac712f97 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -157,6 +157,9 @@ updates:
postgres:
patterns:
- "docker.io/library/postgres*"
+ greenmail:
+ patterns:
+ - "docker.io/greenmail*"
- package-ecosystem: "pre-commit" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml
index 3203d7291..cff139e8c 100644
--- a/.github/workflows/ci-backend.yml
+++ b/.github/workflows/ci-backend.yml
@@ -21,9 +21,10 @@ jobs:
backend_changed: ${{ steps.force.outputs.run_all == 'true' || steps.filter.outputs.backend == 'true' }}
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
+ persist-credentials: false
- name: Decide run mode
id: force
run: |
@@ -49,7 +50,7 @@ jobs:
- name: Detect changes
id: filter
if: steps.force.outputs.run_all != 'true'
- uses: dorny/paths-filter@v3.0.2
+ uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
with:
base: ${{ steps.range.outputs.base }}
ref: ${{ steps.range.outputs.ref }}
@@ -71,18 +72,20 @@ jobs:
fail-fast: false
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Start containers
run: |
docker compose --file docker/compose/docker-compose.ci-test.yml pull --quiet
docker compose --file docker/compose/docker-compose.ci-test.yml up --detach
- name: Set up Python
id: setup-python
- uses: actions/setup-python@v6.2.0
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "${{ matrix.python-version }}"
- name: Install uv
- uses: astral-sh/setup-uv@v7.3.1
+ uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
with:
version: ${{ env.DEFAULT_UV_VERSION }}
enable-cache: true
@@ -119,13 +122,13 @@ jobs:
pytest
- name: Upload test results to Codecov
if: always()
- uses: codecov/codecov-action@v5.5.2
+ uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: backend-python-${{ matrix.python-version }}
files: junit.xml
report_type: test_results
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v5.5.2
+ uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: backend-python-${{ matrix.python-version }}
files: coverage.xml
@@ -144,14 +147,16 @@ jobs:
DEFAULT_PYTHON: "3.12"
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Set up Python
id: setup-python
- uses: actions/setup-python@v6.2.0
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "${{ env.DEFAULT_PYTHON }}"
- name: Install uv
- uses: astral-sh/setup-uv@v7.3.1
+ uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
with:
version: ${{ env.DEFAULT_UV_VERSION }}
enable-cache: true
@@ -173,7 +178,7 @@ jobs:
check \
src/
- name: Cache Mypy
- uses: actions/cache@v5.0.3
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: .mypy_cache
# Keyed by OS, Python version, and dependency hashes
diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml
index 69fff92d4..43b79728d 100644
--- a/.github/workflows/ci-docker.yml
+++ b/.github/workflows/ci-docker.yml
@@ -41,7 +41,9 @@ jobs:
ref-name: ${{ steps.ref.outputs.name }}
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Determine ref name
id: ref
run: |
@@ -104,9 +106,9 @@ jobs:
echo "repository=${repo_name}"
echo "name=${repo_name}" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v4.0.0
+ uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Login to GitHub Container Registry
- uses: docker/login-action@v4.0.0
+ uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
@@ -119,7 +121,7 @@ jobs:
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Docker metadata
id: docker-meta
- uses: docker/metadata-action@v5.10.0
+ uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
with:
images: |
${{ env.REGISTRY }}/${{ steps.repo.outputs.name }}
@@ -130,7 +132,7 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
- name: Build and push by digest
id: build
- uses: docker/build-push-action@v6.19.2
+ uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
with:
context: .
file: ./Dockerfile
@@ -152,7 +154,7 @@ jobs:
echo "${digest}" > "/tmp/digests/digest-${{ matrix.arch }}.txt"
- name: Upload digest
if: steps.check-push.outputs.should-push == 'true'
- uses: actions/upload-artifact@v7.0.0
+ uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: digests-${{ matrix.arch }}
path: /tmp/digests/digest-${{ matrix.arch }}.txt
@@ -169,7 +171,7 @@ jobs:
packages: write
steps:
- name: Download digests
- uses: actions/download-artifact@v8.0.0
+ uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
path: /tmp/digests
pattern: digest-*.txt
@@ -179,29 +181,29 @@ jobs:
echo "Downloaded digests:"
ls -la /tmp/digests/
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v4.0.0
+ uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Login to GitHub Container Registry
- uses: docker/login-action@v4.0.0
+ uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
if: needs.build-arch.outputs.push-external == 'true'
- uses: docker/login-action@v4.0.0
+ uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to Quay.io
if: needs.build-arch.outputs.push-external == 'true'
- uses: docker/login-action@v4.0.0
+ uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Docker metadata
id: docker-meta
- uses: docker/metadata-action@v5.10.0
+ uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
with:
images: |
${{ env.REGISTRY }}/${{ needs.build-arch.outputs.repository }}
diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml
index 81d31dffe..a598a3c9d 100644
--- a/.github/workflows/ci-docs.yml
+++ b/.github/workflows/ci-docs.yml
@@ -23,9 +23,10 @@ jobs:
docs_changed: ${{ steps.force.outputs.run_all == 'true' || steps.filter.outputs.docs == 'true' }}
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
+ persist-credentials: false
- name: Decide run mode
id: force
run: |
@@ -51,7 +52,7 @@ jobs:
- name: Detect changes
id: filter
if: steps.force.outputs.run_all != 'true'
- uses: dorny/paths-filter@v3.0.2
+ uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
with:
base: ${{ steps.range.outputs.base }}
ref: ${{ steps.range.outputs.ref }}
@@ -68,16 +69,18 @@ jobs:
name: Build Documentation
runs-on: ubuntu-24.04
steps:
- - uses: actions/configure-pages@v5.0.0
+ - uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Set up Python
id: setup-python
- uses: actions/setup-python@v6.2.0
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
- name: Install uv
- uses: astral-sh/setup-uv@v7.3.1
+ uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
with:
version: ${{ env.DEFAULT_UV_VERSION }}
enable-cache: true
@@ -93,7 +96,7 @@ jobs:
--frozen \
zensical build --clean
- name: Upload GitHub Pages artifact
- uses: actions/upload-pages-artifact@v4.0.0
+ uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
with:
path: site
name: github-pages-${{ github.run_id }}-${{ github.run_attempt }}
@@ -107,7 +110,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy GitHub Pages
- uses: actions/deploy-pages@v4.0.5
+ uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0
id: deployment
with:
artifact_name: github-pages-${{ github.run_id }}-${{ github.run_attempt }}
diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml
index bfd2ee5e4..9d4e23a1a 100644
--- a/.github/workflows/ci-frontend.yml
+++ b/.github/workflows/ci-frontend.yml
@@ -18,7 +18,7 @@ jobs:
frontend_changed: ${{ steps.force.outputs.run_all == 'true' || steps.filter.outputs.frontend == 'true' }}
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Decide run mode
@@ -46,7 +46,7 @@ jobs:
- name: Detect changes
id: filter
if: steps.force.outputs.run_all != 'true'
- uses: dorny/paths-filter@v3.0.2
+ uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
with:
base: ${{ steps.range.outputs.base }}
ref: ${{ steps.range.outputs.ref }}
@@ -61,20 +61,22 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
+ uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- name: Use Node.js 24
- uses: actions/setup-node@v6.3.0
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.x
cache: 'pnpm'
cache-dependency-path: 'src-ui/pnpm-lock.yaml'
- name: Cache frontend dependencies
id: cache-frontend-deps
- uses: actions/cache@v5.0.3
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
~/.pnpm-store
@@ -89,19 +91,21 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
+ uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- name: Use Node.js 24
- uses: actions/setup-node@v6.3.0
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.x
cache: 'pnpm'
cache-dependency-path: 'src-ui/pnpm-lock.yaml'
- name: Cache frontend dependencies
- uses: actions/cache@v5.0.3
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
~/.pnpm-store
@@ -124,19 +128,21 @@ jobs:
shard-count: [4]
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
+ uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- name: Use Node.js 24
- uses: actions/setup-node@v6.3.0
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.x
cache: 'pnpm'
cache-dependency-path: 'src-ui/pnpm-lock.yaml'
- name: Cache frontend dependencies
- uses: actions/cache@v5.0.3
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
~/.pnpm-store
@@ -148,13 +154,13 @@ jobs:
run: cd src-ui && pnpm run test --max-workers=2 --shard=${{ matrix.shard-index }}/${{ matrix.shard-count }}
- name: Upload test results to Codecov
if: always()
- uses: codecov/codecov-action@v5.5.2
+ uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: frontend-node-${{ matrix.node-version }}
directory: src-ui/
report_type: test_results
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v5.5.2
+ uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: frontend-node-${{ matrix.node-version }}
directory: src-ui/coverage/
@@ -175,19 +181,21 @@ jobs:
shard-count: [2]
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
+ uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- name: Use Node.js 24
- uses: actions/setup-node@v6.3.0
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.x
cache: 'pnpm'
cache-dependency-path: 'src-ui/pnpm-lock.yaml'
- name: Cache frontend dependencies
- uses: actions/cache@v5.0.3
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
~/.pnpm-store
@@ -206,21 +214,22 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 2
+ persist-credentials: false
- name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
+ uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- name: Use Node.js 24
- uses: actions/setup-node@v6.3.0
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.x
cache: 'pnpm'
cache-dependency-path: 'src-ui/pnpm-lock.yaml'
- name: Cache frontend dependencies
- uses: actions/cache@v5.0.3
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
~/.pnpm-store
diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml
index c4df7d893..314250719 100644
--- a/.github/workflows/ci-lint.yml
+++ b/.github/workflows/ci-lint.yml
@@ -15,10 +15,12 @@ jobs:
runs-on: ubuntu-slim
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
- name: Install Python
- uses: actions/setup-python@v6.2.0
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.14"
- name: Run prek
- uses: j178/prek-action@v1.1.1
+ uses: j178/prek-action@53276d8b0d10f8b6672aa85b4588c6921d0370cc # v2.0.1
diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml
index bbd9e6b09..030e3bcad 100644
--- a/.github/workflows/ci-release.yml
+++ b/.github/workflows/ci-release.yml
@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Wait for Docker build
- uses: lewagon/wait-on-check-action@v1.5.0
+ uses: lewagon/wait-on-check-action@74049309dfeff245fe8009a0137eacf28136cb3c # v1.5.0
with:
ref: ${{ github.sha }}
check-name: 'Build Docker Image'
@@ -28,14 +28,16 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
# ---- Frontend Build ----
- name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
+ uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- name: Use Node.js 24
- uses: actions/setup-node@v6.3.0
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.x
cache: 'pnpm'
@@ -47,11 +49,11 @@ jobs:
# ---- Backend Setup ----
- name: Set up Python
id: setup-python
- uses: actions/setup-python@v6.2.0
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
- name: Install uv
- uses: astral-sh/setup-uv@v7.3.1
+ uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
with:
version: ${{ env.DEFAULT_UV_VERSION }}
enable-cache: true
@@ -118,7 +120,7 @@ jobs:
sudo chown -R 1000:1000 paperless-ngx/
tar -cJf paperless-ngx.tar.xz paperless-ngx/
- name: Upload release artifact
- uses: actions/upload-artifact@v7.0.0
+ uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: release
path: dist/paperless-ngx.tar.xz
@@ -133,7 +135,7 @@ jobs:
version: ${{ steps.get-version.outputs.version }}
steps:
- name: Download release artifact
- uses: actions/download-artifact@v8.0.0
+ uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: release
path: ./
@@ -148,7 +150,7 @@ jobs:
fi
- name: Create release and changelog
id: create-release
- uses: release-drafter/release-drafter@v6.2.0
+ uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7.1.1
with:
name: Paperless-ngx ${{ steps.get-version.outputs.version }}
tag: ${{ steps.get-version.outputs.version }}
@@ -159,7 +161,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload release archive
- uses: shogo82148/actions-upload-release-asset@v1.9.2
+ uses: shogo82148/actions-upload-release-asset@96bc1f0cb850b65efd58a6b5eaa0a69f88d38077 # v1.10.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
upload_url: ${{ steps.create-release.outputs.upload_url }}
@@ -176,16 +178,17 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: main
+ persist-credentials: true # for pushing changelog branch
- name: Set up Python
id: setup-python
- uses: actions/setup-python@v6.2.0
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
- name: Install uv
- uses: astral-sh/setup-uv@v7.3.1
+ uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
with:
version: ${{ env.DEFAULT_UV_VERSION }}
enable-cache: true
@@ -218,7 +221,7 @@ jobs:
git commit -am "Changelog ${{ needs.publish-release.outputs.version }} - GHA"
git push origin ${{ needs.publish-release.outputs.version }}-changelog
- name: Create pull request
- uses: actions/github-script@v8.0.0
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
const { repo, owner } = context.repo;
diff --git a/.github/workflows/ci-static-analysis.yml b/.github/workflows/ci-static-analysis.yml
new file mode 100644
index 000000000..99388354a
--- /dev/null
+++ b/.github/workflows/ci-static-analysis.yml
@@ -0,0 +1,42 @@
+name: Static Analysis
+on:
+ push:
+ branches-ignore:
+ - 'translations**'
+ pull_request:
+ branches-ignore:
+ - 'translations**'
+ workflow_dispatch:
+concurrency:
+ group: static-analysis-${{ github.event.pull_request.number || github.ref }}
+ cancel-in-progress: true
+permissions:
+ contents: read
+jobs:
+ zizmor:
+ name: Run zizmor
+ runs-on: ubuntu-24.04
+ permissions:
+ contents: read
+ actions: read
+ security-events: write
+ steps:
+ - name: Checkout
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
+ - name: Run zizmor
+ uses: zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2
+ semgrep:
+ name: Semgrep CE
+ runs-on: ubuntu-24.04
+ container:
+ image: semgrep/semgrep:1.155.0@sha256:cc869c685dcc0fe497c86258da9f205397d8108e56d21a86082ea4886e52784d
+ if: github.actor != 'dependabot[bot]'
+ steps:
+ - name: Checkout
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
+ - name: Run Semgrep
+ run: semgrep scan --config auto
diff --git a/.github/workflows/cleanup-tags.yml b/.github/workflows/cleanup-tags.yml
index bc2ae655f..426554777 100644
--- a/.github/workflows/cleanup-tags.yml
+++ b/.github/workflows/cleanup-tags.yml
@@ -27,7 +27,7 @@ jobs:
steps:
- name: Clean temporary images
if: "${{ env.TOKEN != '' }}"
- uses: stumpylog/image-cleaner-action/ephemeral@v0.12.0
+ uses: stumpylog/image-cleaner-action/ephemeral@4fe057d991d63b8f6d5d22c40f17c1bca2226537 # v0.12.0
with:
token: "${{ env.TOKEN }}"
owner: "${{ github.repository_owner }}"
@@ -53,7 +53,7 @@ jobs:
steps:
- name: Clean untagged images
if: "${{ env.TOKEN != '' }}"
- uses: stumpylog/image-cleaner-action/untagged@v0.12.0
+ uses: stumpylog/image-cleaner-action/untagged@4fe057d991d63b8f6d5d22c40f17c1bca2226537 # v0.12.0
with:
token: "${{ env.TOKEN }}"
owner: "${{ github.repository_owner }}"
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 32b1fc638..e295e938d 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -34,10 +34,12 @@ jobs:
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ persist-credentials: false
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@v4.32.5
+ uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -45,4 +47,4 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v4.32.5
+ uses: github/codeql-action/analyze@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml
index 63853f6c5..29b4be02f 100644
--- a/.github/workflows/crowdin.yml
+++ b/.github/workflows/crowdin.yml
@@ -13,11 +13,12 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
token: ${{ secrets.PNGX_BOT_PAT }}
+ persist-credentials: false
- name: crowdin action
- uses: crowdin/github-action@v2.15.0
+ uses: crowdin/github-action@8818ff65bfc4322384f983ea37e3926948c11745 # v2.15.0
with:
upload_translations: false
download_translations: true
diff --git a/.github/workflows/pr-bot.yml b/.github/workflows/pr-bot.yml
index f36e9cd9f..e9f976608 100644
--- a/.github/workflows/pr-bot.yml
+++ b/.github/workflows/pr-bot.yml
@@ -10,7 +10,7 @@ jobs:
issues: read
pull-requests: write
steps:
- - uses: peakoss/anti-slop@v0.2.1
+ - uses: peakoss/anti-slop@85daca1880e9e1af197fc06ea03349daf08f4202 # v0.2.1
with:
max-failures: 4
failure-add-pr-labels: 'ai'
@@ -23,11 +23,11 @@ jobs:
steps:
- name: Label PR by file path or branch name
# see .github/labeler.yml for the labeler config
- uses: actions/labeler@v6.0.1
+ uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Label by size
- uses: Gascon1/pr-size-labeler@v1.3.0
+ uses: Gascon1/pr-size-labeler@deff8ed00a76639a7c0f197525bafa3350ba4c36 # v1.3.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
xs_label: 'small-change'
@@ -37,7 +37,7 @@ jobs:
fail_if_xl: 'false'
excluded_files: /\.lock$/ /\.txt$/ ^src-ui/pnpm-lock\.yaml$ ^src-ui/messages\.xlf$ ^src/locale/en_US/LC_MESSAGES/django\.po$
- name: Label by PR title
- uses: actions/github-script@v8.0.0
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
const pr = context.payload.pull_request;
@@ -63,7 +63,7 @@ jobs:
}
- name: Label bot-generated PRs
if: ${{ contains(github.actor, 'dependabot') || contains(github.actor, 'crowdin-bot') }}
- uses: actions/github-script@v8.0.0
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
const pr = context.payload.pull_request;
@@ -88,7 +88,7 @@ jobs:
}
- name: Welcome comment
if: ${{ !contains(github.actor, 'bot') }}
- uses: actions/github-script@v8.0.0
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
const pr = context.payload.pull_request;
diff --git a/.github/workflows/project-actions.yml b/.github/workflows/project-actions.yml
index 289a83115..bc26aaf0d 100644
--- a/.github/workflows/project-actions.yml
+++ b/.github/workflows/project-actions.yml
@@ -19,6 +19,6 @@ jobs:
if: github.event_name == 'pull_request_target' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.pull_request.user.login != 'dependabot'
steps:
- name: Label PR with release-drafter
- uses: release-drafter/release-drafter@v6.2.0
+ uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/repo-maintenance.yml b/.github/workflows/repo-maintenance.yml
index 93d41f5a6..1d4903193 100644
--- a/.github/workflows/repo-maintenance.yml
+++ b/.github/workflows/repo-maintenance.yml
@@ -15,7 +15,7 @@ jobs:
if: github.repository_owner == 'paperless-ngx'
runs-on: ubuntu-24.04
steps:
- - uses: actions/stale@v10.2.0
+ - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
with:
days-before-stale: 7
days-before-close: 14
@@ -37,7 +37,7 @@ jobs:
if: github.repository_owner == 'paperless-ngx'
runs-on: ubuntu-24.04
steps:
- - uses: dessant/lock-threads@v6.0.0
+ - uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6.0.0
with:
issue-inactive-days: '30'
pr-inactive-days: '30'
@@ -57,7 +57,7 @@ jobs:
if: github.repository_owner == 'paperless-ngx'
runs-on: ubuntu-24.04
steps:
- - uses: actions/github-script@v8.0.0
+ - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
function sleep(ms) {
@@ -114,7 +114,7 @@ jobs:
if: github.repository_owner == 'paperless-ngx'
runs-on: ubuntu-24.04
steps:
- - uses: actions/github-script@v8.0.0
+ - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
function sleep(ms) {
@@ -206,7 +206,7 @@ jobs:
if: github.repository_owner == 'paperless-ngx'
runs-on: ubuntu-24.04
steps:
- - uses: actions/github-script@v8.0.0
+ - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
function sleep(ms) {
diff --git a/.github/workflows/translate-strings.yml b/.github/workflows/translate-strings.yml
index 220aee9cc..ad894abe7 100644
--- a/.github/workflows/translate-strings.yml
+++ b/.github/workflows/translate-strings.yml
@@ -11,21 +11,22 @@ jobs:
contents: write
steps:
- name: Checkout code
- uses: actions/checkout@v6.0.2
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
env:
GH_REF: ${{ github.ref }} # sonar rule:githubactions:S7630 - avoid injection
with:
token: ${{ secrets.PNGX_BOT_PAT }}
ref: ${{ env.GH_REF }}
+ persist-credentials: true # for pushing translation branch
- name: Set up Python
id: setup-python
- uses: actions/setup-python@v6.2.0
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
- name: Install system dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -qq --no-install-recommends gettext
- name: Install uv
- uses: astral-sh/setup-uv@v7.3.1
+ uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
with:
enable-cache: true
- name: Install backend python dependencies
@@ -36,18 +37,18 @@ jobs:
- name: Generate backend translation strings
run: cd src/ && uv run manage.py makemessages -l en_US -i "samples*"
- name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
+ uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- name: Use Node.js 24
- uses: actions/setup-node@v6.3.0
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.x
cache: 'pnpm'
cache-dependency-path: 'src-ui/pnpm-lock.yaml'
- name: Cache frontend dependencies
id: cache-frontend-deps
- uses: actions/cache@v5.0.3
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
~/.pnpm-store
@@ -63,7 +64,7 @@ jobs:
cd src-ui
pnpm run ng extract-i18n
- name: Commit changes
- uses: stefanzweifel/git-auto-commit-action@v7.1.0
+ uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0
with:
file_pattern: 'src-ui/messages.xlf src/locale/en_US/LC_MESSAGES/django.po'
commit_message: "Auto translate strings"
diff --git a/.mypy-baseline.txt b/.mypy-baseline.txt
index 2700bfc71..61ffe9c10 100644
--- a/.mypy-baseline.txt
+++ b/.mypy-baseline.txt
@@ -2437,17 +2437,3 @@ src/paperless_tesseract/tests/test_parser_custom_settings.py:0: error: Item "Non
src/paperless_tesseract/tests/test_parser_custom_settings.py:0: error: Item "None" of "ApplicationConfiguration | None" has no attribute "unpaper_clean" [union-attr]
src/paperless_tesseract/tests/test_parser_custom_settings.py:0: error: Item "None" of "ApplicationConfiguration | None" has no attribute "unpaper_clean" [union-attr]
src/paperless_tesseract/tests/test_parser_custom_settings.py:0: error: Item "None" of "ApplicationConfiguration | None" has no attribute "user_args" [union-attr]
-src/paperless_text/parsers.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def]
-src/paperless_text/parsers.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def]
-src/paperless_text/parsers.py:0: error: Incompatible types in assignment (expression has type "str", variable has type "None") [assignment]
-src/paperless_text/signals.py:0: error: Function is missing a type annotation [no-untyped-def]
-src/paperless_text/signals.py:0: error: Function is missing a type annotation [no-untyped-def]
-src/paperless_tika/parsers.py:0: error: Argument 1 to "make_thumbnail_from_pdf" has incompatible type "None"; expected "Path" [arg-type]
-src/paperless_tika/parsers.py:0: error: Function is missing a return type annotation [no-untyped-def]
-src/paperless_tika/parsers.py:0: error: Function is missing a type annotation [no-untyped-def]
-src/paperless_tika/parsers.py:0: error: Function is missing a type annotation [no-untyped-def]
-src/paperless_tika/parsers.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def]
-src/paperless_tika/parsers.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def]
-src/paperless_tika/parsers.py:0: error: Incompatible types in assignment (expression has type "str | None", variable has type "None") [assignment]
-src/paperless_tika/signals.py:0: error: Function is missing a type annotation [no-untyped-def]
-src/paperless_tika/signals.py:0: error: Function is missing a type annotation [no-untyped-def]
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 073dbac1d..6c483467d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -50,12 +50,12 @@ repos:
- 'prettier-plugin-organize-imports@4.3.0'
# Python hooks
- repo: https://github.com/astral-sh/ruff-pre-commit
- rev: v0.15.5
+ rev: v0.15.8
hooks:
- id: ruff-check
- id: ruff-format
- repo: https://github.com/tox-dev/pyproject-fmt
- rev: "v2.12.1"
+ rev: "v2.21.0"
hooks:
- id: pyproject-fmt
# Dockerfile hooks
diff --git a/Dockerfile b/Dockerfile
index ac6143162..0b8886c61 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -237,8 +237,8 @@ RUN set -eux \
&& echo "Adjusting all permissions" \
&& chown --from root:root --changes --recursive paperless:paperless /usr/src/paperless \
&& echo "Collecting static files" \
- && s6-setuidgid paperless python3 manage.py collectstatic --clear --no-input --link \
- && s6-setuidgid paperless python3 manage.py compilemessages \
+ && PAPERLESS_SECRET_KEY=build-time-dummy s6-setuidgid paperless python3 manage.py collectstatic --clear --no-input --link \
+ && PAPERLESS_SECRET_KEY=build-time-dummy s6-setuidgid paperless python3 manage.py compilemessages \
&& /usr/local/bin/deduplicate.py --verbose /usr/src/paperless/static/
VOLUME ["/usr/src/paperless/data", \
diff --git a/docker/compose/docker-compose.ci-test.yml b/docker/compose/docker-compose.ci-test.yml
index 545019eec..5cb4bcd39 100644
--- a/docker/compose/docker-compose.ci-test.yml
+++ b/docker/compose/docker-compose.ci-test.yml
@@ -18,13 +18,13 @@ services:
- "--log-level=warn"
- "--log-format=text"
tika:
- image: docker.io/apache/tika:latest
+ image: docker.io/apache/tika:3.2.3.0
hostname: tika
container_name: tika
network_mode: host
restart: unless-stopped
greenmail:
- image: greenmail/standalone:2.1.8
+ image: docker.io/greenmail/standalone:2.1.8
hostname: greenmail
container_name: greenmail
environment:
diff --git a/docker/compose/docker-compose.env b/docker/compose/docker-compose.env
index 75eeeed09..af6a6e8fe 100644
--- a/docker/compose/docker-compose.env
+++ b/docker/compose/docker-compose.env
@@ -17,9 +17,9 @@
# (if doing so please consider security measures such as reverse proxy)
#PAPERLESS_URL=https://paperless.example.com
-# Adjust this key if you plan to make paperless available publicly. It should
-# be a very long sequence of random characters. You don't need to remember it.
-#PAPERLESS_SECRET_KEY=change-me
+# Required. A unique secret key for session tokens and signing.
+# Generate with: python3 -c "import secrets; print(secrets.token_urlsafe(64))"
+PAPERLESS_SECRET_KEY=change-me
# Use this variable to set a timezone for the Paperless Docker containers. Defaults to UTC.
#PAPERLESS_TIME_ZONE=America/Los_Angeles
diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-modify-user/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-modify-user/run
index aa617355d..f8430aee2 100755
--- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-modify-user/run
+++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-modify-user/run
@@ -2,6 +2,17 @@
# shellcheck shell=bash
declare -r log_prefix="[init-user]"
+# When the container is started as a non-root user (e.g. via `user: 999:999`
+# in Docker Compose), usermod/groupmod require root and are meaningless.
+# USERMAP_* variables only apply to the root-started path.
+if [[ -n "${USER_IS_NON_ROOT}" ]]; then
+ if [[ -n "${USERMAP_UID}" || -n "${USERMAP_GID}" ]]; then
+ echo "${log_prefix} WARNING: USERMAP_UID/USERMAP_GID are set but have no effect when the container is started as a non-root user"
+ fi
+ echo "${log_prefix} Running as non-root user ($(id --user):$(id --group)), skipping UID/GID remapping"
+ exit 0
+fi
+
declare -r usermap_original_uid=$(id -u paperless)
declare -r usermap_original_gid=$(id -g paperless)
declare -r usermap_new_uid=${USERMAP_UID:-$usermap_original_uid}
diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-search-index/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-search-index/run
index 2208faf67..8f6feeb7f 100755
--- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-search-index/run
+++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-search-index/run
@@ -3,26 +3,10 @@
declare -r log_prefix="[init-index]"
-declare -r index_version=9
-declare -r data_dir="${PAPERLESS_DATA_DIR:-/usr/src/paperless/data}"
-declare -r index_version_file="${data_dir}/.index_version"
-
-update_index () {
- echo "${log_prefix} Search index out of date. Updating..."
- cd "${PAPERLESS_SRC_DIR}"
- if [[ -n "${USER_IS_NON_ROOT}" ]]; then
- python3 manage.py document_index reindex --no-progress-bar
- echo ${index_version} | tee "${index_version_file}" > /dev/null
- else
- s6-setuidgid paperless python3 manage.py document_index reindex --no-progress-bar
- echo ${index_version} | s6-setuidgid paperless tee "${index_version_file}" > /dev/null
- fi
-}
-
-if [[ (! -f "${index_version_file}") ]]; then
- echo "${log_prefix} No index version file found"
- update_index
-elif [[ $(<"${index_version_file}") != "$index_version" ]]; then
- echo "${log_prefix} index version updated"
- update_index
+echo "${log_prefix} Checking search index..."
+cd "${PAPERLESS_SRC_DIR}"
+if [[ -n "${USER_IS_NON_ROOT}" ]]; then
+ python3 manage.py document_index reindex --if-needed --no-progress-bar
+else
+ s6-setuidgid paperless python3 manage.py document_index reindex --if-needed --no-progress-bar
fi
diff --git a/docs/administration.md b/docs/administration.md
index e55b899f5..013ac9fdd 100644
--- a/docs/administration.md
+++ b/docs/administration.md
@@ -180,6 +180,16 @@ following:
This might not actually do anything. Not every new paperless version
comes with new database migrations.
+4. Rebuild the search index if needed.
+
+ ```shell-session
+ cd src
+ python3 manage.py document_index reindex --if-needed
+ ```
+
+ This is a no-op if the index is already up to date, so it is safe to
+ run on every upgrade.
+
### Database Upgrades
Paperless-ngx is compatible with Django-supported versions of PostgreSQL and MariaDB and it is generally
@@ -453,17 +463,42 @@ the search yields non-existing documents or won't find anything, you
may need to recreate the index manually.
```
-document_index {reindex,optimize}
+document_index {reindex,optimize} [--recreate] [--if-needed]
```
-Specify `reindex` to have the index created from scratch. This may take
-some time.
+Specify `reindex` to rebuild the index from all documents in the database. This
+may take some time.
-Specify `optimize` to optimize the index. This updates certain aspects
-of the index and usually makes queries faster and also ensures that the
-autocompletion works properly. This command is regularly invoked by the
+Pass `--recreate` to wipe the existing index before rebuilding. Use this when the
+index is corrupted or you want a fully clean rebuild.
+
+Pass `--if-needed` to skip the rebuild if the index is already up to date (schema
+version and search language match). Safe to run on every startup or upgrade.
+
+Specify `optimize` to optimize the index. This command is regularly invoked by the
task scheduler.
+!!! note
+
+ The `optimize` subcommand is deprecated and is now a no-op. Tantivy manages
+ segment merging automatically; no manual optimization step is needed.
+
+!!! note
+
+ **Docker users:** On every startup, the container runs
+ `document_index reindex --if-needed` automatically. Schema changes, language
+ changes, and missing indexes are all detected and rebuilt before the webserver
+ starts. No manual step is required.
+
+ **Bare metal users:** Run the following command after each upgrade (and after
+ changing `PAPERLESS_SEARCH_LANGUAGE`). It is a no-op if the index is already
+ up to date:
+
+ ```shell-session
+ cd src
+ python3 manage.py document_index reindex --if-needed
+ ```
+
### Clearing the database read cache
If the database read cache is enabled, **you must run this command** after making any changes to the database outside the application context.
diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md
index 989604000..ee0cfddce 100644
--- a/docs/advanced_usage.md
+++ b/docs/advanced_usage.md
@@ -723,6 +723,81 @@ services:
1. Note the `:ro` tag means the folder will be mounted as read only. This is for extra security against changes
+## Installing third-party parser plugins {#parser-plugins}
+
+Third-party parser plugins extend Paperless-ngx to support additional file
+formats. A plugin is a Python package that advertises itself under the
+`paperless_ngx.parsers` entry point group. Refer to the
+[developer documentation](development.md#making-custom-parsers) for how to
+create one.
+
+!!! warning "Third-party plugins are not officially supported"
+
+ The Paperless-ngx maintainers do not provide support for third-party
+ plugins. Issues caused by or requiring changes to a third-party plugin
+ will be closed without further investigation. Always reproduce problems
+ with all plugins removed before filing a bug report.
+
+### Docker
+
+Use a [custom container initialization script](#custom-container-initialization)
+to install the package before the webserver starts. Create a shell script and
+mount it into `/custom-cont-init.d`:
+
+```bash
+#!/bin/bash
+# /path/to/my/scripts/install-parsers.sh
+
+pip install my-paperless-parser-package
+```
+
+Mount it in your `docker-compose.yml`:
+
+```yaml
+services:
+ webserver:
+ # ...
+ volumes:
+ - /path/to/my/scripts:/custom-cont-init.d:ro
+```
+
+The script runs as `root` before the webserver starts, so the package will be
+available when Paperless-ngx discovers plugins at startup.
+
+### Bare metal
+
+Install the package into the same Python environment that runs Paperless-ngx.
+If you followed the standard bare-metal install guide, that is the `paperless`
+user's environment:
+
+```bash
+sudo -Hu paperless pip3 install my-paperless-parser-package
+```
+
+If you are using `uv` or a virtual environment, activate it first and then run:
+
+```bash
+uv pip install my-paperless-parser-package
+# or
+pip install my-paperless-parser-package
+```
+
+Restart all Paperless-ngx services after installation so the new plugin is
+discovered.
+
+### Verifying installation
+
+On the next startup, check the application logs for a line confirming
+discovery:
+
+```
+Loaded third-party parser 'My Parser' v1.0.0 by Acme Corp (entrypoint: 'my_parser').
+```
+
+If this line does not appear, verify that the package is installed in the
+correct environment and that its `pyproject.toml` declares the
+`paperless_ngx.parsers` entry point.
+
## MySQL Caveats {#mysql-caveats}
### Case Sensitivity
diff --git a/docs/api.md b/docs/api.md
index bd550c519..af1190f3d 100644
--- a/docs/api.md
+++ b/docs/api.md
@@ -62,10 +62,14 @@ The REST api provides five different forms of authentication.
## Searching for documents
-Full text searching is available on the `/api/documents/` endpoint. Two
-specific query parameters cause the API to return full text search
+Full text searching is available on the `/api/documents/` endpoint. The
+following query parameters cause the API to return Tantivy-backed search
results:
+- `/api/documents/?text=your%20search%20query`: Search title and content
+ using simple substring-style search.
+- `/api/documents/?title_search=your%20search%20query`: Search title only
+ using simple substring-style search.
- `/api/documents/?query=your%20search%20query`: Search for a document
using a full text query. For details on the syntax, see [Basic Usage - Searching](usage.md#basic-usage_searching).
- `/api/documents/?more_like_id=1234`: Search for documents similar to
@@ -167,9 +171,8 @@ Query parameters:
- `term`: The incomplete term.
- `limit`: Amount of results. Defaults to 10.
-Results returned by the endpoint are ordered by importance of the term
-in the document index. The first result is the term that has the highest
-[Tf/Idf](https://en.wikipedia.org/wiki/Tf%E2%80%93idf) score in the index.
+Results are ordered by how many of the user's visible documents contain
+each matching word. The first result is the word that appears in the most documents.
```json
["term1", "term3", "term6", "term4"]
@@ -437,3 +440,8 @@ Initial API version.
moved from the bulk edit endpoint to their own individual endpoints. Using these methods via
the bulk edit endpoint is still supported for compatibility with versions < 10 until support
for API v9 is dropped.
+- The `all` parameter of list endpoints is now deprecated and will be removed in a future version.
+- The bulk edit objects endpoint now supports `all` and `filters` parameters to avoid having to send
+ large lists of object IDs for operations affecting many objects.
+- The legacy `title_content` document search parameter is deprecated and will be removed in a future version.
+ Clients should use `text` for simple title-and-content search and `title_search` for title-only search.
diff --git a/docs/changelog.md b/docs/changelog.md
index 9a1d3ef7f..c361309d1 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,5 +1,56 @@
# Changelog
+## paperless-ngx 2.20.12
+
+### Security
+
+- Resolve [GHSA-96jx-fj7m-qh6x](https://github.com/paperless-ngx/paperless-ngx/security/advisories/GHSA-96jx-fj7m-qh6x)
+
+### Bug Fixes
+
+- Fix: Scope the workflow saves to prevent clobbering filename/archive_filename [@stumpylog](https://github.com/stumpylog) ([#12390](https://github.com/paperless-ngx/paperless-ngx/pull/12390))
+- Fix: don't try to usermod/groupmod when non-root + update docs (#12365) [@stumpylog](https://github.com/stumpylog) ([#12391](https://github.com/paperless-ngx/paperless-ngx/pull/12391))
+- Fix: avoid moving files if already moved [@shamoon](https://github.com/shamoon) ([#12389](https://github.com/paperless-ngx/paperless-ngx/pull/12389))
+- Fix: remove pagination from document notes api spec [@shamoon](https://github.com/shamoon) ([#12388](https://github.com/paperless-ngx/paperless-ngx/pull/12388))
+- Fix: fix file button hover color in dark mode [@shamoon](https://github.com/shamoon) ([#12367](https://github.com/paperless-ngx/paperless-ngx/pull/12367))
+- Fixhancement: only offer basic auth for appropriate requests [@shamoon](https://github.com/shamoon) ([#12362](https://github.com/paperless-ngx/paperless-ngx/pull/12362))
+
+### All App Changes
+
+
+5 changes
+
+- Fix: Scope the workflow saves to prevent clobbering filename/archive_filename [@stumpylog](https://github.com/stumpylog) ([#12390](https://github.com/paperless-ngx/paperless-ngx/pull/12390))
+- Fix: avoid moving files if already moved [@shamoon](https://github.com/shamoon) ([#12389](https://github.com/paperless-ngx/paperless-ngx/pull/12389))
+- Fix: remove pagination from document notes api spec [@shamoon](https://github.com/shamoon) ([#12388](https://github.com/paperless-ngx/paperless-ngx/pull/12388))
+- Fix: fix file button hover color in dark mode [@shamoon](https://github.com/shamoon) ([#12367](https://github.com/paperless-ngx/paperless-ngx/pull/12367))
+- Fixhancement: only offer basic auth for appropriate requests [@shamoon](https://github.com/shamoon) ([#12362](https://github.com/paperless-ngx/paperless-ngx/pull/12362))
+
+
+## paperless-ngx 2.20.11
+
+### Security
+
+- Resolve [GHSA-59xh-5vwx-4c4q](https://github.com/paperless-ngx/paperless-ngx/security/advisories/GHSA-59xh-5vwx-4c4q)
+
+### Bug Fixes
+
+- Fix: correct dropdown list active color in dark mode [@shamoon](https://github.com/shamoon) ([#12328](https://github.com/paperless-ngx/paperless-ngx/pull/12328))
+- Fixhancement: clear descendant selections in dropdown when parent toggled [@shamoon](https://github.com/shamoon) ([#12326](https://github.com/paperless-ngx/paperless-ngx/pull/12326))
+- Fix: prevent wrapping with larger amounts of tags on small cards, reset moreTags setting to correct count [@shamoon](https://github.com/shamoon) ([#12302](https://github.com/paperless-ngx/paperless-ngx/pull/12302))
+- Fix: prevent stale db filename during workflow actions [@shamoon](https://github.com/shamoon) ([#12289](https://github.com/paperless-ngx/paperless-ngx/pull/12289))
+
+### All App Changes
+
+
+4 changes
+
+- Fix: correct dropdown list active color in dark mode [@shamoon](https://github.com/shamoon) ([#12328](https://github.com/paperless-ngx/paperless-ngx/pull/12328))
+- Fixhancement: clear descendant selections in dropdown when parent toggled [@shamoon](https://github.com/shamoon) ([#12326](https://github.com/paperless-ngx/paperless-ngx/pull/12326))
+- Fix: prevent wrapping with larger amounts of tags on small cards, reset moreTags setting to correct count [@shamoon](https://github.com/shamoon) ([#12302](https://github.com/paperless-ngx/paperless-ngx/pull/12302))
+- Fix: prevent stale db filename during workflow actions [@shamoon](https://github.com/shamoon) ([#12289](https://github.com/paperless-ngx/paperless-ngx/pull/12289))
+
+
## paperless-ngx 2.20.10
### Bug Fixes
diff --git a/docs/configuration.md b/docs/configuration.md
index ac148c68b..7156b3553 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -402,6 +402,12 @@ Defaults to `/usr/share/nltk_data`
: This is where paperless will store the classification model.
+ !!! warning
+
+ The classification model uses Python's pickle serialization format.
+ Ensure this file is only writable by the paperless user, as a
+ maliciously crafted model file could execute arbitrary code when loaded.
+
Defaults to `PAPERLESS_DATA_DIR/classification_model.pickle`.
## Logging
@@ -422,14 +428,20 @@ Defaults to `/usr/share/nltk_data`
#### [`PAPERLESS_SECRET_KEY=`](#PAPERLESS_SECRET_KEY) {#PAPERLESS_SECRET_KEY}
-: Paperless uses this to make session tokens. If you expose paperless
-on the internet, you need to change this, since the default secret
-is well known.
+: **Required.** Paperless uses this to make session tokens and sign
+sensitive data. Paperless will refuse to start if this is not set.
Use any sequence of characters. The more, the better. You don't
- need to remember this. Just face-roll your keyboard.
+ need to remember this. You can generate a suitable key with:
- Default is listed in the file `src/paperless/settings.py`.
+ python3 -c "import secrets; print(secrets.token_urlsafe(64))"
+
+ !!! warning
+
+ This setting has no default value. You **must** set it before
+ starting Paperless. Existing installations that relied on the
+ previous default value should set `PAPERLESS_SECRET_KEY` to
+ that value to avoid invalidating existing sessions and tokens.
#### [`PAPERLESS_URL=`](#PAPERLESS_URL) {#PAPERLESS_URL}
@@ -674,6 +686,9 @@ See the corresponding [django-allauth documentation](https://docs.allauth.org/en
for a list of provider configurations. You will also need to include the relevant Django 'application' inside the
[PAPERLESS_APPS](#PAPERLESS_APPS) setting to activate that specific authentication provider (e.g. `allauth.socialaccount.providers.openid_connect` for the [OIDC Connect provider](https://docs.allauth.org/en/latest/socialaccount/providers/openid_connect.html)).
+: For OpenID Connect providers, set `settings.token_auth_method` if your identity provider
+requires a specific token endpoint authentication method.
+
Defaults to None, which does not enable any third party authentication systems.
#### [`PAPERLESS_SOCIAL_AUTO_SIGNUP=`](#PAPERLESS_SOCIAL_AUTO_SIGNUP) {#PAPERLESS_SOCIAL_AUTO_SIGNUP}
@@ -767,6 +782,14 @@ If both the [PAPERLESS_ACCOUNT_DEFAULT_GROUPS](#PAPERLESS_ACCOUNT_DEFAULT_GROUPS
Defaults to 1209600 (2 weeks)
+#### [`PAPERLESS_TOKEN_THROTTLE_RATE=`](#PAPERLESS_TOKEN_THROTTLE_RATE) {#PAPERLESS_TOKEN_THROTTLE_RATE}
+
+: Rate limit for the API token authentication endpoint (`/api/token/`), used to mitigate brute-force login attempts.
+Uses Django REST Framework's [throttle rate format](https://www.django-rest-framework.org/api-guide/throttling/#setting-the-throttling-policy),
+e.g. `5/min`, `100/hour`, `1000/day`.
+
+ Defaults to `5/min`
+
## OCR settings {#ocr}
Paperless uses [OCRmyPDF](https://ocrmypdf.readthedocs.io/en/latest/)
@@ -1100,6 +1123,32 @@ should be a valid crontab(5) expression describing when to run.
Defaults to `0 0 * * *` or daily at midnight.
+#### [`PAPERLESS_SEARCH_LANGUAGE=`](#PAPERLESS_SEARCH_LANGUAGE) {#PAPERLESS_SEARCH_LANGUAGE}
+
+: Sets the stemmer language for the full-text search index.
+Stemming improves recall by matching word variants (e.g. "running" matches "run").
+Changing this setting causes the index to be rebuilt automatically on next startup.
+An invalid value raises an error at startup.
+
+: Use the ISO 639-1 two-letter code (e.g. `en`, `de`, `fr`). Lowercase full names
+(e.g. `english`, `german`, `french`) are also accepted. The capitalized names shown
+in the [Tantivy Language enum](https://docs.rs/tantivy/latest/tantivy/tokenizer/enum.Language.html)
+documentation are **not** valid — use the lowercase equivalent.
+
+: If not set, paperless infers the language from
+[`PAPERLESS_OCR_LANGUAGE`](#PAPERLESS_OCR_LANGUAGE). If the OCR language has no
+Tantivy stemmer equivalent, stemming is disabled.
+
+ Defaults to unset (inferred from `PAPERLESS_OCR_LANGUAGE`).
+
+#### [`PAPERLESS_ADVANCED_FUZZY_SEARCH_THRESHOLD=`](#PAPERLESS_ADVANCED_FUZZY_SEARCH_THRESHOLD) {#PAPERLESS_ADVANCED_FUZZY_SEARCH_THRESHOLD}
+
+: When set to a float value, approximate/fuzzy matching is applied alongside exact
+matching. Fuzzy results rank below exact matches. A value of `0.5` is a reasonable
+starting point. Leave unset to disable fuzzy matching entirely.
+
+ Defaults to unset (disabled).
+
#### [`PAPERLESS_SANITY_TASK_CRON=`](#PAPERLESS_SANITY_TASK_CRON) {#PAPERLESS_SANITY_TASK_CRON}
: Configures the scheduled sanity checker frequency. The value should be a
@@ -1391,6 +1440,14 @@ ports.
## Incoming Mail {#incoming_mail}
+#### [`PAPERLESS_EMAIL_ALLOW_INTERNAL_HOSTS=`](#PAPERLESS_EMAIL_ALLOW_INTERNAL_HOSTS) {#PAPERLESS_EMAIL_ALLOW_INTERNAL_HOSTS}
+
+: If set to false, incoming mail account connections are blocked when the
+configured IMAP hostname resolves to a non-public address (for example,
+localhost, link-local, or RFC1918 private ranges).
+
+ Defaults to true, which allows internal hosts.
+
### Email OAuth {#email_oauth}
#### [`PAPERLESS_OAUTH_CALLBACK_BASE_URL=`](#PAPERLESS_OAUTH_CALLBACK_BASE_URL) {#PAPERLESS_OAUTH_CALLBACK_BASE_URL}
@@ -1947,6 +2004,12 @@ current backend. If not supplied, defaults to "gpt-3.5-turbo" for OpenAI and "ll
Defaults to None.
+#### [`PAPERLESS_AI_LLM_ALLOW_INTERNAL_ENDPOINTS=`](#PAPERLESS_AI_LLM_ALLOW_INTERNAL_ENDPOINTS) {#PAPERLESS_AI_LLM_ALLOW_INTERNAL_ENDPOINTS}
+
+: If set to false, Paperless blocks AI endpoint URLs that resolve to non-public addresses (e.g., localhost, etc).
+
+ Defaults to true, which allows internal endpoints.
+
#### [`PAPERLESS_AI_LLM_INDEX_TASK_CRON=`](#PAPERLESS_AI_LLM_INDEX_TASK_CRON) {#PAPERLESS_AI_LLM_INDEX_TASK_CRON}
: Configures the schedule to update the AI embeddings of text content and metadata for all documents. Only performed if
diff --git a/docs/development.md b/docs/development.md
index e6b9955e8..11e078a67 100644
--- a/docs/development.md
+++ b/docs/development.md
@@ -370,121 +370,367 @@ docker build --file Dockerfile --tag paperless:local .
## Extending Paperless-ngx
-Paperless-ngx does not have any fancy plugin systems and will probably never
-have. However, some parts of the application have been designed to allow
-easy integration of additional features without any modification to the
-base code.
+Paperless-ngx supports third-party document parsers via a Python entry point
+plugin system. Plugins are distributed as ordinary Python packages and
+discovered automatically at startup — no changes to the Paperless-ngx source
+are required.
+
+!!! warning "Third-party plugins are not officially supported"
+
+ The Paperless-ngx maintainers do not provide support for third-party
+ plugins. Issues that are caused by or require changes to a third-party
+ plugin will be closed without further investigation. If you believe you
+ have found a bug in Paperless-ngx itself (not in a plugin), please
+ reproduce it with all third-party plugins removed before filing an issue.
### Making custom parsers
-Paperless-ngx uses parsers to add documents. A parser is
-responsible for:
+Paperless-ngx uses parsers to add documents. A parser is responsible for:
-- Retrieving the content from the original
-- Creating a thumbnail
-- _optional:_ Retrieving a created date from the original
-- _optional:_ Creating an archived document from the original
+- Extracting plain-text content from the document
+- Generating a thumbnail image
+- _optional:_ Detecting the document's creation date
+- _optional:_ Producing a searchable PDF archive copy
-Custom parsers can be added to Paperless-ngx to support more file types. In
-order to do that, you need to write the parser itself and announce its
-existence to Paperless-ngx.
+Custom parsers are distributed as ordinary Python packages and registered
+via a [setuptools entry point](https://setuptools.pypa.io/en/latest/userguide/entry_point.html).
+No changes to the Paperless-ngx source are required.
-The parser itself must extend `documents.parsers.DocumentParser` and
-must implement the methods `parse` and `get_thumbnail`. You can provide
-your own implementation to `get_date` if you don't want to rely on
-Paperless-ngx' default date guessing mechanisms.
+#### 1. Implementing the parser class
+
+Your parser must satisfy the `ParserProtocol` structural interface defined in
+`paperless.parsers`. The simplest approach is to write a plain class — no base
+class is required, only the right attributes and methods.
+
+**Class-level identity attributes**
+
+The registry reads these before instantiating the parser, so they must be
+plain class attributes (not instance attributes or properties):
```python
-class MyCustomParser(DocumentParser):
-
- def parse(self, document_path, mime_type):
- # This method does not return anything. Rather, you should assign
- # whatever you got from the document to the following fields:
-
- # The content of the document.
- self.text = "content"
-
- # Optional: path to a PDF document that you created from the original.
- self.archive_path = os.path.join(self.tempdir, "archived.pdf")
-
- # Optional: "created" date of the document.
- self.date = get_created_from_metadata(document_path)
-
- def get_thumbnail(self, document_path, mime_type):
- # This should return the path to a thumbnail you created for this
- # document.
- return os.path.join(self.tempdir, "thumb.webp")
+class MyCustomParser:
+ name = "My Format Parser" # human-readable name shown in logs
+ version = "1.0.0" # semantic version string
+ author = "Acme Corp" # author / organisation
+ url = "https://example.com/my-parser" # docs or issue tracker
```
-If you encounter any issues during parsing, raise a
-`documents.parsers.ParseError`.
+**Declaring supported MIME types**
-The `self.tempdir` directory is a temporary directory that is guaranteed
-to be empty and removed after consumption finished. You can use that
-directory to store any intermediate files and also use it to store the
-thumbnail / archived document.
-
-After that, you need to announce your parser to Paperless-ngx. You need to
-connect a handler to the `document_consumer_declaration` signal. Have a
-look in the file `src/paperless_tesseract/apps.py` on how that's done.
-The handler is a method that returns information about your parser:
+Return a `dict` mapping MIME type strings to preferred file extensions
+(including the leading dot). Paperless-ngx uses the extension when storing
+archive copies and serving files for download.
```python
-def myparser_consumer_declaration(sender, **kwargs):
+@classmethod
+def supported_mime_types(cls) -> dict[str, str]:
return {
- "parser": MyCustomParser,
- "weight": 0,
- "mime_types": {
- "application/pdf": ".pdf",
- "image/jpeg": ".jpg",
- }
+ "application/x-my-format": ".myf",
+ "application/x-my-format-alt": ".myf",
}
```
-- `parser` is a reference to a class that extends `DocumentParser`.
-- `weight` is used whenever two or more parsers are able to parse a
- file: The parser with the higher weight wins. This can be used to
- override the parsers provided by Paperless-ngx.
-- `mime_types` is a dictionary. The keys are the mime types your
- parser supports and the value is the default file extension that
- Paperless-ngx should use when storing files and serving them for
- download. We could guess that from the file extensions, but some
- mime types have many extensions associated with them and the Python
- methods responsible for guessing the extension do not always return
- the same value.
+**Scoring**
-## Using Visual Studio Code devcontainer
+When more than one parser can handle a file, the registry calls `score()` on
+each candidate and picks the one with the highest result and equal scores favor third-party parsers over built-ins. Return `None` to
+decline handling a file even though the MIME type is listed as supported (for
+example, when a required external service is not configured).
-Another easy way to get started with development is to use Visual Studio
-Code devcontainers. This approach will create a preconfigured development
-environment with all of the required tools and dependencies.
-[Learn more about devcontainers](https://code.visualstudio.com/docs/devcontainers/containers).
-The .devcontainer/vscode/tasks.json and .devcontainer/vscode/launch.json files
-contain more information about the specific tasks and launch configurations (see the
-non-standard "description" field).
+| Score | Meaning |
+| ------ | --------------------------------------------------------------------------------- |
+| `None` | Decline — do not handle this file |
+| `10` | Default priority used by all built-in parsers |
+| `20` | Priority used by the remote OCR built-in parser, allowing it to replace Tesseract |
+| `> 10` | Override a built-in parser for the same MIME type |
-To get started:
+```python
+@classmethod
+def score(
+ cls,
+ mime_type: str,
+ filename: str,
+ path: "Path | None" = None,
+) -> int | None:
+ # Inspect filename or file bytes here if needed.
+ return 10
+```
-1. Clone the repository on your machine and open the Paperless-ngx folder in VS Code.
+**Archive and rendition flags**
-2. VS Code will prompt you with "Reopen in container". Do so and wait for the environment to start.
+```python
+@property
+def can_produce_archive(self) -> bool:
+ """True if parse() can produce a searchable PDF archive copy."""
+ return True # or False if your parser doesn't produce PDFs
-3. In case your host operating system is Windows:
- - The Source Control view in Visual Studio Code might show: "The detected Git repository is potentially unsafe as the folder is owned by someone other than the current user." Use "Manage Unsafe Repositories" to fix this.
- - Git might have detecteded modifications for all files, because Windows is using CRLF line endings. Run `git checkout .` in the containers terminal to fix this issue.
+@property
+def requires_pdf_rendition(self) -> bool:
+ """True if the original format cannot be displayed by a browser
+ (e.g. DOCX, ODT) and the PDF output must always be kept."""
+ return False
+```
-4. Initialize the project by running the task **Project Setup: Run all Init Tasks**. This
- will initialize the database tables and create a superuser. Then you can compile the front end
- for production or run the frontend in debug mode.
+**Context manager — temp directory lifecycle**
-5. The project is ready for debugging, start either run the fullstack debug or individual debug
- processes. Yo spin up the project without debugging run the task **Project Start: Run all Services**
+Paperless-ngx always uses parsers as context managers. Create a temporary
+working directory in `__enter__` (or `__init__`) and remove it in `__exit__`
+regardless of whether an exception occurred. Store intermediate files,
+thumbnails, and archive PDFs inside this directory.
-## Developing Date Parser Plugins
+```python
+import shutil
+import tempfile
+from pathlib import Path
+from typing import Self
+from types import TracebackType
+
+from django.conf import settings
+
+class MyCustomParser:
+ ...
+
+ def __init__(self, logging_group: object = None) -> None:
+ settings.SCRATCH_DIR.mkdir(parents=True, exist_ok=True)
+ self._tempdir = Path(
+ tempfile.mkdtemp(prefix="paperless-", dir=settings.SCRATCH_DIR)
+ )
+ self._text: str | None = None
+ self._archive_path: Path | None = None
+
+ def __enter__(self) -> Self:
+ return self
+
+ def __exit__(
+ self,
+ exc_type: type[BaseException] | None,
+ exc_val: BaseException | None,
+ exc_tb: TracebackType | None,
+ ) -> None:
+ shutil.rmtree(self._tempdir, ignore_errors=True)
+```
+
+**Optional context — `configure()`**
+
+The consumer calls `configure()` with a `ParserContext` after instantiation
+and before `parse()`. If your parser doesn't need context, a no-op
+implementation is fine:
+
+```python
+from paperless.parsers import ParserContext
+
+def configure(self, context: ParserContext) -> None:
+ pass # override if you need context.mailrule_id, etc.
+```
+
+**Parsing**
+
+`parse()` is the core method. It must not return a value; instead, store
+results in instance attributes and expose them via the accessor methods below.
+Raise `documents.parsers.ParseError` on any unrecoverable failure.
+
+```python
+from documents.parsers import ParseError
+
+def parse(
+ self,
+ document_path: Path,
+ mime_type: str,
+ *,
+ produce_archive: bool = True,
+) -> None:
+ try:
+ self._text = extract_text_from_my_format(document_path)
+ except Exception as e:
+ raise ParseError(f"Failed to parse {document_path}: {e}") from e
+
+ if produce_archive and self.can_produce_archive:
+ archive = self._tempdir / "archived.pdf"
+ convert_to_pdf(document_path, archive)
+ self._archive_path = archive
+```
+
+**Result accessors**
+
+```python
+def get_text(self) -> str | None:
+ return self._text
+
+def get_date(self) -> "datetime.datetime | None":
+ # Return a datetime extracted from the document, or None to let
+ # Paperless-ngx use its default date-guessing logic.
+ return None
+
+def get_archive_path(self) -> Path | None:
+ return self._archive_path
+
+def get_page_count(self, document_path: Path, mime_type: str) -> int | None:
+ # If the format doesn't have the concept of pages, return None
+ return count_pages(document_path)
+
+```
+
+**Thumbnail**
+
+`get_thumbnail()` may be called independently of `parse()`. Return the path
+to a WebP image inside `self._tempdir`. The image should be roughly 500 × 700
+pixels.
+
+```python
+def get_thumbnail(self, document_path: Path, mime_type: str) -> Path:
+ thumb = self._tempdir / "thumb.webp"
+ render_thumbnail(document_path, thumb)
+ return thumb
+```
+
+**Optional methods**
+
+These are called by the API on demand, not during the consumption pipeline.
+Implement them if your format supports the information; otherwise return
+`None` / `[]`.
+
+```python
+
+def extract_metadata(
+ self,
+ document_path: Path,
+ mime_type: str,
+) -> "list[MetadataEntry]":
+ # Must never raise. Return [] if metadata cannot be read.
+ from paperless.parsers import MetadataEntry
+ return [
+ MetadataEntry(
+ namespace="https://example.com/ns/",
+ prefix="ex",
+ key="Author",
+ value="Alice",
+ )
+ ]
+```
+
+#### 2. Registering via entry point
+
+Add the following to your package's `pyproject.toml`. The key (left of `=`)
+is an arbitrary name used only in log output; the value is the
+`module:ClassName` import path.
+
+```toml
+[project.entry-points."paperless_ngx.parsers"]
+my_parser = "my_package.parsers:MyCustomParser"
+```
+
+Install your package into the same Python environment as Paperless-ngx (or
+add it to the Docker image), and the parser will be discovered automatically
+on the next startup. No configuration changes are needed.
+
+To verify discovery, check the application logs at startup for a line like:
+
+```
+Loaded third-party parser 'My Format Parser' v1.0.0 by Acme Corp (entrypoint: 'my_parser').
+```
+
+#### 3. Utilities
+
+`paperless.parsers.utils` provides helpers you can import directly:
+
+| Function | Description |
+| --------------------------------------- | ---------------------------------------------------------------- |
+| `read_file_handle_unicode_errors(path)` | Read a file as UTF-8, replacing invalid bytes instead of raising |
+| `get_page_count_for_pdf(path)` | Count pages in a PDF using pikepdf |
+| `extract_pdf_metadata(path)` | Extract XMP metadata from a PDF as a `list[MetadataEntry]` |
+
+#### Minimal example
+
+A complete, working parser for a hypothetical plain-XML format:
+
+```python
+from __future__ import annotations
+
+import shutil
+import tempfile
+from pathlib import Path
+from typing import Self
+from types import TracebackType
+import xml.etree.ElementTree as ET
+
+from django.conf import settings
+
+from documents.parsers import ParseError
+from paperless.parsers import ParserContext
+
+
+class XmlDocumentParser:
+ name = "XML Parser"
+ version = "1.0.0"
+ author = "Acme Corp"
+ url = "https://example.com/xml-parser"
+
+ @classmethod
+ def supported_mime_types(cls) -> dict[str, str]:
+ return {"application/xml": ".xml", "text/xml": ".xml"}
+
+ @classmethod
+ def score(cls, mime_type: str, filename: str, path: Path | None = None) -> int | None:
+ return 10
+
+ @property
+ def can_produce_archive(self) -> bool:
+ return False
+
+ @property
+ def requires_pdf_rendition(self) -> bool:
+ return False
+
+ def __init__(self, logging_group: object = None) -> None:
+ settings.SCRATCH_DIR.mkdir(parents=True, exist_ok=True)
+ self._tempdir = Path(tempfile.mkdtemp(prefix="paperless-", dir=settings.SCRATCH_DIR))
+ self._text: str | None = None
+
+ def __enter__(self) -> Self:
+ return self
+
+ def __exit__(self, exc_type, exc_val, exc_tb) -> None:
+ shutil.rmtree(self._tempdir, ignore_errors=True)
+
+ def configure(self, context: ParserContext) -> None:
+ pass
+
+ def parse(self, document_path: Path, mime_type: str, *, produce_archive: bool = True) -> None:
+ try:
+ tree = ET.parse(document_path)
+ self._text = " ".join(tree.getroot().itertext())
+ except ET.ParseError as e:
+ raise ParseError(f"XML parse error: {e}") from e
+
+ def get_text(self) -> str | None:
+ return self._text
+
+ def get_date(self):
+ return None
+
+ def get_archive_path(self) -> Path | None:
+ return None
+
+ def get_thumbnail(self, document_path: Path, mime_type: str) -> Path:
+ from PIL import Image, ImageDraw
+ img = Image.new("RGB", (500, 700), color="white")
+ ImageDraw.Draw(img).text((10, 10), "XML Document", fill="black")
+ out = self._tempdir / "thumb.webp"
+ img.save(out, format="WEBP")
+ return out
+
+ def get_page_count(self, document_path: Path, mime_type: str) -> int | None:
+ return None
+
+ def extract_metadata(self, document_path: Path, mime_type: str) -> list:
+ return []
+```
+
+### Developing date parser plugins
Paperless-ngx uses a plugin system for date parsing, allowing you to extend or replace the default date parsing behavior. Plugins are discovered using [Python entry points](https://setuptools.pypa.io/en/latest/userguide/entry_point.html).
-### Creating a Date Parser Plugin
+#### Creating a Date Parser Plugin
To create a custom date parser plugin, you need to:
@@ -492,7 +738,7 @@ To create a custom date parser plugin, you need to:
2. Implement the required abstract method
3. Register your plugin via an entry point
-#### 1. Implementing the Parser Class
+##### 1. Implementing the Parser Class
Your parser must extend `documents.plugins.date_parsing.DateParserPluginBase` and implement the `parse` method:
@@ -532,7 +778,7 @@ class MyDateParserPlugin(DateParserPluginBase):
yield another_datetime
```
-#### 2. Configuration and Helper Methods
+##### 2. Configuration and Helper Methods
Your parser instance is initialized with a `DateParserConfig` object accessible via `self.config`. This provides:
@@ -565,11 +811,11 @@ def _filter_date(
"""
```
-#### 3. Resource Management (Optional)
+##### 3. Resource Management (Optional)
If your plugin needs to acquire or release resources (database connections, API clients, etc.), override the context manager methods. Paperless-ngx will always use plugins as context managers, ensuring resources can be released even in the event of errors.
-#### 4. Registering Your Plugin
+##### 4. Registering Your Plugin
Register your plugin using a setuptools entry point in your package's `pyproject.toml`:
@@ -580,7 +826,7 @@ my_parser = "my_package.parsers:MyDateParserPlugin"
The entry point name (e.g., `"my_parser"`) is used for sorting when multiple plugins are found. Paperless-ngx will use the first plugin alphabetically by name if multiple plugins are discovered.
-### Plugin Discovery
+#### Plugin Discovery
Paperless-ngx automatically discovers and loads date parser plugins at runtime. The discovery process:
@@ -591,7 +837,7 @@ Paperless-ngx automatically discovers and loads date parser plugins at runtime.
If multiple plugins are installed, a warning is logged indicating which plugin was selected.
-### Example: Simple Date Parser
+#### Example: Simple Date Parser
Here's a minimal example that only looks for ISO 8601 dates:
@@ -623,3 +869,30 @@ class ISODateParserPlugin(DateParserPluginBase):
if filtered_date is not None:
yield filtered_date
```
+
+## Using Visual Studio Code devcontainer
+
+Another easy way to get started with development is to use Visual Studio
+Code devcontainers. This approach will create a preconfigured development
+environment with all of the required tools and dependencies.
+[Learn more about devcontainers](https://code.visualstudio.com/docs/devcontainers/containers).
+The .devcontainer/vscode/tasks.json and .devcontainer/vscode/launch.json files
+contain more information about the specific tasks and launch configurations (see the
+non-standard "description" field).
+
+To get started:
+
+1. Clone the repository on your machine and open the Paperless-ngx folder in VS Code.
+
+2. VS Code will prompt you with "Reopen in container". Do so and wait for the environment to start.
+
+3. In case your host operating system is Windows:
+ - The Source Control view in Visual Studio Code might show: "The detected Git repository is potentially unsafe as the folder is owned by someone other than the current user." Use "Manage Unsafe Repositories" to fix this.
+ - Git might have detecteded modifications for all files, because Windows is using CRLF line endings. Run `git checkout .` in the containers terminal to fix this issue.
+
+4. Initialize the project by running the task **Project Setup: Run all Init Tasks**. This
+ will initialize the database tables and create a superuser. Then you can compile the front end
+ for production or run the frontend in debug mode.
+
+5. The project is ready for debugging, start either run the fullstack debug or individual debug
+ processes. Yo spin up the project without debugging run the task **Project Start: Run all Services**
diff --git a/docs/migration-v3.md b/docs/migration-v3.md
index 43a3690c0..afbc83186 100644
--- a/docs/migration-v3.md
+++ b/docs/migration-v3.md
@@ -1,5 +1,24 @@
# v3 Migration Guide
+## Secret Key is Now Required
+
+The `PAPERLESS_SECRET_KEY` environment variable is now required. This is a critical security setting used for cryptographic signing and should be set to a long, random value.
+
+### Action Required
+
+If you are upgrading an existing installation, you must now set `PAPERLESS_SECRET_KEY` explicitly.
+
+If your installation was relying on the previous built-in default key, you have two options:
+
+- Set `PAPERLESS_SECRET_KEY` to that previous value to preserve existing sessions and tokens.
+- Set `PAPERLESS_SECRET_KEY` to a new random value to improve security, understanding that this will invalidate existing sessions and other signed tokens.
+
+For new installations, or if you choose to rotate the key, you may generate a new secret key with:
+
+```bash
+python3 -c "import secrets; print(secrets.token_urlsafe(64))"
+```
+
## Consumer Settings Changes
The v3 consumer command uses a [different library](https://watchfiles.helpmanual.io/) to unify
@@ -103,3 +122,61 @@ Multiple options are combined in a single value:
```bash
PAPERLESS_DB_OPTIONS="sslmode=require;sslrootcert=/certs/ca.pem;pool.max_size=10"
```
+
+## Search Index (Whoosh -> Tantivy)
+
+The full-text search backend has been replaced with [Tantivy](https://github.com/quickwit-oss/tantivy).
+The index format is incompatible with Whoosh, so **the search index is automatically rebuilt from
+scratch on first startup after upgrading**. No manual action is required for the rebuild itself.
+
+### Note and custom field search syntax
+
+The old Whoosh index exposed `note` and `custom_field` as flat text fields that were included in
+unqualified searches (e.g. just typing `invoice` would match note content). With Tantivy these are
+now structured JSON fields accessed via dotted paths:
+
+| Old syntax | New syntax |
+| -------------------- | --------------------------- |
+| `note:query` | `notes.note:query` |
+| `custom_field:query` | `custom_fields.value:query` |
+
+**Saved views are migrated automatically.** Any saved view filter rule that used an explicit
+`note:` or `custom_field:` field prefix in a fulltext query is rewritten to the new syntax by a
+data migration that runs on upgrade.
+
+**Unqualified queries are not migrated.** If you had a saved view with a plain search term (e.g.
+`invoice`) that happened to match note content or custom field values, it will no longer return
+those matches. Update those queries to use the explicit prefix, for example:
+
+```
+invoice OR notes.note:invoice OR custom_fields.value:invoice
+```
+
+Custom field names can also be searched with `custom_fields.name:fieldname`.
+
+## OpenID Connect Token Endpoint Authentication
+
+Some existing OpenID Connect setups may require an explicit token endpoint authentication method after upgrading to v3.
+
+#### Action Required
+
+If OIDC login fails at the callback with an `invalid_client` error, add `token_auth_method` to the provider `settings` in
+[`PAPERLESS_SOCIALACCOUNT_PROVIDERS`](configuration.md#PAPERLESS_SOCIALACCOUNT_PROVIDERS).
+
+For example:
+
+```json
+{
+ "openid_connect": {
+ "APPS": [
+ {
+ ...
+ "settings": {
+ "server_url": "https://login.example.com",
+ "token_auth_method": "client_secret_basic"
+ }
+ }
+ ]
+ }
+}
+```
diff --git a/docs/setup.md b/docs/setup.md
index 5795968ef..3b84fd729 100644
--- a/docs/setup.md
+++ b/docs/setup.md
@@ -140,24 +140,17 @@ a [superuser](usage.md#superusers) account.
!!! warning
- It is currently not possible to run the container rootless if additional languages are specified via `PAPERLESS_OCR_LANGUAGES`.
+ It is not possible to run the container rootless if additional languages are specified via `PAPERLESS_OCR_LANGUAGES`.
-If you want to run Paperless as a rootless container, make this
-change in `docker-compose.yml`:
+If you want to run Paperless as a rootless container, set `user:` in `docker-compose.yml` to the UID and GID of your host user (use `id -u` and `id -g` to find these values). The container process starts directly as that user with no internal privilege remapping:
-- Set the `user` running the container to map to the `paperless`
- user in the container. This value (`user_id` below) should be
- the same ID that `USERMAP_UID` and `USERMAP_GID` are set to in
- `docker-compose.env`. See `USERMAP_UID` and `USERMAP_GID`
- [here](configuration.md#docker).
+```yaml
+webserver:
+ image: ghcr.io/paperless-ngx/paperless-ngx:latest
+ user: '1000:1000'
+```
-Your entry for Paperless should contain something like:
-
-> ```
-> webserver:
-> image: ghcr.io/paperless-ngx/paperless-ngx:latest
-> user:
-> ```
+Do not combine this with `USERMAP_UID` or `USERMAP_GID`, which are intended for the non-rootless case described in step 3.
**File systems without inotify support (e.g. NFS)**
diff --git a/docs/usage.md b/docs/usage.md
index 92b6bfd44..ed4fbbef4 100644
--- a/docs/usage.md
+++ b/docs/usage.md
@@ -814,13 +814,20 @@ contract you signed 8 years ago).
When you search paperless for a document, it tries to match this query
against your documents. Paperless will look for matching documents by
-inspecting their content, title, correspondent, type and tags. Paperless
-returns a scored list of results, so that documents matching your query
-better will appear further up in the search results.
+inspecting their content, title, correspondent, type, tags, notes, and
+custom field values. Paperless returns a scored list of results, so that
+documents matching your query better will appear further up in the search
+results.
By default, paperless returns only documents which contain all words
-typed in the search bar. However, paperless also offers advanced search
-syntax if you want to drill down the results further.
+typed in the search bar. A few things to know about how matching works:
+
+- **Word-order-independent**: "invoice unpaid" and "unpaid invoice" return the same results.
+- **Accent-insensitive**: searching `resume` also finds `résumé`, `cafe` finds `café`.
+- **Separator-agnostic**: punctuation and separators are stripped during indexing, so
+ searching a partial number like `1312` finds documents containing `A-1312/B`.
+
+Paperless also offers advanced search syntax if you want to drill down further.
Matching documents with logical expressions:
@@ -849,18 +856,69 @@ Matching inexact words:
produ*name
```
+Matching natural date keywords:
+
+```
+added:today
+modified:yesterday
+created:this_week
+added:last_month
+modified:this_year
+```
+
+Supported date keywords: `today`, `yesterday`, `this_week`, `last_week`,
+`this_month`, `last_month`, `this_year`, `last_year`.
+
+#### Searching custom fields
+
+Custom field values are included in the full-text index, so a plain search
+already matches documents whose custom field values contain your search terms.
+To narrow by field name or value specifically:
+
+```
+custom_fields.value:policy
+custom_fields.name:"Contract Number"
+custom_fields.name:Insurance custom_fields.value:policy
+```
+
+- `custom_fields.value` matches against the value of any custom field.
+- `custom_fields.name` matches the name of the field (use quotes for multi-word names).
+- Combine both to find documents where a specific named field contains a specific value.
+
+Because separators are stripped during indexing, individual parts of formatted
+codes are searchable on their own. A value stored as `A-1312/99.50` produces the
+tokens `a`, `1312`, `99`, `50` — each searchable independently:
+
+```
+custom_fields.value:1312
+custom_fields.name:"Contract Number" custom_fields.value:1312
+```
+
!!! note
- Inexact terms are hard for search indexes. These queries might take a
- while to execute. That's why paperless offers auto complete and query
- correction.
+ Custom date fields do not support relative date syntax (e.g. `[now to 2 weeks]`).
+ For date ranges on custom date fields, use the document list filters in the web UI.
+
+#### Searching notes
+
+Notes content is included in full-text search automatically. To search
+by note author or content specifically:
+
+```
+notes.user:alice
+notes.note:reminder
+notes.user:alice notes.note:insurance
+```
All of these constructs can be combined as you see fit. If you want to
-learn more about the query language used by paperless, paperless uses
-Whoosh's default query language. Head over to [Whoosh query
-language](https://whoosh.readthedocs.io/en/latest/querylang.html). For
-details on what date parsing utilities are available, see [Date
-parsing](https://whoosh.readthedocs.io/en/latest/dates.html#parsing-date-queries).
+learn more about the query language used by paperless, see the
+[Tantivy query language documentation](https://docs.rs/tantivy/latest/tantivy/query/struct.QueryParser.html).
+
+!!! note
+
+ Fuzzy (approximate) matching can be enabled by setting
+ [`PAPERLESS_ADVANCED_FUZZY_SEARCH_THRESHOLD`](configuration.md#PAPERLESS_ADVANCED_FUZZY_SEARCH_THRESHOLD).
+ When enabled, paperless will include near-miss results ranked below exact matches.
## Keyboard shortcuts / hotkeys
diff --git a/paperless.conf.example b/paperless.conf.example
index 9974aeab6..a0c406f82 100644
--- a/paperless.conf.example
+++ b/paperless.conf.example
@@ -23,7 +23,8 @@
# Security and hosting
-#PAPERLESS_SECRET_KEY=change-me
+# Required. Generate with: python3 -c "import secrets; print(secrets.token_urlsafe(64))"
+PAPERLESS_SECRET_KEY=change-me
#PAPERLESS_URL=https://example.com
#PAPERLESS_CSRF_TRUSTED_ORIGINS=https://example.com # can be set using PAPERLESS_URL
#PAPERLESS_ALLOWED_HOSTS=example.com,www.example.com # can be set using PAPERLESS_URL
diff --git a/pyproject.toml b/pyproject.toml
index 339e788c4..30be1ae11 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "paperless-ngx"
-version = "2.20.10"
+version = "2.20.13"
description = "A community-supported supercharged document management system: scan, index and archive all your physical documents"
readme = "README.md"
requires-python = ">=3.11"
@@ -13,7 +13,6 @@ classifiers = [
]
# TODO: Move certain things to groups and then utilize that further
# This will allow testing to not install a webserver, mysql, etc
-
dependencies = [
"azure-ai-documentintelligence>=1.0.2",
"babel>=2.17",
@@ -26,7 +25,7 @@ dependencies = [
# WARNING: django does not use semver.
# Only patch versions are guaranteed to not introduce breaking changes.
"django~=5.2.10",
- "django-allauth[mfa,socialaccount]~=65.14.0",
+ "django-allauth[mfa,socialaccount]~=65.15.0",
"django-auditlog~=3.4.1",
"django-cachalot~=2.9.0",
"django-celery-results~=2.6.0",
@@ -47,7 +46,7 @@ dependencies = [
"faiss-cpu>=1.10",
"filelock~=3.25.2",
"flower~=2.0.1",
- "gotenberg-client~=0.13.1",
+ "gotenberg-client~=0.14.0",
"httpx-oauth~=0.16",
"ijson>=3.2",
"imap-tools~=1.11.0",
@@ -60,7 +59,7 @@ dependencies = [
"llama-index-llms-openai>=0.6.13",
"llama-index-vector-stores-faiss>=0.5.2",
"nltk~=3.9.1",
- "ocrmypdf~=16.13.0",
+ "ocrmypdf~=17.4.0",
"openai>=1.76",
"pathvalidate~=3.3.1",
"pdf2image~=1.17.0",
@@ -75,39 +74,40 @@ dependencies = [
"scikit-learn~=1.8.0",
"sentence-transformers>=4.1",
"setproctitle~=1.3.4",
- "tika-client~=0.10.0",
+ "tantivy>=0.25.1",
+ "tika-client~=0.11.0",
"torch~=2.10.0",
"watchfiles>=1.1.1",
"whitenoise~=6.11",
- "whoosh-reloaded>=2.7.5",
"zxing-cpp~=3.0.0",
]
-
-optional-dependencies.mariadb = [
+[project.optional-dependencies]
+mariadb = [
"mysqlclient~=2.2.7",
]
-optional-dependencies.postgres = [
+postgres = [
"psycopg[c,pool]==3.3",
# Direct dependency for proper resolution of the pre-built wheels
"psycopg-c==3.3",
"psycopg-pool==3.3",
]
-optional-dependencies.webserver = [
+webserver = [
"granian[uvloop]~=2.7.0",
]
[dependency-groups]
-
dev = [
- { "include-group" = "docs" },
- { "include-group" = "testing" },
- { "include-group" = "lint" },
+ { include-group = "docs" },
+ { include-group = "lint" },
+ { include-group = "testing" },
]
-
docs = [
"zensical>=0.0.21",
]
-
+lint = [
+ "prek~=0.3.0",
+ "ruff~=0.15.0",
+]
testing = [
"daphne",
"factory-boy~=3.3.1",
@@ -119,17 +119,12 @@ testing = [
"pytest-env~=1.5.0",
"pytest-httpx",
"pytest-mock~=3.15.1",
- #"pytest-randomly~=4.0.1",
+ # "pytest-randomly~=4.0.1",
"pytest-rerunfailures~=16.1",
"pytest-sugar",
"pytest-xdist~=3.8.0",
+ "time-machine>=2.13",
]
-
-lint = [
- "prek~=0.3.0",
- "ruff~=0.15.0",
-]
-
typing = [
"celery-types",
"django-filter-stubs",
@@ -154,24 +149,21 @@ typing = [
[tool.uv]
required-version = ">=0.9.0"
-package = false
environments = [
"sys_platform == 'darwin'",
"sys_platform == 'linux'",
]
-
+package = false
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
-
[tool.uv.sources]
# Markers are chosen to select these almost exclusively when building the Docker image
psycopg-c = [
{ url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-trixie-3.3.0/psycopg_c-3.3.0-cp312-cp312-linux_x86_64.whl", marker = "sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.12'" },
{ url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-trixie-3.3.0/psycopg_c-3.3.0-cp312-cp312-linux_aarch64.whl", marker = "sys_platform == 'linux' and platform_machine == 'aarch64' and python_version == '3.12'" },
]
-
torch = [
{ index = "pytorch-cpu" },
]
@@ -186,10 +178,10 @@ respect-gitignore = true
# https://docs.astral.sh/ruff/settings/
fix = true
show-fixes = true
-
output-format = "grouped"
+[tool.ruff.lint]
# https://docs.astral.sh/ruff/rules/
-lint.extend-select = [
+extend-select = [
"COM", # https://docs.astral.sh/ruff/rules/#flake8-commas-com
"DJ", # https://docs.astral.sh/ruff/rules/#flake8-django-dj
"EXE", # https://docs.astral.sh/ruff/rules/#flake8-executable-exe
@@ -214,121 +206,52 @@ lint.extend-select = [
"UP", # https://docs.astral.sh/ruff/rules/#pyupgrade-up
"W", # https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
]
-lint.ignore = [
+ignore = [
"DJ001",
"PLC0415",
"RUF012",
"SIM105",
]
# Migrations
-lint.per-file-ignores."*/migrations/*.py" = [
+per-file-ignores."*/migrations/*.py" = [
"E501",
"SIM",
"T201",
]
# Testing
-lint.per-file-ignores."*/tests/*.py" = [
+per-file-ignores."*/tests/*.py" = [
"E501",
"SIM117",
]
-lint.per-file-ignores.".github/scripts/*.py" = [
+per-file-ignores.".github/scripts/*.py" = [
"E501",
"INP001",
"SIM117",
]
# Docker specific
-lint.per-file-ignores."docker/rootfs/usr/local/bin/wait-for-redis.py" = [
+per-file-ignores."docker/rootfs/usr/local/bin/wait-for-redis.py" = [
"INP001",
"T201",
]
-lint.per-file-ignores."docker/wait-for-redis.py" = [
+per-file-ignores."docker/wait-for-redis.py" = [
"INP001",
"T201",
]
-lint.per-file-ignores."src/documents/models.py" = [
+per-file-ignores."src/documents/models.py" = [
"SIM115",
]
-lint.per-file-ignores."src/paperless_tesseract/tests/test_parser.py" = [
- "RUF001",
-]
-lint.isort.force-single-line = true
+isort.force-single-line = true
[tool.codespell]
write-changes = true
ignore-words-list = "criterias,afterall,valeu,ureue,equest,ure,assertIn,Oktober,commitish"
-skip = "src-ui/src/locale/*,src-ui/pnpm-lock.yaml,src-ui/e2e/*,src/paperless_mail/tests/samples/*,src/documents/tests/samples/*,*.po,*.json"
+skip = """\
+ src-ui/src/locale/*,src-ui/pnpm-lock.yaml,src-ui/e2e/*,src/paperless_mail/tests/samples/*,src/paperless/tests/samples\
+ /mail/*,src/documents/tests/samples/*,*.po,*.json\
+ """
-[tool.pytest]
-minversion = "9.0"
-pythonpath = [ "src" ]
-
-strict_config = true
-strict_markers = true
-strict_parametrization_ids = true
-strict_xfail = true
-
-testpaths = [
- "src/documents/tests/",
- "src/paperless/tests/",
- "src/paperless_mail/tests/",
- "src/paperless_tesseract/tests/",
- "src/paperless_tika/tests",
- "src/paperless_text/tests/",
- "src/paperless_remote/tests/",
- "src/paperless_ai/tests",
-]
-
-addopts = [
- "--pythonwarnings=all",
- "--cov",
- "--cov-report=html",
- "--cov-report=xml",
- "--numprocesses=auto",
- "--maxprocesses=16",
- "--dist=loadscope",
- "--durations=50",
- "--durations-min=0.5",
- "--junitxml=junit.xml",
- "-o",
- "junit_family=legacy",
-]
-
-norecursedirs = [ "src/locale/", ".venv/", "src-ui/" ]
-
-DJANGO_SETTINGS_MODULE = "paperless.settings"
-
-markers = [
- "live: Integration tests requiring external services (Gotenberg, Tika, nginx, etc)",
- "nginx: Tests that make HTTP requests to the local nginx service",
- "gotenberg: Tests requiring Gotenberg service",
- "tika: Tests requiring Tika service",
- "greenmail: Tests requiring Greenmail service",
- "date_parsing: Tests which cover date parsing from content or filename",
- "management: Tests which cover management commands/functionality",
-]
-
-[tool.pytest_env]
-PAPERLESS_DISABLE_DBHANDLER = "true"
-PAPERLESS_CACHE_BACKEND = "django.core.cache.backends.locmem.LocMemCache"
-PAPERLESS_CHANNELS_BACKEND = "channels.layers.InMemoryChannelLayer"
-
-[tool.coverage.report]
-exclude_also = [
- "if settings.AUDIT_LOG_ENABLED:",
- "if AUDIT_LOG_ENABLED:",
- "if TYPE_CHECKING:",
-]
-
-[tool.coverage.run]
-source = [
- "src/",
-]
-omit = [
- "*/tests/*",
- "manage.py",
- "paperless/wsgi.py",
- "paperless/auth.py",
-]
+[tool.pyproject-fmt]
+table_format = "long"
[tool.mypy]
mypy_path = "src"
@@ -351,6 +274,71 @@ python-platform = "linux"
[tool.django-stubs]
django_settings_module = "paperless.settings"
+[tool.pytest]
+minversion = "9.0"
+pythonpath = [ "src" ]
+strict_config = true
+strict_markers = true
+strict_parametrization_ids = true
+strict_xfail = true
+testpaths = [
+ "src/documents/tests/",
+ "src/paperless/tests/",
+ "src/paperless_mail/tests/",
+ "src/paperless_ai/tests",
+]
+addopts = [
+ "--pythonwarnings=all",
+ "--cov",
+ "--cov-report=html",
+ "--cov-report=xml",
+ "--numprocesses=auto",
+ "--maxprocesses=16",
+ "--dist=loadscope",
+ "--durations=50",
+ "--durations-min=0.5",
+ "--junitxml=junit.xml",
+ "-o",
+ "junit_family=legacy",
+]
+norecursedirs = [ "src/locale/", ".venv/", "src-ui/" ]
+DJANGO_SETTINGS_MODULE = "paperless.settings"
+markers = [
+ "live: Integration tests requiring external services (Gotenberg, Tika, nginx, etc)",
+ "nginx: Tests that make HTTP requests to the local nginx service",
+ "gotenberg: Tests requiring Gotenberg service",
+ "tika: Tests requiring Tika service",
+ "greenmail: Tests requiring Greenmail service",
+ "date_parsing: Tests which cover date parsing from content or filename",
+ "management: Tests which cover management commands/functionality",
+ "search: Tests for the Tantivy search backend",
+]
+
+[tool.pytest_env]
+PAPERLESS_SECRET_KEY = "test-secret-key-do-not-use-in-production"
+PAPERLESS_DISABLE_DBHANDLER = "true"
+PAPERLESS_CACHE_BACKEND = "django.core.cache.backends.locmem.LocMemCache"
+PAPERLESS_CHANNELS_BACKEND = "channels.layers.InMemoryChannelLayer"
+# I don't think anything hits this, but just in case, basically infinite
+PAPERLESS_TOKEN_THROTTLE_RATE = "1000/min"
+
+[tool.coverage.report]
+exclude_also = [
+ "if settings.AUDIT_LOG_ENABLED:",
+ "if AUDIT_LOG_ENABLED:",
+ "if TYPE_CHECKING:",
+]
+[tool.coverage.run]
+source = [
+ "src/",
+]
+omit = [
+ "*/tests/*",
+ "manage.py",
+ "paperless/wsgi.py",
+ "paperless/auth.py",
+]
+
[tool.mypy-baseline]
baseline_path = ".mypy-baseline.txt"
sort_baseline = true
diff --git a/src-ui/e2e/dashboard/requests/api-dashboard1.har b/src-ui/e2e/dashboard/requests/api-dashboard1.har
index 07ff8ef9e..d39787c30 100644
--- a/src-ui/e2e/dashboard/requests/api-dashboard1.har
+++ b/src-ui/e2e/dashboard/requests/api-dashboard1.har
@@ -468,7 +468,7 @@
"time": 0.951,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&tags__id__in=9",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&tags__id__in=9",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
diff --git a/src-ui/e2e/dashboard/requests/api-dashboard2.har b/src-ui/e2e/dashboard/requests/api-dashboard2.har
index 912fbf308..0918eba8f 100644
--- a/src-ui/e2e/dashboard/requests/api-dashboard2.har
+++ b/src-ui/e2e/dashboard/requests/api-dashboard2.har
@@ -534,7 +534,7 @@
"time": 0.793,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -594,7 +594,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
diff --git a/src-ui/e2e/dashboard/requests/api-dashboard3.har b/src-ui/e2e/dashboard/requests/api-dashboard3.har
index 6c441970c..fbd31c37c 100644
--- a/src-ui/e2e/dashboard/requests/api-dashboard3.har
+++ b/src-ui/e2e/dashboard/requests/api-dashboard3.har
@@ -534,7 +534,7 @@
"time": 0.653,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&tags__id__all=9",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=10&ordering=-created&truncate_content=true&include_selection_data=true&tags__id__all=9",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
diff --git a/src-ui/e2e/document-detail/requests/api-document-detail2.har b/src-ui/e2e/document-detail/requests/api-document-detail2.har
index ee3166211..1aeb6dc55 100644
--- a/src-ui/e2e/document-detail/requests/api-document-detail2.har
+++ b/src-ui/e2e/document-detail/requests/api-document-detail2.har
@@ -883,7 +883,7 @@
"time": 0.93,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&tags__id__all=4",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&tags__id__all=4",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -961,7 +961,7 @@
"time": -1,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&tags__id__all=4",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&tags__id__all=4",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
diff --git a/src-ui/e2e/document-list/document-list.spec.ts b/src-ui/e2e/document-list/document-list.spec.ts
index 9aa4d2fdc..0cea8effa 100644
--- a/src-ui/e2e/document-list/document-list.spec.ts
+++ b/src-ui/e2e/document-list/document-list.spec.ts
@@ -16,7 +16,7 @@ test('basic filtering', async ({ page }) => {
await expect(page).toHaveURL(/tags__id__all=9/)
await expect(page.locator('pngx-document-list')).toHaveText(/8 documents/)
await page.getByRole('button', { name: 'Document type' }).click()
- await page.getByRole('menuitem', { name: 'Invoice Test 3' }).click()
+ await page.getByRole('menuitem', { name: /^Invoice Test/ }).click()
await expect(page).toHaveURL(/document_type__id__in=1/)
await expect(page.locator('pngx-document-list')).toHaveText(/3 documents/)
await page.getByRole('button', { name: 'Reset filters' }).first().click()
@@ -49,11 +49,11 @@ test('text filtering', async ({ page }) => {
await page.getByRole('main').getByRole('combobox').click()
await page.getByRole('main').getByRole('combobox').fill('test')
await expect(page.locator('pngx-document-list')).toHaveText(/32 documents/)
- await expect(page).toHaveURL(/title_content=test/)
+ await expect(page).toHaveURL(/text=test/)
await page.getByRole('button', { name: 'Title & content' }).click()
await page.getByRole('button', { name: 'Title', exact: true }).click()
await expect(page.locator('pngx-document-list')).toHaveText(/9 documents/)
- await expect(page).toHaveURL(/title__icontains=test/)
+ await expect(page).toHaveURL(/title_search=test/)
await page.getByRole('button', { name: 'Title', exact: true }).click()
await page.getByRole('button', { name: 'Advanced search' }).click()
await expect(page).toHaveURL(/query=test/)
diff --git a/src-ui/e2e/document-list/requests/api-document-list1.har b/src-ui/e2e/document-list/requests/api-document-list1.har
index 6a4aa9ac1..35ce0537c 100644
--- a/src-ui/e2e/document-list/requests/api-document-list1.har
+++ b/src-ui/e2e/document-list/requests/api-document-list1.har
@@ -260,7 +260,7 @@
"time": 1.023,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -320,7 +320,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -3545,7 +3545,7 @@
"time": 0.933,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&tags__id__all=9",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&tags__id__all=9",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -3687,7 +3687,7 @@
"time": 0.597,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&tags__id__all=9&document_type__id__in=1",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&tags__id__all=9&document_type__id__in=1",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -3833,7 +3833,7 @@
"time": 0.771,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -3893,7 +3893,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -3971,7 +3971,7 @@
"time": 0.55,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&correspondent__id__in=1",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&correspondent__id__in=1",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4113,7 +4113,7 @@
"time": 0.554,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&correspondent__id__in=12,1",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&correspondent__id__in=12,1",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4255,7 +4255,7 @@
"time": 0.759,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&correspondent__id__none=12,1",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&correspondent__id__none=12,1",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4319,7 +4319,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":54,\"next\":\"http://localhost:8000/api/documents/?correspondent__id__none=12%2C1&ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,298,290,277,268,261,260,252,243,223,284,220,204,175,196,177,176,181,205,206,191,227,180,3,224,233,312,258,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":54,\"next\":\"http://localhost:8000/api/documents/?correspondent__id__none=12%2C1&ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,298,290,277,268,261,260,252,243,223,284,220,204,175,196,177,176,181,205,206,191,227,180,3,224,233,312,258,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4789,7 +4789,7 @@
"time": 0.754,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4849,7 +4849,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4927,7 +4927,7 @@
"time": 0.659,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&storage_path__id__in=5",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&storage_path__id__in=5",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -5069,7 +5069,7 @@
"time": 0.8,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -5129,7 +5129,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
diff --git a/src-ui/e2e/document-list/requests/api-document-list2.har b/src-ui/e2e/document-list/requests/api-document-list2.har
index 65de66d17..f6a488b26 100644
--- a/src-ui/e2e/document-list/requests/api-document-list2.har
+++ b/src-ui/e2e/document-list/requests/api-document-list2.har
@@ -260,7 +260,7 @@
"time": 1.729,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -320,7 +320,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -3545,7 +3545,7 @@
"time": 1.091,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&title_content=test",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&text=test",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -3579,7 +3579,7 @@
"value": "true"
},
{
- "name": "title_content",
+ "name": "text",
"value": "test"
}
],
@@ -4303,7 +4303,7 @@
"time": 0.603,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&title__icontains=test",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&title_search=test",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4337,7 +4337,7 @@
"value": "true"
},
{
- "name": "title__icontains",
+ "name": "title_search",
"value": "test"
}
],
@@ -4445,7 +4445,7 @@
"time": 0.602,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&query=test",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&query=test",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4587,7 +4587,7 @@
"time": 0.523,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&archive_serial_number=test",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&archive_serial_number=test",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4664,7 +4664,7 @@
"time": 1.59,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&archive_serial_number=1123",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&archive_serial_number=1123",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4806,7 +4806,7 @@
"time": 1.859,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&archive_serial_number__gt=1123",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&archive_serial_number__gt=1123",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4948,7 +4948,7 @@
"time": 0.571,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&archive_serial_number__lt=1123",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&archive_serial_number__lt=1123",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -5089,7 +5089,7 @@
"time": 0.757,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&archive_serial_number__isnull=1",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&archive_serial_number__isnull=1",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -5153,7 +5153,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":55,\"next\":\"http://localhost:8000/api/documents/?archive_serial_number__isnull=1&ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,176,5,181,205,191,227,180,224,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]}]}"
+ "text": "{\"count\":55,\"next\":\"http://localhost:8000/api/documents/?archive_serial_number__isnull=1&ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,176,5,181,205,191,227,180,224,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -5231,7 +5231,7 @@
"time": 0.574,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&archive_serial_number__isnull=0",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&archive_serial_number__isnull=0",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
diff --git a/src-ui/e2e/document-list/requests/api-document-list3.har b/src-ui/e2e/document-list/requests/api-document-list3.har
index 291915a65..9872331de 100644
--- a/src-ui/e2e/document-list/requests/api-document-list3.har
+++ b/src-ui/e2e/document-list/requests/api-document-list3.har
@@ -260,7 +260,7 @@
"time": 0.944,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -320,7 +320,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -3545,7 +3545,7 @@
"time": 0.828,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&query=created:%5B-3%20month%20to%20now%5D",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&query=created:%5B-3%20month%20to%20now%5D",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -3687,7 +3687,7 @@
"time": 1.501,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&created__date__gte=2022-12-11",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true&created__date__gte=2022-12-11",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
diff --git a/src-ui/e2e/document-list/requests/api-document-list4.har b/src-ui/e2e/document-list/requests/api-document-list4.har
index 60657e3c9..a9e8815dd 100644
--- a/src-ui/e2e/document-list/requests/api-document-list4.har
+++ b/src-ui/e2e/document-list/requests/api-document-list4.har
@@ -260,7 +260,7 @@
"time": 0.803,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -320,7 +320,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -3545,7 +3545,7 @@
"time": 1.454,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-archive_serial_number&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-archive_serial_number&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -3605,7 +3605,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-archive_serial_number&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[298,206,177,7,4,3,5,175,176,179,180,181,191,196,204,205,219,220,223,224,225,227,228,230,231,232,233,234,235,236,237,238,241,242,243,244,246,247,248,249,250,251,252,254,255,256,258,259,260,261,268,277,278,284,290,295,296,297,307,310,312],\"results\":[{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-archive_serial_number&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[298,206,177,7,4,3,5,175,176,179,180,181,191,196,204,205,219,220,223,224,225,227,228,230,231,232,233,234,235,236,237,238,241,242,243,244,246,247,248,249,250,251,252,254,255,256,258,259,260,261,268,277,278,284,290,295,296,297,307,310,312],\"results\":[{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4299,7 +4299,7 @@
"time": 0.695,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-correspondent__name&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-correspondent__name&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4359,7 +4359,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-correspondent__name&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[4,179,296,196,5,7,295,297,3,180,181,191,205,206,243,252,220,223,298,310,175,176,177,204,219,224,225,227,228,230,231,232,233,234,235,236,237,238,241,242,244,246,247,248,249,250,251,254,255,256,258,259,260,261,268,277,278,284,290,307,312],\"results\":[{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-correspondent__name&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[4,179,296,196,5,7,295,297,3,180,181,191,205,206,243,252,220,223,298,310,175,176,177,204,219,224,225,227,228,230,231,232,233,234,235,236,237,238,241,242,244,246,247,248,249,250,251,254,255,256,258,259,260,261,268,277,278,284,290,307,312],\"results\":[{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4437,7 +4437,7 @@
"time": 0.804,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-title&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-title&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4497,7 +4497,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-title&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[219,284,307,179,295,7,5,177,176,3,224,205,206,191,204,233,235,236,237,175,196,290,181,310,312,228,227,296,259,260,298,225,223,220,180,232,230,231,238,234,277,242,241,243,244,246,4,254,250,249,261,268,258,278,255,252,256,251,248,297,247],\"results\":[{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-title&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[219,284,307,179,295,7,5,177,176,3,224,205,206,191,204,233,235,236,237,175,196,290,181,310,312,228,227,296,259,260,298,225,223,220,180,232,230,231,238,234,277,242,241,243,244,246,4,254,250,249,261,268,258,278,255,252,256,251,248,297,247],\"results\":[{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4575,7 +4575,7 @@
"time": 0.72,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-document_type__name&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-document_type__name&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4635,7 +4635,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-document_type__name&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[3,180,181,220,223,243,277,296,310,176,4,5,7,175,177,179,191,196,204,205,206,219,224,225,227,228,230,231,232,233,234,235,236,237,238,241,242,244,246,247,248,249,250,251,252,254,255,256,258,259,260,261,268,278,284,290,295,297,298,307,312],\"results\":[{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-document_type__name&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[3,180,181,220,223,243,277,296,310,176,4,5,7,175,177,179,191,196,204,205,206,219,224,225,227,228,230,231,232,233,234,235,236,237,238,241,242,244,246,247,248,249,250,251,252,254,255,256,258,259,260,261,268,278,284,290,295,297,298,307,312],\"results\":[{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4713,7 +4713,7 @@
"time": 0.651,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4773,7 +4773,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4851,7 +4851,7 @@
"time": 0.74,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-added&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-added&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -4911,7 +4911,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-added&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[312,310,307,298,297,296,295,290,284,278,277,268,261,260,259,258,256,255,254,252,251,250,249,248,247,246,244,243,242,241,238,237,236,235,234,233,232,231,230,228,227,225,224,223,220,219,206,205,204,196,191,181,180,179,177,176,175,7,5,4,3],\"results\":[{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-added&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[312,310,307,298,297,296,295,290,284,278,277,268,261,260,259,258,256,255,254,252,251,250,249,248,247,246,244,243,242,241,238,237,236,235,234,233,232,231,230,228,227,225,224,223,220,219,206,205,204,196,191,181,180,179,177,176,175,7,5,4,3],\"results\":[{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -4989,7 +4989,7 @@
"time": 0.747,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-modified&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-modified&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -5049,7 +5049,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-modified&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[296,278,298,312,310,290,231,307,297,176,223,277,175,3,295,191,205,5,181,252,180,284,243,233,260,261,268,4,220,224,219,259,206,258,256,255,254,251,250,249,248,247,246,244,242,241,238,237,236,235,234,232,230,228,227,225,204,196,177,7,179],\"results\":[{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-modified&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[296,278,298,312,310,290,231,307,297,176,223,277,175,3,295,191,205,5,181,252,180,284,243,233,260,261,268,4,220,224,219,259,206,258,256,255,254,251,250,249,248,247,246,244,242,241,238,237,236,235,234,232,230,228,227,225,204,196,177,7,179],\"results\":[{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -5127,7 +5127,7 @@
"time": 0.837,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-num_notes&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-num_notes&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -5187,7 +5187,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-num_notes&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[277,175,296,7,3,176,231,261,297,298,307,4,5,177,179,180,181,191,196,204,205,206,219,220,223,224,225,227,228,230,232,233,234,235,236,237,238,241,242,243,244,246,247,248,249,250,251,252,254,255,256,258,259,260,268,278,284,290,295,310,312],\"results\":[{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-num_notes&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[277,175,296,7,3,176,231,261,297,298,307,4,5,177,179,180,181,191,196,204,205,206,219,220,223,224,225,227,228,230,232,233,234,235,236,237,238,241,242,243,244,246,247,248,249,250,251,252,254,255,256,258,259,260,268,278,284,290,295,310,312],\"results\":[{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":231,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Knee Emergency Radiol\",\"content\":\"CHAPTER IV-3\\n\\nLower Extremity: Patient 3\\n\\nKnee pain in two patients\\nfollowing minor trauma\\n\\nPATIENT 3A A 62-year-old woman\\ntwisted her knee two days earlier\\nwhile moving a sofa at her home.\\nHer pain persisted and she needed a\\ncane to walk.\\n\\nOn examination, the lateral as-\\npect of her knee was tender and\\nthere was a small effusion. Flexion\\nwas limited to 60(cid:2). There was no\\ntenderness over the patella. Her\\nquadriceps strength was good and\\nthere was no ligamentous instability.\\n\\nPATIENT 3B A 24-year-old woman\\nwas struck on the lateral aspect o\",\"tags\":[],\"created\":\"2000-11-01T00:00:00Z\",\"created_date\":\"2000-11-01\",\"modified\":\"2023-03-18T20:53:39.573447Z\",\"added\":\"2022-03-13T15:56:11.171627Z\",\"archive_serial_number\":null,\"original_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"archived_file_name\":\"2000-11-01 Knee Emergency Radiol.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":35,\"note\":\"Add one\",\"created\":\"2023-03-18T20:53:47.946025Z\",\"document\":231,\"user\":2}]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
@@ -5265,7 +5265,7 @@
"time": 0.759,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=num_notes&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=num_notes&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -5325,7 +5325,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=num_notes&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[4,5,177,179,180,181,191,196,204,205,206,219,220,223,224,225,227,228,230,232,233,234,235,236,237,238,241,242,243,244,246,247,248,249,250,251,252,254,255,256,258,259,260,268,278,284,290,295,310,312,3,176,231,261,297,298,307,7,175,296,277],\"results\":[{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=num_notes&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[4,5,177,179,180,181,191,196,204,205,206,219,220,223,224,225,227,228,230,232,233,234,235,236,237,238,241,242,243,244,246,247,248,249,250,251,252,254,255,256,258,259,260,268,278,284,290,295,310,312,3,176,231,261,297,298,307,7,175,296,277],\"results\":[{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":225,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Sabaté-2003-The contribution of\",\"content\":\"The contribution of vegetarian diets to health and disease: a\\nparadigm shift?1–3\\n\\nJoan Sabaté\\n\\nABSTRACT\\nAdvances in nutrition research during the past\\nfew decades have changed scientists’ understanding of the contri-\\nbution of vegetarian diets to human health and disease. Diets largely\\nbased on plant foods, such as well-balanced vegetarian diets, could\\nbest prevent nutrient deficiencies as well as diet-related chronic dis-\\neases. However, restrictive or unbalanced vegetarian diets may lead\\nto nutritional deficiencies, particularly in situations \",\"tags\":[],\"created\":\"1990-03-13T00:00:00Z\",\"created_date\":\"1990-03-13\",\"modified\":\"2022-03-13T15:53:35.781177Z\",\"added\":\"2022-03-13T15:53:35.501205Z\",\"archive_serial_number\":null,\"original_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"archived_file_name\":\"1990-03-13 Sabaté-2003-The contribution of.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":228,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Wenrich-Cheerleader to Coach\",\"content\":\"Moderator: Paul A. Hemmer, MD, MPH\\n\\nFeedback in Teaching and Learning\\n\\nFrom Cheerleader to Coach: The Developmental \\nProgression of Bedside Teachers in Giving \\nFeedback to Early Learners\\nMarjorie D. Wenrich, MPH, Molly Blackley Jackson, MD, Ramoncita R. Maestas, MD, \\nIneke H.A.P. Wolfhagen, PhD, and Albert J.J. Scherpbier, MD, PhD\\n\\nAbstract\\n\\nBackground\\nMedical students learn clinical skills at the \\nbedside from teaching clinicians, who \\noften learn to teach by teaching. Little is \\nknown about the process of becoming an \\neffective clinical teach\",\"tags\":[4],\"created\":\"2007-03-01T00:00:00Z\",\"created_date\":\"2007-03-01\",\"modified\":\"2022-03-13T15:55:00.200623Z\",\"added\":\"2022-03-13T15:54:59.957066Z\",\"archive_serial_number\":null,\"original_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"archived_file_name\":\"2007-03-01 Wenrich-Cheerleader to Coach.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":230,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Lara-2010-Diffuse-alveolar-hemorrhage\",\"content\":\"CHEST Recent Advances in Chest Medicine\\n\\nDiffuse Alveolar Hemorrhage \\n\\nAbigail R. Lara , MD ; and Marvin I. Schwarz , MD , FCCP \\n\\nDiffuse alveolar hemorrhage (DAH) is often a catastrophic clinical syndrome causing respiratory \\nfailure. Recognition of DAH often requires BAL as symptoms are nonspecifi c, hemoptysis is \\nabsent in up to one-third of patients, and radiographic imaging is also nonspecifi c and similar to \\nother acute alveolar fi lling processes. Once the diagnosis is established, the underlying cause \\nmust be established in order to ini\",\"tags\":[4],\"created\":\"2009-08-27T00:00:00Z\",\"created_date\":\"2009-08-27\",\"modified\":\"2022-03-13T15:55:56.127564Z\",\"added\":\"2022-03-13T15:55:55.717855Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"archived_file_name\":\"2009-08-27 Lara-2010-Diffuse-alveolar-hemorrhage.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":235,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jama_zhong_2019_oi_190019\",\"content\":\"Research\\n\\nJAMA | Original Investigation\\nAssociations of Dietary Cholesterol or Egg Consumption\\nWith Incident Cardiovascular Disease and Mortality\\n\\nVictor W. Zhong, PhD; Linda Van Horn, PhD; Marilyn C. Cornelis, PhD; John T. Wilkins, MD, MS; Hongyan Ning, MD, MS;\\nMercedes R. Carnethon, PhD; Philip Greenland, MD; Robert J. Mentz, MD; Katherine L. Tucker, PhD; Lihui Zhao, PhD;\\nArnita F. Norwood, PhD; Donald M. Lloyd-Jones, MD, ScM; Norrina B. Allen, PhD\\n\\nIMPORTANCE Cholesterol is a common nutrient in the human diet and eggs are a major source\\nof d\",\"tags\":[],\"created\":\"1985-03-25T00:00:00Z\",\"created_date\":\"1985-03-25\",\"modified\":\"2022-03-13T15:58:20.036498Z\",\"added\":\"2022-03-13T15:58:19.509334Z\",\"archive_serial_number\":null,\"original_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"archived_file_name\":\"1985-03-25 jama_zhong_2019_oi_190019.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":238,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Jauch-2013-Guidelines for the Early Management\",\"content\":\"AHA/ASA Guideline\\n\\nGuidelines for the Early Management of Patients \\nWith Acute Ischemic Stroke\\nA Guideline for Healthcare Professionals From the American Heart \\nAssociation/American Stroke Association\\nThe American Academy of Neurology affirms the value of this guideline as an educational \\ntool for neurologists.\\n\\nEndorsed by the American Association of Neurological Surgeons and Congress \\nof Neurological Surgeons\\n\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\nD\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nw\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nn\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\nl\\no\\no\\no\\no\\no\\no\\no\\no\\no\\no\\na\\na\\na\\na\\na\\na\\na\\n\",\"tags\":[4],\"created\":\"2009-03-01T00:00:00Z\",\"created_date\":\"2009-03-01\",\"modified\":\"2022-03-13T15:59:12.744798Z\",\"added\":\"2022-03-13T15:59:10.560640Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"archived_file_name\":\"2009-03-01 Jauch-2013-Guidelines for the Early Management.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":241,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Glassick 2000 Acad Med Boyers expanded def of scholarship\",\"content\":\"Boyer’s Expanded Definitions of Scholarship, the\\nStandards for Assessing Scholarship, and the\\nElusiveness of the Scholarship of Teaching\\n\\nA R T I C L E\\n\\nCharles E. Glassick, PhD\\n\\nABSTRACT\\n\\nDebate about faculty roles and rewards in higher educa-\\ntion during the past decade has been fueled by the work\\nof the Carnegie Foundation for the Advancement of\\nTeaching, principally Scholarship Reconsidered and Schol-\\narship Assessed. The author summarizes those publications\\nand reviews the more recent work of Lee Shulman on the\\nscholarship of teaching.\\n\\nIn \",\"tags\":[],\"created\":\"1989-03-01T00:00:00Z\",\"created_date\":\"1989-03-01\",\"modified\":\"2022-03-13T15:59:25.008092Z\",\"added\":\"2022-03-13T15:59:24.865834Z\",\"archive_serial_number\":null,\"original_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"archived_file_name\":\"1989-03-01 Glassick 2000 Acad Med Boyers expanded def of scholarship.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":244,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Ericsson_Deliberate Practice_Med Educ_2007\",\"content\":\"clinical performance\\n\\nAn expert-performance perspective of research on\\nmedical expertise: the study of clinical performance\\n\\nK ANDERS ERICSSON\\n\\nCONTEXT Three decades ago Elstein et al. pub-\\nlished their classic book on medical expertise, in\\nwhich they described their failure to identify superior\\nperformance by peer-nominated diagnosticians using\\nhigh- and low-fidelity simulations of the everyday\\npractice of doctors.\\n\\nOBJECTIVE This paper reviews the results of\\nsubsequent research, with a particular emphasis on\\nthe progress toward Elstein et al.(\",\"tags\":[],\"created\":\"2004-03-01T00:00:00Z\",\"created_date\":\"2004-03-01\",\"modified\":\"2022-03-13T16:00:13.891872Z\",\"added\":\"2022-03-13T16:00:13.671286Z\",\"archive_serial_number\":null,\"original_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"archived_file_name\":\"2004-03-01 Ericsson_Deliberate Practice_Med Educ_2007.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":251,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1777.full\",\"content\":\"C l i n i c a l C a r e / E d u c a t i o n / N u t r i t i o n\\n\\nO R I G I N A L\\n\\nA R T I C L E\\n\\nA Low-Fat Vegan Diet Improves Glycemic\\nControl and Cardiovascular Risk Factors in\\na Randomized Clinical Trial in Individuals\\nWith Type 2 Diabetes\\n\\n1,2\\n\\n1\\n\\nNEAL D. BARNARD, MD\\nJOSHUA COHEN, MD\\n3\\nDAVID J.A. JENKINS, MD, PHD\\nGABRIELLE TURNER-MCGRIEVY, MS, RD\\nLISE GLOEDE, RD, CDE\\n\\n5\\n\\n4\\n\\n2\\n\\nBRENT JASTER, MD\\n2\\nKIM SEIDL, MS, RD\\nAMBER A. GREEN, RD\\nSTANLEY TALPERS, MD\\n\\n2\\n\\n1\\n\\nOBJECTIVE — We sought to investigate whether a low-fat vegan diet improves glycemic\",\"tags\":[4],\"created\":\"2006-03-20T00:00:00Z\",\"created_date\":\"2006-03-20\",\"modified\":\"2022-03-15T07:48:33.046219Z\",\"added\":\"2022-03-15T07:48:32.734784Z\",\"archive_serial_number\":null,\"original_file_name\":\"2006-03-20 1777.full.pdf\",\"archived_file_name\":\"2006-03-20 1777.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":256,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"1995-Tissue plasminogen activator for acute is\",\"content\":\"\\n\\nCopyright, 1995, by the Massachusetts Medical Society\\n\\nVolume 333\\n\\nDECEMBER 14, 1995\\n\\nNumber 24\\n\\nTISSUE PLASMINOGEN ACTIVATOR FOR ACUTE ISCHEMIC STROKE\\n\\nT\\n\\nHE\\n\\nN\\n\\nATIONAL\\n\\nNSTITUTE\\n\\nOF\\n\\nEUROLOGICAL\\n\\nISORDERS\\n\\nAND\\n\\nTROKE\\n\\n\\n\\nS\\n\\nrt-PA S\\n\\nTROKE\\n\\nS\\n\\nTUDY\\n\\nG\\n\\nROUP\\n\\n*\\n\\n\\n\\nN\\n\\nD\\n\\nI\\n\\nMethods.\\n\\nBackground.\\n\\nAbstract\\nThrombolytic therapy for acute\\nischemic stroke has been approached cautiously be-\\ncause there were high rates of intracerebral hemorrhage\\nin early clinical trials. We performed a randomized, dou-\\nble-blind trial of intravenous recombinant ti\",\"tags\":[],\"created\":\"1995-12-14T00:00:00Z\",\"created_date\":\"1995-12-14\",\"modified\":\"2022-03-15T15:26:36.261713Z\",\"added\":\"2022-03-15T15:26:35.956683Z\",\"archive_serial_number\":null,\"original_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"archived_file_name\":\"1995-12-14 1995-Tissue plasminogen activator for acute is.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":259,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Testing Old Date 2\",\"content\":\"Release Notes \\n\\nSimba ODBC Driver for SQL Server 1.2.3 \\n\\nThe release notes provide details of enhancements, features, and known issues in Simba ODBC \\nDriver for SQL Server 1.2.3, as well as the version history. \\n\\nResolved Issues \\n\\nThe following issues have been resolved in Simba ODBC Driver for SQL Server 1.2.3. \\n\\nWhen querying large SQL_NUMERIC or SQL_DECIMAL values and retrieving the values as \\nSQL_C_SBIGINT data, an error occurs \\n\\nThis issue has been resolved. You can now retrieve SQL_NUMERIC or SQL_DECIMAL values as \\nSQL_C_SBIGINT data. \\n\\nK\",\"tags\":[6],\"created\":\"1972-01-31T06:16:54Z\",\"created_date\":\"1972-01-31\",\"modified\":\"2022-05-16T05:48:28.628441Z\",\"added\":\"2022-03-16T03:49:02.104010Z\",\"archive_serial_number\":null,\"original_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"archived_file_name\":\"1972-01-31 Testing Old Date 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
diff --git a/src-ui/e2e/document-list/requests/api-document-list5.har b/src-ui/e2e/document-list/requests/api-document-list5.har
index 8e96ed962..edfde924e 100644
--- a/src-ui/e2e/document-list/requests/api-document-list5.har
+++ b/src-ui/e2e/document-list/requests/api-document-list5.har
@@ -260,7 +260,7 @@
"time": 0.944,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -320,7 +320,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[5],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9,5],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
diff --git a/src-ui/e2e/document-list/requests/api-document-list6.har b/src-ui/e2e/document-list/requests/api-document-list6.har
index 194b2f7b7..5e0125a99 100644
--- a/src-ui/e2e/document-list/requests/api-document-list6.har
+++ b/src-ui/e2e/document-list/requests/api-document-list6.har
@@ -260,7 +260,7 @@
"time": 0.871,
"request": {
"method": "GET",
- "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true",
+ "url": "http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true&include_selection_data=true",
"httpVersion": "HTTP/1.1",
"cookies": [],
"headers": [
@@ -320,7 +320,7 @@
"content": {
"size": -1,
"mimeType": "application/json",
- "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
+ "text": "{\"count\":61,\"next\":\"http://localhost:8000/api/documents/?ordering=-created&page=2&page_size=50&truncate_content=true&include_selection_data=true\",\"previous\":null,\"all\":[310,307,297,298,296,290,277,268,261,260,252,243,223,284,220,204,179,175,196,177,176,7,5,181,205,206,191,227,180,3,224,4,233,312,258,295,236,254,242,278,246,255,232,234,219,250,248,249,247,237,230,238,228,251,244,231,256,225,241,235,259],\"results\":[{\"id\":310,\"correspondent\":3,\"document_type\":1,\"storage_path\":null,\"title\":\"[paperless] test post-owner\",\"content\":\"Medical Teacher\\r\\n\\r\\nISSN: 0142-159X (Print) 1466-187X (Online) Journal homepage: http://www.tandfonline.com/loi/imte20\\r\\n\\r\\nHas the new Kirkpatrick generation built a better\\r\\nhammer for our evaluation toolbox?\\r\\n\\r\\nKatherine A. Moreau\\r\\n\\r\\nTo cite this article: Katherine A. Moreau (2017) Has the new Kirkpatrick generation built\\r\\na better hammer for our evaluation toolbox?, Medical Teacher, 39:9, 999-1001, DOI:\\r\\n10.1080/0142159X.2017.1337874\\r\\n\\r\\nTo link to this article: https://doi.org/10.1080/0142159X.2017.1337874\\r\\n\\r\\nPublished online: 26 Jun 2017.\\r\\n\\r\\nS\",\"tags\":[9,2,20],\"created\":\"2023-03-26T00:00:00Z\",\"created_date\":\"2023-03-26\",\"modified\":\"2023-04-27T21:13:54.604887Z\",\"added\":\"2022-12-14T06:20:26.891909Z\",\"archive_serial_number\":null,\"original_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"archived_file_name\":\"2023-03-26 Corresp Owned by Test [paperless] test post-owner.pdf\",\"owner\":15,\"user_can_change\":false,\"notes\":[]},{\"id\":307,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"tablerates\",\"content\":\"Country,Region/State,\\\"Zip/Postal Code\\\",\\\"Weight (and above)\\\",\\\"Shipping Price\\\"\",\"tags\":[],\"created\":\"2022-12-12T00:00:00Z\",\"created_date\":\"2022-12-12\",\"modified\":\"2023-03-18T20:45:15.922135Z\",\"added\":\"2022-12-12T21:23:06.607087Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-12-12 tablerates.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":34,\"note\":\"Hiya\",\"created\":\"2023-03-18T20:45:15.231332Z\",\"document\":307,\"user\":2}]},{\"id\":297,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"1 Testing New Title Updated 2\",\"content\":\"one,1.0\\nfive,5.0\",\"tags\":[4,9],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-03-18T03:22:11.771968Z\",\"added\":\"2022-10-03T00:53:12.731161Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-03 Correspondent 9 1 Testing New Title Updated 2.txt\",\"archived_file_name\":null,\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":65,\"note\":\"hiya\",\"created\":\"2023-04-29T07:10:13.732931Z\",\"document\":297,\"user\":2}]},{\"id\":298,\"correspondent\":3,\"document_type\":null,\"storage_path\":null,\"title\":\"Sample100.csv\",\"content\":\"Serial Number,Company Name,Employee Markme,Description,Leave\\r\\n9788189999599,TALES OF SHIVA,Mark,mark,0\\r\\n9780099578079,1Q84 THE COMPLETE TRILOGY,HARUKI MURAKAMI,Mark,0\\r\\n9780198082897,MY KUMAN,Mark,Mark,0\\r\\n9780007880331,THE GOD OF SMAAL THINGS,ARUNDHATI ROY,4TH HARPER COLLINS,2\\r\\n9780545060455,THE BLACK CIRCLE,Mark,4TH HARPER COLLINS,0\\r\\n9788126525072,THE THREE LAWS OF PERFORMANCE,Mark,4TH HARPER COLLINS,0\\r\\n9789381626610,CHAMarkKYA MANTRA,Mark,4TH HARPER COLLINS,0\\r\\n9788184513523,59.FLAGS,Mark,4TH HARPER COLLINS,0\\r\\n9780743234801,THE POWER OF POSITIV\",\"tags\":[9,10,2],\"created\":\"2022-10-03T00:00:00Z\",\"created_date\":\"2022-10-03\",\"modified\":\"2023-05-04T06:35:51.600152Z\",\"added\":\"2022-10-03T06:54:52.615096Z\",\"archive_serial_number\":112412326,\"original_file_name\":\"2022-10-03 Corresp Owned by Test Sample100.csv.csv\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":64,\"note\":\"testing\",\"created\":\"2023-04-29T06:50:02.993401Z\",\"document\":298,\"user\":2}]},{\"id\":296,\"correspondent\":1,\"document_type\":1,\"storage_path\":null,\"title\":\"UM_PPBE_en_v29\",\"content\":\"PowerPanel® Business Edition \\nUser’s Manual \\n\\nRev. 29 \\n\\n2018/04 \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL BUSINESS \\n\\nEDITION \\n\\nNOTICE TO USER: \\n\\nTHIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND \\n\\nCONDITIONS OF THIS AGREEMENT. The End User License Agreement and copyright of CyberPower \\n\\nPowerPanel® Business Edition product and related explanatory materials (\\\"Software\\\") are owned by Cyber \\n\\nPower Systems (USA), Inc. The term \\\"Software\\\" also shall include any upgrades, modified\",\"tags\":[4,9],\"created\":\"2022-10-02T00:00:00Z\",\"created_date\":\"2022-10-02\",\"modified\":\"2023-05-12T06:11:20.780276Z\",\"added\":\"2022-10-02T07:17:09.462696Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"archived_file_name\":\"2022-10-02 Test Correspondent 1 UM_PPBE_en_v29.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[{\"id\":58,\"note\":\"add another\",\"created\":\"2023-04-29T05:59:04.944315Z\",\"document\":296,\"user\":2},{\"id\":59,\"note\":\"test again\",\"created\":\"2023-04-29T05:59:26.727002Z\",\"document\":296,\"user\":2},{\"id\":67,\"note\":\"This is a new note\",\"created\":\"2023-05-12T16:17:07.202260Z\",\"document\":296,\"user\":2},{\"id\":68,\"note\":\"Testing another note\",\"created\":\"2023-05-12T16:51:30.556198Z\",\"document\":296,\"user\":2}]},{\"id\":290,\"correspondent\":null,\"document_type\":null,\"storage_path\":2,\"title\":\"drylab Test\",\"content\":\"Drylab(cid:78)(cid:101)(cid:119)(cid:115)\\n\\n(cid:102)(cid:111)(cid:114)(cid:32)(cid:105)(cid:110)(cid:118)(cid:101)(cid:115)(cid:116)(cid:111)(cid:114)(cid:115)(cid:32)(cid:38)(cid:32)(cid:102)(cid:114)(cid:105)(cid:101)(cid:110)(cid:100)(cid:115)(cid:32)(cid:225)(cid:32)(cid:77)(cid:97)(cid:121)(cid:32)(cid:50)(cid:48)(cid:49)(cid:55)\\n\\nWelcome to our 昀椀rst newsletter of 2017! It's\\nbeen a while since the last one, and a lot has\\nhappened. We promise to keep them coming\\nevery two months hereafter, and permit\\nourselves to make this one rather long.\",\"tags\":[9],\"created\":\"2022-09-12T00:00:00Z\",\"created_date\":\"2022-09-12\",\"modified\":\"2023-03-31T20:29:00.967776Z\",\"added\":\"2022-09-12T18:50:37.033041Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-09-12 drylab Test.pdf\",\"archived_file_name\":\"2022-09-12 drylab Test.pdf\",\"owner\":2,\"user_can_change\":true,\"notes\":[]},{\"id\":277,\"correspondent\":null,\"document_type\":1,\"storage_path\":2,\"title\":\"InDesign 2022 Scripting Read Me\",\"content\":\"Adobe® InDesign® 2022 Scripting ReadMe\\n\\nThis document contains information about scripting in Adobe InDesign 2022, including:\\n\\n•\\n\\n•\\n\\n•\\n\\n•\\n\\nA summary of the InDesign scripting documentation (see “InDesign Scripting Documentation” on \\npage 1).\\n\\nDirections for running a script (see “Running Scripts” on page 2).\\n\\nA list and brief description of InDesign sample scripts (see “Sample Scripts” on page 2).\\n\\nA list of known issues in InDesign scripting (see “Known Issues Related to InDesign Scripting” on \\npage 9).\\n\\nFor more information on InDesign script\",\"tags\":[4,9,10,14,2,3,5,19],\"created\":\"2022-06-10T00:00:00Z\",\"created_date\":\"2022-06-10\",\"modified\":\"2023-03-04T03:59:21.797338Z\",\"added\":\"2022-06-10T20:11:42.076216Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"archived_file_name\":\"2022-06-10 InDesign 2022 Scripting Read Me.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":30,\"note\":\"One more time\",\"created\":\"2023-03-17T22:02:14.357575Z\",\"document\":277,\"user\":2},{\"id\":31,\"note\":\"We're gonna celebrate\",\"created\":\"2023-03-17T22:02:24.321943Z\",\"document\":277,\"user\":2},{\"id\":32,\"note\":\"And again\",\"created\":\"2023-03-17T22:04:57.074641Z\",\"document\":277,\"user\":2},{\"id\":33,\"note\":\"All good\",\"created\":\"2023-03-17T22:05:01.631415Z\",\"document\":277,\"user\":2},{\"id\":36,\"note\":\"This is a comment with some markdown. Watch this:\\n\\n- [Here's a doc link](http://localhost:4200/documents/278)\",\"created\":\"2023-03-19T06:44:05.380252Z\",\"document\":277,\"user\":2},{\"id\":37,\"note\":\"1. Markdown\\n2. Is cool\\n3. But how important is it?\",\"created\":\"2023-03-19T06:48:14.739706Z\",\"document\":277,\"user\":2}]},{\"id\":268,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2019-08-04 DSA Questionnaire 5-8-19\",\"content\":\"\",\"tags\":[4,5],\"created\":\"2022-04-29T07:00:00Z\",\"created_date\":\"2022-04-29\",\"modified\":\"2022-06-21T17:22:34.753362Z\",\"added\":\"2022-04-29T04:01:09.925272Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-04-29 2019-08-04 DSA Questionnaire 5-8-19.pdf\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":261,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"2sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus \\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie \\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus \\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas. \\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex \\neget ex. Duis dignissim lacus vitae velit laoreet, vi\",\"tags\":[4,5],\"created\":\"2022-03-28T07:00:00Z\",\"created_date\":\"2022-03-28\",\"modified\":\"2022-06-23T14:42:32.862290Z\",\"added\":\"2022-03-29T06:13:00.346932Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"archived_file_name\":\"2022-03-28 2sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":3,\"note\":\"Testing a new comment\",\"created\":\"2022-09-12T15:28:39.485497Z\",\"document\":261,\"user\":2}]},{\"id\":260,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"Sonstige ScanPC2022 03-24_081058\",\"content\":\"This is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a test for the double space character issue \\n\\nThis is a \",\"tags\":[],\"created\":\"2022-03-24T15:19:32Z\",\"created_date\":\"2022-03-24\",\"modified\":\"2022-06-23T14:42:36.111030Z\",\"added\":\"2022-03-24T15:20:10.112852Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"archived_file_name\":\"2022-03-24 Sonstige ScanPC2022 03-24_081058.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":252,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"2011 BP Pie 2\",\"content\":\"Patient BP Distribution 2011\\n\\nIsolated Systolic \\nHypertension, 31, 6% \\n\\nStage 2 \\nHypertension,\\n44, 9% \\n\\nStage 1 Hypertension,\\n65, 13%\\n\\nNormal, 150, 30% \\n\\nPre-hypertension , 212, 42%\",\"tags\":[],\"created\":\"2022-03-15T07:00:00Z\",\"created_date\":\"2022-03-15\",\"modified\":\"2022-08-24T20:55:46.025466Z\",\"added\":\"2022-03-15T07:48:42.746115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"archived_file_name\":\"2022-03-15 Correspondent 2 2011 BP Pie 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":243,\"correspondent\":2,\"document_type\":1,\"storage_path\":5,\"title\":\"French Country Bread Revised.docx\",\"content\":\"French Country Bread\\n\\nFor the Leaven\\n1 heaped tablespoon mature sourdough starter (20-30 grams)\\n100 grams Water (80 degrees),\\n50 grams whole wheat bread flour\\n50 grams white bread flour\\n\\nThe night before you plan to make the dough, place 1-2 tablespoon of the matured\\nstarter in a bowl. Feed with 100 grams flour blend and the 100 grams water. Cover with\\na kitchen towel. Let rest in a cool, dark place for 10-12 hours. To test leaven's readiness,\\ndrop a spoonful into a bowl of room-temperature water. If it sinks, it is not ready and\\nneeds more time t\",\"tags\":[5],\"created\":\"2022-03-13T08:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2022-08-07T02:33:15.003110Z\",\"added\":\"2022-03-13T15:59:33.299799Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 2 French Country Bread Revised.docx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":223,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"Review-of-New-York-Federal-Petitions-article\",\"content\":\"Review of New York Federal Petitions for Confirmation\\nof Arbitral Awards Shows Swift Resolutions and\\n\\nCertainty of Awards\\n\\nBy Tim McCarthy, David Hoffman, and Ryham Ragab\\n\\nIntroduction\\nTo allay any possible concern that American liti-\\ngiousness could make New York a difficult venue for\\nexpeditious confirmation of arbitral awards,' the authors\\nundertook a review of post-award proceedings in the\\nUnited States District Court for the Southern District of\\nNew York, under the auspices of the Arbitration Commit-\\ntee of the New York City Bar Associatio\",\"tags\":[4,10,6,2,15,3,1,18,13],\"created\":\"2022-03-13T00:00:00Z\",\"created_date\":\"2022-03-13\",\"modified\":\"2023-03-04T04:44:05.347425Z\",\"added\":\"2022-03-13T15:53:15.665948Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"archived_file_name\":\"2022-03-13 Correspondent 14 Review-of-New-York-Federal-Petitions-article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":284,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_letter\",\"content\":\"Test Name \\n\\n123-456-7890 \\n\\nJanuary 2, 2022 \\nJuly 14, 1984 \\nApril 22, 2013 \\n\\nTrenz Pruca \\nCompany Name \\n4321 First Street \\nAnytown, State ZIP \\n\\nDear Trenz, \\n\\nHere9s a date: 4/22/2013 \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et \\nlabore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in \\nreprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \\nnostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure \\ndol\",\"tags\":[4],\"created\":\"2022-01-02T08:00:00Z\",\"created_date\":\"2022-01-02\",\"modified\":\"2022-08-07T14:47:05.879898Z\",\"added\":\"2022-08-07T14:47:05.640920Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-02 test_letter.pdf\",\"archived_file_name\":\"2022-01-02 test_letter.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":220,\"correspondent\":17,\"document_type\":1,\"storage_path\":5,\"title\":\"ReadMe Test\",\"content\":\"Contact Sheet Demo\\n\\nGiven a set of image files (JPEG, GIF, PNG), this script will open a new Illustrator document and create a \\ncontact sheet with the images laid out in a grid. \\n\\nTo run the script, drag a folder with images onto the script. Select the horizontal and vertical grid \\ndimensions, and the script will do the rest.\",\"tags\":[4],\"created\":\"2022-01-01T16:52:03Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-06-06T16:50:48.298610Z\",\"added\":\"2022-03-13T15:52:27.469883Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"archived_file_name\":\"2022-01-01 Correspondent 14 ReadMe Test.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":204,\"correspondent\":null,\"document_type\":null,\"storage_path\":5,\"title\":\"multi-page-mixedxx\",\"content\":\"This is a multi page document. Page 1.\\n\\nThis is a multi page document. Page 2.\\n\\nThis is a multi page document. Page 3.\\n\\nThis is a multi page document. Page 4.\\n\\nThis is a multi page document. Page 5.\\n\\nThis is a multi page document. Page 6.\",\"tags\":[4],\"created\":\"2022-01-01T08:00:00Z\",\"created_date\":\"2022-01-01\",\"modified\":\"2022-03-11T16:11:09.714031Z\",\"added\":\"2022-02-20T09:35:34.970457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"archived_file_name\":\"2022-01-01 multi-page-mixedxx.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":179,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"simple txt file\",\"content\":\"This is a test file.\",\"tags\":[4],\"created\":\"2021-03-06T22:31:53.716035Z\",\"created_date\":\"2021-03-06\",\"modified\":\"2022-02-17T22:14:18.110787Z\",\"added\":\"2021-03-06T22:31:55.141629Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-03-06 Test Correspondent 1 simple txt file.txt\",\"archived_file_name\":null,\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":175,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"file-sample_150kBs\",\"content\":\"Lorem ipsum\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing\\nelit. Nunc ac faucibus odio.\\n\\nVestibulum neque massa, scelerisque sit amet ligula eu, congue molestie mi. Praesent ut\\nvarius sem. Nullam at porttitor arcu, nec lacinia nisi. Ut ac dolor vitae odio interdum\\ncondimentum. Vivamus dapibus sodales ex, vitae malesuada ipsum cursus\\nconvallis. Maecenas sed egestas nulla, ac condimentum orci. Mauris diam felis,\\nvulputate ac suscipit et, iaculis non est. Curabitur semper arcu ac ligula semper, nec luctus\\nnisl blandit. Integer lacinia ante ac\",\"tags\":[4],\"created\":\"2021-02-15T00:00:00Z\",\"created_date\":\"2021-02-15\",\"modified\":\"2023-02-17T22:25:47.449036Z\",\"added\":\"2021-01-26T22:46:32.447764Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"archived_file_name\":\"2021-02-15 file-sample_150kBs.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":70,\"note\":\"This is a second note\",\"created\":\"2023-05-12T17:04:50.873017Z\",\"document\":175,\"user\":2},{\"id\":71,\"note\":\"And a third\",\"created\":\"2023-05-12T17:04:54.027561Z\",\"document\":175,\"user\":2},{\"id\":72,\"note\":\"One more\",\"created\":\"2023-05-12T17:04:57.581521Z\",\"document\":175,\"user\":2},{\"id\":73,\"note\":\"This is a new note\",\"created\":\"2023-05-14T06:05:17.715744Z\",\"document\":175,\"user\":2}]},{\"id\":196,\"correspondent\":4,\"document_type\":null,\"storage_path\":8,\"title\":\"f_combineds\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et \\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean \\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada \\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus. \\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer \\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non s\",\"tags\":[4,7],\"created\":\"2021-02-07T08:00:00Z\",\"created_date\":\"2021-02-07\",\"modified\":\"2022-02-18T07:49:07.123474Z\",\"added\":\"2021-03-14T15:14:11.879665Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"archived_file_name\":\"2021-02-07 Newest Correspondent f_combineds.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":177,\"correspondent\":null,\"document_type\":null,\"storage_path\":8,\"title\":\"sample-pdf-download-10-mb-longer-title\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4,5],\"created\":\"2021-01-26T22:46:26Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2022-02-18T07:18:15.696906Z\",\"added\":\"2021-01-26T22:47:02.320418Z\",\"archive_serial_number\":112412324,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb-longer-title.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":176,\"correspondent\":null,\"document_type\":2,\"storage_path\":null,\"title\":\"sample-pdf-download-10-mb copy_red\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla nunc. Phasellus et\\nnulla ipsum. Vestibulum quis ex lacus. Mauris sit amet mi a lacus interdum accumsan. Aenean\\nfermentum tempus ante sed rutrum. Aenean et magna elementum, suscipit tellus non, malesuada\\nturpis. Ut eleifend urna eget nisl fermentum, consequat ullamcorper ex rhoncus.\\n\\nIn tincidunt elit id dignissim facilisis. Nunc iaculis odio nisl, sit amet sagittis turpis aliquet eu. Integer\\nvestibulum, ipsum vel volutpat varius, augue arcu pulvinar urna, non sceler\",\"tags\":[4],\"created\":\"2021-01-26T00:00:00Z\",\"created_date\":\"2021-01-26\",\"modified\":\"2023-03-16T07:40:27.863487Z\",\"added\":\"2021-01-26T22:46:43.688020Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"archived_file_name\":\"2021-01-26 sample-pdf-download-10-mb copy_red.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":28,\"note\":\"This is one\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":176,\"user\":2}]},{\"id\":7,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-with-images\",\"content\":\"Curabitur bibendum ante urna, sed blandit libero egestas id. Pellentesque rhoncus elit in lacus\\nultrices fringilla. Nam ac metus eu turpis mattis rutrum. Mauris mattis sem ex, facilisis molestie\\nsapien luctus non. Vestibulum tincidunt urna at odio suscipit, vel congue felis cursus. Etiam tellus\\nmagna, egestas ac suscipit in, laoreet quis felis. Proin non orci id dui tincidunt egestas.\\n\\nVestibulum eleifend, ligula a scelerisque vehicula, risus justo ultricies ligula, et interdum lorem ex\\neget ex. Duis dignissim lacus vitae velit laoreet, vitae p\",\"tags\":[4,3],\"created\":\"2021-01-21T03:28:33Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-02-18T06:42:05.282698Z\",\"added\":\"2021-01-21T03:28:54.056068Z\",\"archive_serial_number\":112412322,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-with-images.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":18,\"note\":\"Here's one\",\"created\":\"2023-03-17T04:58:18.085861Z\",\"document\":7,\"user\":2},{\"id\":19,\"note\":\"Adding another\",\"created\":\"2023-03-17T04:58:52.076411Z\",\"document\":7,\"user\":2},{\"id\":26,\"note\":\"Hiya man\",\"created\":\"2023-03-17T05:27:55.315286Z\",\"document\":7,\"user\":2}]},{\"id\":5,\"correspondent\":12,\"document_type\":null,\"storage_path\":5,\"title\":\"sample-pdf-file\",\"content\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been\\nthe industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of\\ntype and scrambled it to make a type specimen book. It has survived not only five centuries, but also\\nthe leap into electronic typesetting, remaining essentially unchanged. It was popularised in the\\n1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with\\ndesktop publishing software like Aldus PageMaker including \",\"tags\":[4,3,1],\"created\":\"2021-01-21T00:00:00Z\",\"created_date\":\"2021-01-21\",\"modified\":\"2022-12-11T01:01:50.525990Z\",\"added\":\"2021-01-21T03:28:38.587225Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"archived_file_name\":\"2021-01-21 Correspondent 9 sample-pdf-file.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":181,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"asample\",\"content\":\"A Simple PDF File \\r\\n\\r\\nThis is a small demonstration .pdf file - \\r\\n\\r\\njust for use in the Virtual Mechanics tutorials. More text. And more \\r\\ntext. And more text. And more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\r\\nmore text. And more text. And more text. And more text. And more text. \\r\\nAnd more text. And more text. \\r\\n\\r\\nAnd more text. And more text. And more text. And more text. And more \\r\\ntext. And more text. And more text.\",\"tags\":[4,1],\"created\":\"2021-01-20T00:00:00Z\",\"created_date\":\"2021-01-20\",\"modified\":\"2022-12-08T10:43:22.071931Z\",\"added\":\"2021-03-14T14:50:24.567268Z\",\"archive_serial_number\":null,\"original_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"archived_file_name\":\"2021-01-20 Correspondent 2 asample.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":205,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 5 10.24.48\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[4,3],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-12T19:38:36.183758Z\",\"added\":\"2022-02-22T09:46:25.736288Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 5 10.24.48.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":206,\"correspondent\":2,\"document_type\":null,\"storage_path\":null,\"title\":\"pdf-sample 210.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,2,1],\"created\":\"2020-12-28T06:23:56Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-05-16T05:46:58.682191Z\",\"added\":\"2022-02-22T09:46:25.737479Z\",\"archive_serial_number\":112412325,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 210.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":191,\"correspondent\":2,\"document_type\":null,\"storage_path\":2,\"title\":\"pdf-sample 1 11.24.48 PM\",\"content\":\"Adobe Acrobat PDF Files\\n\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\nthe application and platform used to create it.\\n\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\nproblems commonly encountered with electronic file sharing.\\n\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\nReader. Recipients of other file formats sometimes can't open files because they\\n\",\"tags\":[4,7,2],\"created\":\"2020-12-28T00:00:00Z\",\"created_date\":\"2020-12-28\",\"modified\":\"2022-12-13T05:39:04.690271Z\",\"added\":\"2021-03-14T14:54:17.851803Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"archived_file_name\":\"2020-12-28 Correspondent 2 pdf-sample 1 11.24.48 PM.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":227,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"USC Fact sheet \",\"content\":\"Accreditation Status Change Toolkit \\n\\n\\nThis fact sheet and frequently asked questions (FAQ) are intended to help our leaders answer questions \\nthey may receive about accreditation status changes. This toolkit is being shared with KSOM chairs, \\nHealth System leadership, faculty council members, faculty and other leaders likely to get questions. \\n\\nThis toolkit is for internal use only and is not to be posted publicly. \\n\\n& What It Means \\n\\no \\n\\n\\n\\n\\n\\n\\n\\n \\n\\n The ACGME has decided to withdraw accreditation of our Cardiovascular Disease (Medicine) \\nWhat\",\"tags\":[4],\"created\":\"2020-06-30T00:00:00Z\",\"created_date\":\"2020-06-30\",\"modified\":\"2022-03-13T15:54:16.009200Z\",\"added\":\"2022-03-13T15:54:15.419431Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"archived_file_name\":\"2020-06-30 USC Fact sheet .pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":180,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"New Title Test 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,1],\"created\":\"2020-05-21T07:00:00Z\",\"created_date\":\"2020-05-21\",\"modified\":\"2022-08-13T14:11:41.449660Z\",\"added\":\"2021-03-14T14:50:18.505435Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"archived_file_name\":\"2020-05-21 Correspondent 2 New Title Test 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":3,\"correspondent\":2,\"document_type\":1,\"storage_path\":null,\"title\":\"sample 2\",\"content\":\"A Simple PDF File \\n\\nThis is a small demonstration .pdf file - \\n\\njust for use in the Virtual Mechanics tutorials. More text. And more \\ntext. And more text. And more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. Boring, zzzzz. And more text. And more text. And \\nmore text. And more text. And more text. And more text. And more text. \\nAnd more text. And more text. \\n\\nAnd more text. And more text. And more text. And more text. And more \\ntext. And more text. And more text. Even more. C\",\"tags\":[4,5],\"created\":\"2020-05-10T20:52:02.204000Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-12-14T08:27:30.532148Z\",\"added\":\"2021-01-20T23:38:34.225574Z\",\"archive_serial_number\":1123,\"original_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"archived_file_name\":\"2020-05-10 Correspondent 2 sample 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[{\"id\":29,\"note\":\"\",\"created\":\"2023-03-17T07:03:50.248390Z\",\"document\":3,\"user\":2}]},{\"id\":224,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"rotated\",\"content\":\"This is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text. This is the text that\\nappears on the first page. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text.\\nThis is the text that appears on the first page. It’s a lot of text. This is the text that appears on the first\\npage. It’s a lot of text. This is the text that appears on the first page. It’s a lot of text\",\"tags\":[],\"created\":\"2020-05-10T16:45:49Z\",\"created_date\":\"2020-05-10\",\"modified\":\"2022-05-22T15:35:49.553530Z\",\"added\":\"2022-03-13T15:53:17.058938Z\",\"archive_serial_number\":null,\"original_file_name\":\"2020-05-10 rotated.pdf\",\"archived_file_name\":\"2020-05-10 rotated.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":4,\"correspondent\":1,\"document_type\":null,\"storage_path\":null,\"title\":\"A Sample PDF 2\",\"content\":\"Lorem Ipsum \\n\\n\\\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\\\" \\n\\n\\\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\\\" \\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae erat nibh. Morbi imperdiet \\nscelerisque massa, non ornare turpis elementum consectetur. Praesent laoreet vitae libero eget \\npulvinar. Fusce malesuada massa at tincidunt tincidunt. Orci varius natoque penatibus et magnis dis \\nparturient montes, nascetur r\",\"tags\":[2],\"created\":\"2020-02-03T23:37:58Z\",\"created_date\":\"2020-02-03\",\"modified\":\"2022-06-18T04:15:43.853057Z\",\"added\":\"2021-01-20T23:38:36.441384Z\",\"archive_serial_number\":112412321,\"original_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"archived_file_name\":\"2020-02-03 Test Correspondent 1 A Sample PDF 2.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":233,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"jgme-11-01-15_1\",\"content\":\"TO THE EDITOR\\n\\n‘‘Future-Proofing’’\\nCommunication Skills\\nfor Future Physician\\nLearners\\n\\nI have often cringed at depictions of physicians in\\n\\nthe media. The classic depiction of physicians\\nhas been marked by a detached, cold disregard,\\nand truly awful communication skills. Though much\\nhas changed over the years, this caricature persists\\nwell beyond the era of cigarette-wielding physicians\\ndiagnosing ‘‘hysteria.’’ This pejorative stereotype\\nalways seemed so wrong to me, entirely at odds with\\nthe people with whom I work and know to be warm\\nand thoug\",\"tags\":[],\"created\":\"2018-07-31T07:00:00Z\",\"created_date\":\"2018-07-31\",\"modified\":\"2022-08-07T02:29:02.633532Z\",\"added\":\"2022-03-13T15:56:31.810988Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"archived_file_name\":\"2018-07-31 jgme-11-01-15_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":312,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"[paperless] Owned by Test Not Shared\",\"content\":\"Abstract ID Number: 191092\\r\\nThis Abstract is Best Characterized As: Research Abstract\\r\\nThis Abstract’s Focus is Best Characterized As: Undergraduate Medical Education (UME)\\r\\nMost Appropriate Sub Category: Ultrasound\\r\\n\\r\\nAbstract Title: Medical Students Want More Ultrasound Incorporated Into Their Education\\r\\n\\r\\nAbstract:\\r\\nBackground:\\r\\nUltrasound (US) has become increasingly important in emergency medicine (EM) training, but informal feedback from\\r\\nrotating medical students suggested that many programs have not incorporated US training into their r\",\"tags\":[4,9,2],\"created\":\"2018-07-01T00:00:00Z\",\"created_date\":\"2018-07-01\",\"modified\":\"2023-05-02T07:30:47.939341Z\",\"added\":\"2023-03-01T09:40:10.899460Z\",\"archive_serial_number\":null,\"original_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"archived_file_name\":\"2018-07-01 [paperless] Owned by Test Not Shared.pdf\",\"owner\":15,\"user_can_change\":true,\"notes\":[]},{\"id\":258,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2017.10.20-ICC-NYIAC-MoU\",\"content\":\"MEMORANDUM OF UNDERSTANDING\\nBETWEEN\\nNew York International Arbitration Center\\nAND\\nSICANA, Inc.\\nAND\\nINTERNATIONAL CHAMBER OF COMMERCE\\n\\nThis Memorandum of Understanding (“MOU”) is executed with effect from October 20, 2017,\\n\\nby and\\n\\nbetween New York International Arbitration Center (“ NYIAC “) and SICANA, Inc. (“SICANA”), a DeJaware\\n\\nnonstock corporation and International Chamber of Commerce (“ ICC ”), an association esta\\n\\nblished\\n\\nunder the French law of 1 July 1901 on contract of association, acting on behalf of its working bolly, the\\n\\nInternat\",\"tags\":[],\"created\":\"2017-10-20T00:00:00Z\",\"created_date\":\"2017-10-20\",\"modified\":\"2022-03-15T17:06:34.473466Z\",\"added\":\"2022-03-15T17:06:34.395275Z\",\"archive_serial_number\":null,\"original_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"archived_file_name\":\"2017-10-20 2017.10.20-ICC-NYIAC-MoU.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":295,\"correspondent\":12,\"document_type\":null,\"storage_path\":null,\"title\":\"sample_invoice_pdfa\",\"content\":\"InInvvoicoicee\\n\\nCustomer Name\\nStreet\\nPostcode City\\nCountry\\n\\nInvoice date:\\nInvoice number:\\nPayment due:\\n\\nYesLogic Pty. Ltd.\\n7 / 39 Bouverie St\\nCarlton VIC 3053\\nAustralia\\n\\nwww.yeslogic.com\\nABN 32 101 193 560\\n\\nNov 26, 2016\\n161126\\n30 days after invoice date\\n\\nDescription\\n\\nFrom\\n\\nUntil\\n\\nPrince Upgrades & Support\\n\\nNov 26, 2016\\n\\nNov 26, 2017\\n\\nTotal\\n\\nAmount\\n\\nUSD $950.00\\n\\nUSD $950.00\\n\\nPlease transfer amount to:\\n\\nBank account name:\\nName of Bank:\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank State Branch (BSB):\\nBank account number:\\nBank SWIFT code:\",\"tags\":[4,9],\"created\":\"2016-11-26T00:00:00Z\",\"created_date\":\"2016-11-26\",\"modified\":\"2022-12-14T07:14:09.404545Z\",\"added\":\"2022-09-12T19:09:08.194023Z\",\"archive_serial_number\":null,\"original_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"archived_file_name\":\"2016-11-26 Correspondent 9 sample_invoice_pdfa.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":236,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-7-4-549\",\"content\":\"A Systematic Review and Qualitative Analysis to\\nDetermine Quality Indicators for\\nHealth Professions Education Blogs and Podcasts\\n\\nREVIEWS\\n\\nQuinten S. Paterson\\nBrent Thoma, MD, MA\\nW. Kenneth Milne, MD\\nMichelle Lin, MD\\nTeresa M. Chan, BEd, MD, FRCPC\\n\\nABSTRACT\\n\\nBackground Historically, trainees in undergraduate and graduate health professions education have relied on secondary\\nresources, such as textbooks and lectures, for core learning activities. Recently, blogs and podcasts have entered into mainstream\\nusage, especially for residents and educat\",\"tags\":[],\"created\":\"2015-12-01T00:00:00Z\",\"created_date\":\"2015-12-01\",\"modified\":\"2022-03-13T15:58:36.295789Z\",\"added\":\"2022-03-13T15:58:36.074589Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"archived_file_name\":\"2015-12-01 i1949-8357-7-4-549.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":254,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"501 JGN book Ch4-5 2018\",\"content\":\"Chapter 4 \\nINSTRUCTIONAL STRATEGIES \\n\\nChapter Content \\nSelecting Instructional Strategies \\nTechniques Used in Classroom Settings \\nTechniques Used in Clinical Settings \\nTable Comparing Categories of Competence to Teaching Techniques \\nBibliography \\n\\nSelecting Instructional Strategies \\n\\n\\nInstructional methods or strategies are the tools used to direct the learners' activities toward \\nachieving desired goals and objectives. The success of an instructor in using each tool \\ndepends on how appropriate the tool is for the intended audience and intended\",\"tags\":[8],\"created\":\"2015-10-02T00:00:00Z\",\"created_date\":\"2015-10-02\",\"modified\":\"2022-03-15T07:48:57.018035Z\",\"added\":\"2022-03-15T07:48:55.295562Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"archived_file_name\":\"2015-10-02 501 JGN book Ch4-5 2018.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":242,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Hearing-Checklist-1\",\"content\":\"International Arbitration Pre-Hearing Checklist \\nAníbal Sabater, Chaffetz Lindsey LLP1 \\nJuly 2015 \\n\\n\\n\\n\\nHearing Dates & Location \\n\\n1. On what day is the hearing scheduled to start? \\n\\n2. On what day is the hearing expected to end? \\n\\n3. Are there going to be days “off” between hearing start and end? \\n\\n4. At what time will sessions start and end every day? \\n\\n5. When and for how long are breaks expected to take place during the hearing? \\n\\n6. Are hearing facilities booked with an appropriately sized hearing room? Does this include set-up \\n\\nand break-\",\"tags\":[],\"created\":\"2015-07-01T00:00:00Z\",\"created_date\":\"2015-07-01\",\"modified\":\"2022-03-13T15:59:35.931186Z\",\"added\":\"2022-03-13T15:59:32.142898Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"archived_file_name\":\"2015-07-01 Hearing-Checklist-1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":278,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2015-05-31 i1949-8357-8-2-219\",\"content\":\"EDUCATIONAL INNOVATION\\n\\nApproved Instructional Resources Series: A\\nNational Initiative to Identify Quality Emergency\\nMedicine Blog and Podcast Content for Resident\\nEducation\\n\\nMichelle Lin, MD\\nNikita Joshi, MD\\nAndrew Grock, MD\\nAnand Swaminathan, MD, MPH\\nEric J. Morley, MD, MS\\n\\nABSTRACT\\n\\nJeremy Branzetti, MD\\nTaku Taira, MD\\nFelix Ankel, MD\\nLalena M. Yarris, MD, MCR\\n\\nBackground Emergency medicine (EM) residency programs can provide up to 20% of their planned didactic experiences\\nasynchronously through the Individualized Interactive Instruction (III\",\"tags\":[],\"created\":\"2015-06-01T00:00:00Z\",\"created_date\":\"2015-06-01\",\"modified\":\"2023-05-08T08:35:51.463491Z\",\"added\":\"2022-08-07T04:07:34.590976Z\",\"archive_serial_number\":null,\"original_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"archived_file_name\":\"2015-06-01 2015-05-31 i1949-8357-8-2-219.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":246,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"DRS14program\",\"content\":\"N E W Y O R K S T A T E B A R A S S O C I A T I O N\\n\\nDispute Resolution Section\\nAnnual Meeting\\nThursday, January 30, 2014\\nNew York Hilton Midtown\\n1335 Avenue of the Americas, New York City\\n\\nDRS Executive Committee Meeting\\n8:00 a.m. - 9:00 a.m.\\nMadison, 2nd Floor\\n\\nMCLE Morning Program\\n9:15 a.m. - 12:00 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nMCLE Afternoon Program\\n1:30 p.m. - 4:50 p.m.\\nRendezvous Trianon, 3rd Floor\\n\\nNetworking Luncheon\\n12:00 p.m.\\nDorsey & Whitney LLP, \\n51 West 52nd Street\\n\\nCocktail Reception\\n5:00 p.m. - 7:00 p.m. \\n\\n\\n\\nPaul, Weiss, Ri\",\"tags\":[],\"created\":\"2014-01-30T00:00:00Z\",\"created_date\":\"2014-01-30\",\"modified\":\"2022-03-13T16:00:41.258206Z\",\"added\":\"2022-03-13T16:00:41.171480Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-30 DRS14program.pdf\",\"archived_file_name\":\"2014-01-30 DRS14program.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":255,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"2014 - Hamstra - Acad Med - Reconsidering fide\",\"content\":\"Reconsidering Fidelity in Simulation-Based \\nTraining\\nStanley J. Hamstra, PhD, Ryan Brydges, PhD, Rose Hatala, MD, MSc, \\nBenjamin Zendejas, MD, MSc, and David A. Cook, MD, MHPE\\n\\nPerspective\\n\\nAbstract\\n\\nIn simulation-based health professions \\neducation, the concept of simulator \\nfidelity is usually understood as the \\ndegree to which a simulator looks, \\nfeels, and acts like a human patient. \\nAlthough this can be a useful guide \\nin designing simulators, this definition \\nemphasizes technological advances and \\nphysical resemblance over principles \\nof \",\"tags\":[8],\"created\":\"2014-01-20T00:00:00Z\",\"created_date\":\"2014-01-20\",\"modified\":\"2022-03-15T07:49:19.543577Z\",\"added\":\"2022-03-15T07:49:14.513866Z\",\"archive_serial_number\":null,\"original_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"archived_file_name\":\"2014-01-20 2014 - Hamstra - Acad Med - Reconsidering fide.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":232,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"Litigation-Journal-Article\",\"content\":\"New York\\nA New Home of\\n\\nInternational Arbitration?\\n\\nBRIAN FARKAS AND MARIE CASSARD\\n\\n\\n\\n\\n\\nBrian Farkas is with Goetz Fitzpatrick LLP, and Marie Cassard is an LLM candidate\\n\\nin dispute resolution at Cardozo School of Law. Both are in New York City.\\n\\nParis and London—traditionally the global centers of interna-\\ntional arbitration—should begin to worry. Over the past few\\nyears, New York has undertaken a thoughtful, multifaceted ef-\\nfort to attract more international arbitrations. Collaborative\\nand coincidental initiatives from the private sector, mu\",\"tags\":[],\"created\":\"2013-06-01T00:00:00Z\",\"created_date\":\"2013-06-01\",\"modified\":\"2022-03-13T15:56:14.286468Z\",\"added\":\"2022-03-13T15:56:12.956349Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"archived_file_name\":\"2013-06-01 Litigation-Journal-Article.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":234,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"January-30-press-release\",\"content\":\"FOR IMMEDIATE RELEASE \\n\\n\\n\\n\\n\\nNew York Plans Opening of International Arbitration Center \\nCenter Will Strengthen New York's Role as Premier International Arbitration Site \\n\\n\\nNEW YORK, NY – January 30, 2013 – The New York International Arbitration Center (\\\"NYIAC\\\"), \\nfounded with the support of 33 leading law firms to promote and strengthen the conduct of international \\narbitration in New York, has announced at its launch celebration last week that it will officially open its \\ndoors in late Spring 2013. The Center will enable New York City to enhan\",\"tags\":[],\"created\":\"2013-01-30T00:00:00Z\",\"created_date\":\"2013-01-30\",\"modified\":\"2022-03-13T15:58:07.064428Z\",\"added\":\"2022-03-13T15:58:06.974115Z\",\"archive_serial_number\":null,\"original_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"archived_file_name\":\"2013-01-30 January-30-press-release.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":219,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"test_new_1\",\"content\":\"Adobe Acrobat PDF Files\\r\\n\\r\\nAdobe® Portable Document Format (PDF) is a universal file format that preserves all\\r\\nof the fonts, formatting, colours and graphics of any source document, regardless of\\r\\nthe application and platform used to create it.\\r\\n\\r\\nAdobe PDF is an ideal format for electronic document distribution as it overcomes the\\r\\nproblems commonly encountered with electronic file sharing.\\r\\n\\r\\n• Anyone, anywhere can open a PDF file. All you need is the free Adobe Acrobat\\r\\nReader. Recipients of other file formats sometimes can't open files bec\",\"tags\":[],\"created\":\"2012-11-21T08:00:00Z\",\"created_date\":\"2012-11-21\",\"modified\":\"2022-05-18T10:27:32.623122Z\",\"added\":\"2022-03-11T22:17:10.722995Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-11-21 test_new_1.pdf\",\"archived_file_name\":\"2012-11-21 test_new_1.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":250,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"394_2012_Article_380\",\"content\":\"Eur J Nutr (2012) 51:637–663\\nDOI 10.1007/s00394-012-0380-y\\n\\nR E V I E W\\n\\nCritical review: vegetables and fruit in the prevention of chronic\\ndiseases\\n\\nHeiner Boeing • Angela Bechthold • Achim Bub • Sabine Ellinger •\\nDirk Haller • Anja Kroke • Eva Leschik-Bonnet • Manfred J. Mu¨ ller •\\nHelmut Oberritter • Matthias Schulze • Peter Stehle • Bernhard Watzl\\n\\nReceived: 13 February 2012 / Accepted: 9 May 2012 / Published online: 9 June 2012\\n(cid:2) The Author(s) 2012. This article is published with open access at Springerlink.com\\n\\nAbstract\\nBackground V\",\"tags\":[],\"created\":\"2012-02-13T00:00:00Z\",\"created_date\":\"2012-02-13\",\"modified\":\"2022-03-15T07:47:17.517316Z\",\"added\":\"2022-03-15T07:47:16.764975Z\",\"archive_serial_number\":null,\"original_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"archived_file_name\":\"2012-02-13 394_2012_Article_380.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":248,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"11 Castiglioni fac sucess 2013\",\"content\":\"JGIM\\n\\nPERSPECTIVES\\n\\nSucceeding as a Clinician Educator: Useful Tips\\nand Resources\\n\\nAnalia Castiglioni, MD1, Eva Aagaard, MD2, Abby Spencer, MD, MS3,\\nLaura Nicholson, MD, PhD4,5, Reena Karani, MD6, Carol K. Bates, MD7, Lisa L. Willett, MD8, and\\nShobhina G. Chheda, MD, MPH9\\n1Division of General Internal Medicine( University of Alabama at Birmingham, Birmingham VA Medical Center, Birmingham, AL, USA; 2Division\\nof General Internal Medicine University of Colorado School of Medicine, Aurora, CO, USA; 3Division of General Internal Medicine Temple\\nUniv\",\"tags\":[],\"created\":\"2011-11-26T00:00:00Z\",\"created_date\":\"2011-11-26\",\"modified\":\"2022-03-15T07:44:44.250464Z\",\"added\":\"2022-03-15T07:44:44.042390Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"archived_file_name\":\"2011-11-26 11 Castiglioni fac sucess 2013.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":249,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"38.full\",\"content\":\"Nutrition FYI\\n\\nPreparing to Prescribe Plant-Based Diets for Diabetes \\nPrevention and Treatment\\n\\nCaroline Trapp, MSN, APRN, BC-ADM, CDE, and Susan Levin, MS, RD\\n\\nThe number of people worldwide \\nwith type 2 diabetes is expected \\nto double by 2030.1 In the United \\nStates, diabetes affects ~ 26 \\nmillion people of all ages, about \\none-fourth of whom are not yet \\ndiagnosed.2 Despite the availability \\nof a wide range of pharmacological \\ntreatments and the best efforts of \\ndiabetes educators and other health \\ncare professionals, good control \\nof diabet\",\"tags\":[4],\"created\":\"2011-09-27T00:00:00Z\",\"created_date\":\"2011-09-27\",\"modified\":\"2022-03-15T07:44:56.566398Z\",\"added\":\"2022-03-15T07:44:56.344535Z\",\"archive_serial_number\":null,\"original_file_name\":\"2011-09-27 38.full.pdf\",\"archived_file_name\":\"2011-09-27 38.full.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":247,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"'15 EM Clinics- Crashing PHTN copy\",\"content\":\"M a n a g e m e n t o f C r a s h i n g\\nP a t i e n t s wi t h Pu l m o n a r y\\nH y p e r t e n s i o n\\n\\nJohn C. Greenwood, MD\\n\\na,*, Ryan M. Spangler, MD\\n\\nb\\n\\nKEYWORDS\\n(cid:1) Pulmonary hypertension (cid:1) Right ventricular failure (cid:1) Cardiogenic shock\\n\\nKEY POINTS\\n\\n(cid:1) Management goals for patients with pulmonary hypertension (PH) are to optimize preload\\nand volume status, maintain right ventricular function, prevent right coronary artery mal-\\nperfusion, reduce right ventricular afterload, and reverse the underlying cause whenever\\nposs\",\"tags\":[4],\"created\":\"2010-12-01T00:00:00Z\",\"created_date\":\"2010-12-01\",\"modified\":\"2022-03-15T07:44:35.526159Z\",\"added\":\"2022-03-15T07:44:31.004457Z\",\"archive_serial_number\":null,\"original_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"archived_file_name\":\"2010-12-01 '15 EM Clinics- Crashing PHTN copy.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]},{\"id\":237,\"correspondent\":null,\"document_type\":null,\"storage_path\":null,\"title\":\"i1949-8357-2-2-147\",\"content\":\"E D I T O R I A L\\n\\nBeyond Must: Supporting the Evolving\\nRole of the Designated Institutional Official\\n\\nLisa Bellini, MD\\n\\nDiane Hartmann, MD\\n\\nLawrence Opas, MD\\n\\nWhat Must I Do Today?\\n\\nOur daily schedules often require that we balance our\\nprofessional and personal obligations. Accomplishing the\\ntasks of the day must be done with particular efficiency to\\nensure timely arrival at evening events such as the family meal\\nor an open house at school for one of our children. Barring an\\nunpredictable graduate medical education (GME) crisis (the\\nfrequency \",\"tags\":[4],\"created\":\"2009-09-01T00:00:00Z\",\"created_date\":\"2009-09-01\",\"modified\":\"2022-03-13T15:58:53.272297Z\",\"added\":\"2022-03-13T15:58:51.568000Z\",\"archive_serial_number\":null,\"original_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"archived_file_name\":\"2009-09-01 i1949-8357-2-2-147.pdf\",\"owner\":null,\"user_can_change\":true,\"notes\":[]}]}"
},
"headersSize": -1,
"bodySize": -1,
diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index e7088e90d..f30605a4e 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -5,14 +5,14 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/alert/alert.ts50 Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/carousel/carousel.ts131,135Currently selected slide number read by screen reader
@@ -20,114 +20,114 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/carousel/carousel.ts159,162Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/carousel/carousel.ts202,203Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation-select.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation-select.ts91
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation-select.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation-select.ts91Select year
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation-select.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation-select.ts91
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation-select.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation-select.ts91Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation.ts83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation.ts112Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation.ts112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/datepicker/datepicker-navigation.ts112««
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20«
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20»
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20»»
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20First
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20Last
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/pagination/pagination-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/pagination/pagination-config.ts20
@@ -135,105 +135,105 @@
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/progressbar/progressbar.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/progressbar/progressbar.ts41,42HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Hours
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21MM
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Minutes
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Increment hours
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Decrement hours
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Increment minutes
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Decrement minutes
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21SS
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Seconds
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Increment seconds
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Decrement seconds
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/timepicker/timepicker-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/timepicker/timepicker-config.ts21Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.0_@angular+core@21.2.0_@angular+_fdecb2f5429dfeda6301fd300107de5b/node_modules/src/toast/toast-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@20.0.0_@angular+common@21.2.6_@angular+core@21.2.6_@angular+_0766f480734948ad660a180d719522cc/node_modules/src/toast/toast-config.ts54
@@ -297,11 +297,11 @@
src/app/components/app-frame/app-frame.component.html
- 87
+ 88src/app/components/app-frame/app-frame.component.html
- 89
+ 90src/app/components/dashboard/dashboard.component.html
@@ -324,11 +324,11 @@
src/app/components/app-frame/app-frame.component.html
- 94
+ 95src/app/components/app-frame/app-frame.component.html
- 96
+ 97src/app/components/common/share-link-bundle-dialog/share-link-bundle-dialog.component.html
@@ -375,15 +375,15 @@
src/app/components/app-frame/app-frame.component.html
- 54
+ 55src/app/components/app-frame/app-frame.component.html
- 273
+ 274src/app/components/app-frame/app-frame.component.html
- 275
+ 276
@@ -532,15 +532,79 @@
125
-
- Discard
+
+ Cancelsrc/app/components/admin/config/config.component.html62
- src/app/components/document-detail/document-detail.component.html
- 452
+ src/app/components/admin/settings/settings.component.html
+ 399
+
+
+ src/app/components/common/confirm-dialog/confirm-dialog.component.ts
+ 47
+
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+ 25
+
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 51
+
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
+ 27
+
+
+ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
+ 19
+
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 39
+
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 80
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 76
+
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 30
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 56
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 115
+
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.html
+ 31
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 182
+
+
+ src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
+ 81
+
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 21
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 82
@@ -664,11 +728,11 @@
src/app/components/app-frame/app-frame.component.html
- 308
+ 309src/app/components/app-frame/app-frame.component.html
- 311
+ 312
@@ -1017,7 +1081,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 203
@@ -1075,11 +1139,11 @@
src/app/components/app-frame/app-frame.component.html
- 233
+ 234src/app/components/app-frame/app-frame.component.html
- 235
+ 236src/app/components/manage/saved-views/saved-views.component.html
@@ -1217,7 +1281,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1758
+ 1760
@@ -1514,77 +1578,6 @@
389
-
- Cancel
-
- src/app/components/admin/settings/settings.component.html
- 399
-
-
- src/app/components/common/confirm-dialog/confirm-dialog.component.ts
- 47
-
-
- src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
- 25
-
-
- src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
- 51
-
-
- src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
- 27
-
-
- src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
- 19
-
-
- src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
- 39
-
-
- src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
- 80
-
-
- src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
- 76
-
-
- src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
- 30
-
-
- src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
- 56
-
-
- src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 115
-
-
- src/app/components/common/permissions-dialog/permissions-dialog.component.html
- 31
-
-
- src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
- 182
-
-
- src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
- 81
-
-
- src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
- 21
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 82
-
- Use system language
@@ -1707,7 +1700,7 @@
src/app/components/app-frame/app-frame.component.html
- 204
+ 205src/app/components/common/input/tags/tags.component.ts
@@ -1789,15 +1782,15 @@
src/app/components/app-frame/app-frame.component.ts
- 156
+ 164src/app/components/app-frame/app-frame.component.ts
- 230
+ 238src/app/components/app-frame/app-frame.component.ts
- 255
+ 263
@@ -1808,11 +1801,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297src/app/components/app-frame/app-frame.component.html
- 298
+ 299
@@ -2231,11 +2224,11 @@
src/app/components/app-frame/app-frame.component.html
- 256
+ 257src/app/components/app-frame/app-frame.component.html
- 259
+ 260
@@ -2407,7 +2400,7 @@
src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 265
+ 276src/app/components/manage/mail/mail.component.html
@@ -2457,11 +2450,11 @@
src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 261
+ 272src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 422
+ 453
@@ -2495,7 +2488,7 @@
src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 424
+ 455src/app/components/manage/mail/mail.component.ts
@@ -2588,11 +2581,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288src/app/components/app-frame/app-frame.component.html
- 289
+ 290
@@ -2802,19 +2795,19 @@
src/app/components/document-detail/document-detail.component.ts
- 1759
+ 1761src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 833
+ 899src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 871
+ 935src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 894
+ 958src/app/components/manage/document-attributes/custom-fields/custom-fields.component.ts
@@ -2822,7 +2815,7 @@
src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 426
+ 457src/app/components/manage/mail/mail.component.ts
@@ -2904,90 +2897,90 @@
Logged in as src/app/components/app-frame/app-frame.component.html
- 46
+ 47My Profilesrc/app/components/app-frame/app-frame.component.html
- 50
+ 51Logoutsrc/app/components/app-frame/app-frame.component.html
- 57
+ 58Documentationsrc/app/components/app-frame/app-frame.component.html
- 62
+ 63src/app/components/app-frame/app-frame.component.html
- 317
+ 318src/app/components/app-frame/app-frame.component.html
- 320
+ 321Saved viewssrc/app/components/app-frame/app-frame.component.html
- 104
+ 105src/app/components/app-frame/app-frame.component.html
- 134
+ 135Open documentssrc/app/components/app-frame/app-frame.component.html
- 143
+ 144Close allsrc/app/components/app-frame/app-frame.component.html
- 163
+ 164src/app/components/app-frame/app-frame.component.html
- 165
+ 166Managesrc/app/components/app-frame/app-frame.component.html
- 174
+ 175Attributessrc/app/components/app-frame/app-frame.component.html
- 181
+ 182src/app/components/app-frame/app-frame.component.html
- 183
+ 184Correspondentssrc/app/components/app-frame/app-frame.component.html
- 209
+ 210src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3002,7 +2995,7 @@
Document typessrc/app/components/app-frame/app-frame.component.html
- 214
+ 215src/app/components/manage/document-attributes/document-attributes.component.ts
@@ -3013,7 +3006,7 @@
Storage pathssrc/app/components/app-frame/app-frame.component.html
- 219
+ 220src/app/components/manage/document-attributes/document-attributes.component.ts
@@ -3024,7 +3017,7 @@
Custom fieldssrc/app/components/app-frame/app-frame.component.html
- 224
+ 225src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -3034,10 +3027,6 @@
src/app/components/document-list/filter-editor/filter-editor.component.html84
-
- src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
- src/app/components/manage/document-attributes/document-attributes.component.ts129
@@ -3047,11 +3036,11 @@
Workflowssrc/app/components/app-frame/app-frame.component.html
- 242
+ 243src/app/components/app-frame/app-frame.component.html
- 244
+ 245src/app/components/manage/workflows/workflows.component.html
@@ -3062,92 +3051,92 @@
Mailsrc/app/components/app-frame/app-frame.component.html
- 249
+ 250src/app/components/app-frame/app-frame.component.html
- 252
+ 253Administrationsrc/app/components/app-frame/app-frame.component.html
- 267
+ 268Configurationsrc/app/components/app-frame/app-frame.component.html
- 280
+ 281src/app/components/app-frame/app-frame.component.html
- 282
+ 283GitHubsrc/app/components/app-frame/app-frame.component.html
- 327
+ 328is available.src/app/components/app-frame/app-frame.component.html
- 336,337
+ 337,338Click to view.src/app/components/app-frame/app-frame.component.html
- 337
+ 338Paperless-ngx can automatically check for updatessrc/app/components/app-frame/app-frame.component.html
- 341
+ 342 How does this work? src/app/components/app-frame/app-frame.component.html
- 348,350
+ 349,351Update availablesrc/app/components/app-frame/app-frame.component.html
- 361
+ 362Sidebar views updatedsrc/app/components/app-frame/app-frame.component.ts
- 343
+ 383Error updating sidebar viewssrc/app/components/app-frame/app-frame.component.ts
- 346
+ 386An error occurred while saving update checking settings.src/app/components/app-frame/app-frame.component.ts
- 367
+ 407
@@ -3404,27 +3393,27 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 470
+ 536src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 510
+ 576src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 548
+ 614src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 586
+ 652src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 648
+ 714src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 781
+ 847
@@ -3512,7 +3501,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1812
+ 1814
@@ -3523,7 +3512,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1813
+ 1815
@@ -3534,7 +3523,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1814
+ 1816
@@ -4714,7 +4703,7 @@
src/app/components/manage/document-attributes/management-list/tag-list/tag-list.component.ts
- 49
+ 48
@@ -5499,7 +5488,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 785
+ 851
@@ -5736,7 +5725,7 @@
Open filtersrc/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 788
+ 823
@@ -7327,7 +7316,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 415
+ 481this string is used to separate processing, failed and added on the file upload widget
@@ -7489,7 +7478,7 @@
src/main.ts
- 411
+ 416
@@ -7511,7 +7500,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 194src/app/data/document.ts
@@ -7684,6 +7673,13 @@
450
+
+ Discard
+
+ src/app/components/document-detail/document-detail.component.html
+ 452
+
+ Document loading...
@@ -7851,7 +7847,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 783
+ 849
@@ -7869,7 +7865,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 829
+ 895
@@ -7890,88 +7886,88 @@
Reprocess operation for "" will begin in the background.src/app/components/document-detail/document-detail.component.ts
- 1385
+ 1387Error executing operationsrc/app/components/document-detail/document-detail.component.ts
- 1396
+ 1398Error downloading documentsrc/app/components/document-detail/document-detail.component.ts
- 1459
+ 1461Page Fitsrc/app/components/document-detail/document-detail.component.ts
- 1539
+ 1541PDF edit operation for "" will begin in the background.src/app/components/document-detail/document-detail.component.ts
- 1779
+ 1781Error executing PDF edit operationsrc/app/components/document-detail/document-detail.component.ts
- 1791
+ 1793Please enter the current password before attempting to remove it.src/app/components/document-detail/document-detail.component.ts
- 1802
+ 1804Password removal operation for "" will begin in the background.src/app/components/document-detail/document-detail.component.ts
- 1836
+ 1838Error executing password removal operationsrc/app/components/document-detail/document-detail.component.ts
- 1850
+ 1852Print failed.src/app/components/document-detail/document-detail.component.ts
- 1889
+ 1891Error loading document for printing.src/app/components/document-detail/document-detail.component.ts
- 1901
+ 1903An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts
- 1966
+ 1968src/app/components/document-detail/document-detail.component.ts
- 1970
+ 1972
@@ -8215,25 +8211,25 @@
Error executing bulk operationsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 321
+ 319""src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 407
+ 473src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 413
+ 479"" and ""src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 409
+ 475This is for messages like 'modify "tag1" and "tag2"'
@@ -8241,7 +8237,7 @@
and ""src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 417,419
+ 483,485this is for messages like 'modify "tag1", "tag2" and "tag3"'
@@ -8249,39 +8245,39 @@
Confirm tags assignmentsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 434
+ 500
- This operation will add the tag "" to selected document(s).
+ This operation will add the tag "" to selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 440
+ 506This operation will add the tags to selected document(s).
+ )"/> to selected document(s).
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 445,447
+ 511,513
- This operation will remove the tag "" from selected document(s).
+ This operation will remove the tag "" from selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 453
+ 519This operation will remove the tags from selected document(s).
+ )"/> from selected document(s).
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 458,460
+ 524,526
@@ -8289,112 +8285,112 @@
changedTags.itemsToAdd
)"/> and remove the tags on selected document(s).
+ )"/> on selected document(s).
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 462,466
+ 528,532Confirm correspondent assignmentsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 503
+ 569
- This operation will assign the correspondent "" to selected document(s).
+ This operation will assign the correspondent "" to selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 505
+ 571
- This operation will remove the correspondent from selected document(s).
+ This operation will remove the correspondent from selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 507
+ 573Confirm document type assignmentsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 541
+ 607
- This operation will assign the document type "" to selected document(s).
+ This operation will assign the document type "" to selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 543
+ 609
- This operation will remove the document type from selected document(s).
+ This operation will remove the document type from selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 545
+ 611Confirm storage path assignmentsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 579
+ 645
- This operation will assign the storage path "" to selected document(s).
+ This operation will assign the storage path "" to selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 581
+ 647
- This operation will remove the storage path from selected document(s).
+ This operation will remove the storage path from selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 583
+ 649Confirm custom field assignmentsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 612
+ 678
- This operation will assign the custom field "" to selected document(s).
+ This operation will assign the custom field "" to selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 618
+ 684This operation will assign the custom fields to selected document(s).
+ )"/> to selected document(s).
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 623,625
+ 689,691
- This operation will remove the custom field "" from selected document(s).
+ This operation will remove the custom field "" from selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 631
+ 697This operation will remove the custom fields from selected document(s).
+ )"/> from selected document(s).
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 636,638
+ 702,704
@@ -8402,94 +8398,94 @@
changedCustomFields.itemsToAdd
)"/> and remove the custom fields on selected document(s).
+ )"/> on selected document(s).
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 640,644
+ 706,710
- Move selected document(s) to the trash?
+ Move selected document(s) to the trash?src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 782
+ 848
- This operation will permanently recreate the archive files for selected document(s).
+ This operation will permanently recreate the archive files for selected document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 830
+ 896The archive files will be re-generated with the current settings.src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 831
+ 897Rotate confirmsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 868
+ 932
- This operation will add rotated versions of the document(s).
+ This operation will add rotated versions of the document(s).src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 869
+ 933Merge confirmsrc/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 892
+ 956
- This operation will merge selected documents into a new document.
+ This operation will merge selected documents into a new document.src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 893
+ 957Merged document will be queued for consumption.src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 916
+ 980Custom fields updated.src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 940
+ 1004Error updating custom fields.src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 949
+ 1013Share link bundle creation requested.src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 989
+ 1053Share link bundle creation is not available yet.src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 996
+ 1060
@@ -8721,7 +8717,7 @@
src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 132
+ 143src/app/data/matching-model.ts
@@ -8817,7 +8813,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 199src/app/data/document.ts
@@ -9020,56 +9016,63 @@
Title & contentsrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 197File typesrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 200
+
+
+
+ Custom fields (Deprecated)
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 210More likesrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 215equalssrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 221is emptysrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 225is not emptysrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 229greater thansrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 233less thansrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 237
@@ -9078,14 +9081,14 @@
)?.name"/>
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 278,282Without correspondentsrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 284
@@ -9094,14 +9097,14 @@
)?.name"/>
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 290,294Without document typesrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 296
@@ -9110,70 +9113,77 @@
)?.name"/>
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 302,306Without storage pathsrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 308Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 312,314Without any tagsrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 318Custom fields querysrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 322Title: src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 326
+
+
+
+ Title & content:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 330ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 333Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 336Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 339Without an ownersrc/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 342
@@ -9536,7 +9546,7 @@
Automaticsrc/app/components/manage/document-attributes/management-list/management-list.component.ts
- 130
+ 141src/app/data/matching-model.ts
@@ -9547,63 +9557,63 @@
Successfully created .src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 218
+ 229Error occurred while creating .src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 223
+ 234Successfully updated "".src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 238
+ 249Error occurred while saving .src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 243
+ 254Associated documents will not be deleted.src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 263
+ 274Error while deleting elementsrc/app/components/manage/document-attributes/management-list/management-list.component.ts
- 279
+ 290Error saving settingssrc/app/components/manage/document-attributes/management-list/management-list.component.ts
- 318
+ 329Permissions updated successfullysrc/app/components/manage/document-attributes/management-list/management-list.component.ts
- 402
+ 433Error updating permissionssrc/app/components/manage/document-attributes/management-list/management-list.component.ts
- 409
+ 440src/app/components/manage/mail/mail.component.ts
@@ -9618,21 +9628,21 @@
This operation will permanently delete the selected .src/app/components/manage/document-attributes/management-list/management-list.component.ts
- 423
+ 454Objects deleted successfullysrc/app/components/manage/document-attributes/management-list/management-list.component.ts
- 437
+ 472Error deleting objectssrc/app/components/manage/document-attributes/management-list/management-list.component.ts
- 443
+ 478
@@ -9660,21 +9670,21 @@
tagsrc/app/components/manage/document-attributes/management-list/tag-list/tag-list.component.ts
- 43
+ 42tagssrc/app/components/manage/document-attributes/management-list/tag-list/tag-list.component.ts
- 44
+ 43Do you really want to delete the tag ""?src/app/components/manage/document-attributes/management-list/tag-list/tag-list.component.ts
- 60
+ 59
@@ -11187,21 +11197,21 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 609
+ 635Unable to migrate settings to the database, please try saving manually.src/app/services/settings.service.ts
- 610
+ 636You can restart the tour from the settings page.src/app/services/settings.service.ts
- 683
+ 708
@@ -11352,14 +11362,14 @@
Prevsrc/main.ts
- 410
+ 415Endsrc/main.ts
- 412
+ 417