fix: appendix numbering cross-cutting bugs (TABLE regex, int block_id, table alpha prefix, weak-caption tie-break)

3 distinct bugs found and fixed:

1. TABLE in figure regex (_FIGURE_NUMBER_PATTERN)
   Removed TABLE/Table from figure regex — caused table captions to be
   extracted as figure numbers and roadmapped into figure inventory.
   Added unit tests (table_numeric_caption_is_not_a_figure_number,
   table_appendix_caption_marker_has_no_figure_number).

2. int block_id type mismatch in cross-page lookup
   CrossPageSettlementPass and PrimarySamePagePass compared block_id
   with === but deduped_legends use int keys while ResourceRef stores
   str.  Fixed by casting both to str.  Table continuation lookup
   missed page filter, picking wrong page's same block_id.  Added
   page filter + int_block_id tests.

3. Table appendix support gaps
   - Table prefix regex only accepted digits/roman, not 'TABLE A1'.
     Added [A-Z]\d+ token and strip-leading-alpha in parse.
   - _is_validation_first_table_candidate didn't cover figure_title
     raw_label blocks with table_caption_like style.  Added second
     gate.
   - _is_weak_explicit_table_caption only checked table_caption roles.
     Extended to include validation-first candidates.
   - Same-page tie-break didn't apply for weak-explicit captions.
     Ported _bare_table_tie_break into vnext pass.
   - figure_caption_candidate not excluded from note attachment.
   - Continuation merge stripped leading duplicate table marker.

M84CTEM9 vault verification: 6/6 figures matched (3 main + 3
appendix + assets), 4/4 tables (Table 1,2 + Table A1,A2 + assets),
0 false positives, 0 figure asset leakage.
This commit is contained in:
LLLin000 2026-07-04 01:29:06 +08:00
parent fa734f6fea
commit 3cda942f96
41 changed files with 30834 additions and 236 deletions

View file

@ -0,0 +1,319 @@
# Figure Appendix Numbering — Execution Plan
## Strategy
Single PR. Small continuous patch, not parallel agents:
```
regex/marker/namespace → ID/callsites → tests → vault spot-check
```
## Tasks (not parallel — sequential)
### Step 1 — Regex + `_extract_figure_number` + `_extract_figure_marker` + `_extract_figure_namespace`
**File:** `paperforge/worker/ocr_figures.py`
This is one atomic change. Cannot split because:
- `_extract_figure_marker` reads the regex — if regex changes to named groups but marker still reads `group(1)`, it breaks
- `_extract_figure_marker` calls `_extract_figure_namespace(text, prefix)` — requires the new signature
**Changes:**
1. **`_FIGURE_NUMBER_PATTERN`** (line ~14): Replace with named-group regex:
```python
_FIGURE_NUMBER_PATTERN = re.compile(
r"(?:Figure|Fig\\.?|Supplementary\\s+Figure|Supplementary\\s+Fig\\.?|"
r"Extended\\s+Data\\s+Figure|Extended\\s+Data\\s+Fig\\.?|"
r"TABLE|Table|图|圖|ͼ)"
r"\\s*(?:(?P<prefix>[A-Z])\\.?\\s*)?(?P<number>\\d+(?:\\.\\d+)?)",
re.IGNORECASE,
)
```
2. **`_extract_figure_number`** (line ~109): Read `m.group("number")` instead of `m.group(1)`:
```python
def _extract_figure_number(text: str) -> int | None:
m = _FIGURE_NUMBER_PATTERN.search(text)
if m:
try:
num_str = m.group("number")
if num_str is not None:
return int(float(num_str))
except (ValueError, TypeError):
pass
return None
```
3. **`_extract_figure_marker`** (line ~128): Add prefix fields. **Normalize prefix to uppercase:**
```python
prefix_raw = m.group("prefix") # may be None or lowercase due to IGNORECASE
prefix = (prefix_raw or "").upper() or None
```
Return dict:
```python
{
"number": int(float(m.group("number"))),
"number_text": m.group("number"),
"prefix": prefix,
"alpha_prefix": prefix if prefix and prefix != "S" else None,
"has_s": prefix == "S",
"has_alpha_prefix": prefix is not None and prefix != "S",
"namespace": _extract_figure_namespace(text, prefix),
}
```
4. **`_extract_figure_namespace`** (line ~119): Add `prefix` param. Keyword-first priority:
```python
def _extract_figure_namespace(text: str, prefix: str | None = None) -> str:
lower = text.lower()
if "extended data" in lower or "extended figure" in lower:
return "extended_data"
if prefix == "S":
return "supplementary"
if "supplementary" in lower or "supporting" in lower or "additional file" in lower:
return "supplementary"
if prefix and prefix != "S":
return "appendix"
return "main"
```
**Test (before commit):** `pytest tests/test_ocr_figures.py` passes.
---
### Step 2 — `_format_figure_id` + writeback to all callsites
**File:** `paperforge/worker/ocr_figures.py`
1. **`_format_figure_id`** (line ~240): Add `alpha_prefix` param:
```python
def _format_figure_id(namespace: str, number: int, alpha_prefix: str | None = None) -> str:
if namespace == "supplementary":
return f"figure_s{number:03d}"
if namespace == "extended_data":
return f"figure_ed{number:03d}"
if namespace == "appendix":
letter = (alpha_prefix or "x").lower()
return f"figure_{letter}{number:03d}"
return f"figure_{number:03d}"
```
2. **Find every callsite**: `rg "_format_figure_id" paperforge/worker/ocr_figures.py` and update each.
Every path that passes `namespace` and `number` from marker data must also pass `alpha_prefix`. The callsites include:
- `ClassicSequentialPass` / `UnresolvedClusterConsolidation`
- `GroupSequentialPass` / `CompositeParentPass`
- `CrossPageSettlementPass` / `LegendBundlePass`
- `SidecarPass` / `FinalAccountingPass`
- Any synthetic/fallback figure_id construction (where namespace is `"figure"`)
- `_postprocess_inventory_figures` / `_synthesize_unnumbered_figures`
- `_recover_unnumbered_figure_assets`
Rule: if the callsite has marker data available (has `prefix`/`alpha_prefix`), pass it. If not, the new default `None` keeps existing behavior. Add a guard:
```python
if namespace == "appendix" and not alpha_prefix:
alpha_prefix = "x" # fallback — should not happen in practice
```
**Test (before commit):** `pytest tests/test_ocr_figures.py` passes.
---
### Step 3 — Tests
**File:** `tests/test_appendix_figure_numbering.py` (new)
Use synthetic block construction (not vault fixtures) for automated tests:
```python
"""Tests for appendix figure numbering (Figure A1 → figure_a001)."""
import pytest
from paperforge.worker.ocr_figures import (
_extract_figure_number,
_extract_figure_marker,
_extract_figure_namespace,
_format_figure_id,
build_figure_inventory_vnext,
)
# ---- _extract_figure_number ----
class TestExtractFigureNumber:
def test_main_after_regex_change(self):
assert _extract_figure_number("Figure 1. Caption") == 1
def test_supplementary_after_regex_change(self):
assert _extract_figure_number("Figure S1. Caption") == 1
def test_appendix_after_regex_change(self):
assert _extract_figure_number("Figure A1. Caption") == 1
# ---- _extract_figure_marker ----
class TestExtractFigureMarker:
def test_supplementary_keyword_has_no_prefix(self):
marker = _extract_figure_marker("Supplementary Figure 1")
assert marker["prefix"] is None
assert marker["alpha_prefix"] is None
assert marker["namespace"] == "supplementary"
assert _format_figure_id(marker["namespace"], marker["number"], marker["alpha_prefix"]) == "figure_s001"
def test_supplementary_keyword_overrides_appendix_prefix(self):
marker = _extract_figure_marker("Supplementary Figure A1")
assert marker["prefix"] == "A"
assert marker["namespace"] == "supplementary"
def test_extended_data_keyword_overrides_appendix_prefix(self):
marker = _extract_figure_marker("Extended Data Figure A1")
assert marker["prefix"] == "A"
assert marker["namespace"] == "extended_data"
def test_lowercase_appendix_prefix_normalized(self):
marker = _extract_figure_marker("Figure a1")
assert marker["prefix"] == "A"
assert marker["alpha_prefix"] == "A"
assert marker["namespace"] == "appendix"
@pytest.mark.parametrize("text,exp_prefix", [
("Figure S1", "S"),
("Figure S.1", "S"),
("Fig. S 1", "S"),
("Figure A1", "A"),
("Figure A.1", "A"),
("Fig. A 1", "A"),
("Figure B2", "B"),
("Figure 1", None),
])
def test_prefix_extraction(self, text, exp_prefix):
marker = _extract_figure_marker(text)
assert marker["prefix"] == exp_prefix
@pytest.mark.parametrize("text,exp_ns", [
("Figure S1", "supplementary"),
("Supplementary Figure 1", "supplementary"),
("Figure A1", "appendix"),
("Figure A.1", "appendix"),
("Figure B2", "appendix"),
("Figure 1", "main"),
])
def test_namespace_resolution(self, text, exp_ns):
marker = _extract_figure_marker(text)
assert marker["namespace"] == exp_ns
# ---- _format_figure_id ----
class TestFormatFigureId:
def test_appendix_letter_is_preserved(self):
assert _format_figure_id("appendix", 2, alpha_prefix="B") == "figure_b002"
def test_figure_a1_and_figure_b1_do_not_collide(self):
id_a = _format_figure_id("appendix", 1, alpha_prefix="A")
id_b = _format_figure_id("appendix", 1, alpha_prefix="B")
assert id_a == "figure_a001"
assert id_b == "figure_b001"
assert id_a != id_b
def test_main_number_unchanged(self):
assert _format_figure_id("main", 1) == "figure_001"
assert _format_figure_id("main", 12, alpha_prefix=None) == "figure_012"
def test_supplementary_unchanged(self):
assert _format_figure_id("supplementary", 1) == "figure_s001"
# ---- Inventory-level: Table A1 must NOT leak ----
class TestTableA1Leak:
def test_table_a1_caption_not_consumed_by_figure_inventory(self):
"""Table A1 is out of scope. Figure inventory must not emit it."""
blocks = [
{
"block_id": 1,
"page": 1,
"role": "table_caption",
"raw_label": "table",
"text": "Table A1. Baseline characteristics",
"bbox": [100, 100, 500, 130],
},
{
"block_id": 2,
"page": 1,
"role": "media_asset",
"raw_label": "table",
"text": "",
"bbox": [100, 140, 500, 400],
},
]
inv = build_figure_inventory_vnext(blocks)
for f in inv.get("matched_figures", []):
assert "Table A1" not in str(f.get("text", "")), f"Table A1 leaked as {f['figure_id']}"
assert "figure_a001" not in [f["figure_id"] for f in inv.get("matched_figures", [])]
```
---
### Step 4 — Vault verification (manual / CI)
Not a unit test. Run once before opening PR:
```bash
# M84CTEM9 spot-check
python -c "
from pathlib import Path
from paperforge.worker.ocr_figures import build_figure_inventory_vnext
import json
blocks = [json.loads(l) for l in
Path('D:/L/OB/Literature-hub/System/PaperForge/ocr/M84CTEM9/structure/blocks.structured.jsonl')
.read_text('utf-8', errors='replace').splitlines() if l.strip()]
inv = build_figure_inventory_vnext(blocks)
ids = [f['figure_id'] for f in inv['matched_figures']]
assert 'figure_a001' in ids, f'Missing appendix figures. Got: {ids}'
assert 'figure_a002' in ids
assert 'figure_a003' in ids
for f in inv['matched_figures']:
if 'figure_a00' in f['figure_id']:
assert f.get('matched_assets'), f'{f[\"figure_id\"]} has no assets'
print(f'OK: {len(ids)} figures, including appendix a001-a003')
"
```
---
## Commits
| # | Scope | Atomic? | Message |
|---|-------|---------|---------|
| 1 | regex + number + namespace + marker | ✅ `pytest tests/test_ocr_figures.py` passes | `feat: recognize appendix figure prefixes` |
| 2 | format ID + all callsites | ✅ `pytest tests/test_ocr_figures.py` passes | `feat: preserve appendix figure prefix in IDs` |
| 3 | tests | ✅ new tests pass | `test: cover appendix figure numbering` |
---
## Pre-implementation checklist
- [ ] `_format_figure_id("appendix", 1, "B")` expected value is `"figure_b001"` (not `b002`) — **FIXED in plan**
- [ ] Task A/B/C treated as one atomic implementation unit (regex + marker + namespace together)
- [ ] Prefix normalized to uppercase in `_extract_figure_marker`
- [ ] `rg "_format_figure_id"` finds ALL callsites; appendix namespace receives `alpha_prefix`
- [ ] Negative test: Table A1 caption NOT consumed by figure inventory
- [ ] Synthetic blocks for automated tests; M84CTEM9 is manual vault verification only
## Risks
| Risk | Mitigation |
|------|-----------|
| `_extract_figure_number` callers break silently | Return type unchanged (`int \| None`). Step 1 commit passes existing test suite. |
| Keyword priority breaks `Supplementary Figure 1` | Existing path has `prefix=None`, falls through to keyword check → same result. Explicit test. |
| Table caption leaks as `figure_a001` | Explicit negative test in Step 3. Guard in `_format_figure_id` for appendix without alpha_prefix. |
| M84CTEM9 Figure A3 collides with main Figure 3 | Different namespaces (`appendix` vs `main`) produce different IDs (`figure_a003` vs `figure_003`). No collision. |
| Lowercase input `Figure a1` not handled | Normalized to uppercase in marker. Explicit test. |

View file

@ -0,0 +1,290 @@
## Problem
The figure caption regex `_FIGURE_NUMBER_PATTERN` only extracts digits (`\d+`) from figure numbers, with `S` as the sole alphabetic prefix:
```
Figure 1 → number=1 → figure_001 ✅
Figure S1 → has_s=True → figure_s001 ✅
Figure A1 → NONE → UNMATCHED ❌
Figure A2 → NONE → UNMATCHED ❌
```
This leaves appendix-style figures (`Figure A1`, `Figure B2`) entirely unmatched, even when their caption and image are on the same page.
## Scope
Only `_extract_figure_number`, `_extract_figure_marker`, `_extract_figure_namespace`, and `_format_figure_id`. No zone boundary changes, no layout changes, no pass changes.
## Design
### Principle
The pipeline already detects "numbering system switches" via namespace detection:
- No prefix → `main`
- `S` prefix → `supplementary`
Extend this: any non-S alphabetic prefix → `appendix`.
Vault analysis shows **zero papers with multiple letter prefixes** (no paper has both Figure A1 and Figure B1). However, the ID format still preserves the real letter prefix so future papers with B1 don't collide.
### Regex Change — Named Groups
Current `_FIGURE_NUMBER_PATTERN`:
```python
r"(?:Figure|Fig\.?|...)\s*(?:S\.?\s*)?(\\d+(?:\\.\\d+)?)"
```
Problems:
1. Only one capture group (digit) — `group(1)` = figure number
2. `S` prefix is a hardcoded non-capturing group, not extensible
3. Adding prefix groups shifts group indices, breaking `_extract_figure_number`
New pattern — named groups:
```python
_FIGURE_NUMBER_PATTERN = re.compile(
r"(?:Figure|Fig\\.?|Supplementary\\s+Figure|Supplementary\\s+Fig\\.?|"
r"Extended\\s+Data\\s+Figure|Extended\\s+Data\\s+Fig\\.?|"
r"TABLE|Table|图|圖|ͼ)"
r"\\s*(?:(?P<prefix>[A-Z])\\.?\\s*)?(?P<number>\\d+(?:\\.\\d+)?)",
re.IGNORECASE,
)
```
- `prefix`: optional single letter (A-Z), normalized to uppercase
- `number`: the digit sequence (unchanged)
- No hardcoded `S` check in the regex — prefix logic moves to namespace code
### `_extract_figure_number` — MUST Update
**Cannot be left unchanged.** Old implementation reads `match.group(1)` (digit). After named groups, reads `match.group("number")`:
```python
def _extract_figure_number(text: str) -> int | None:
m = _FIGURE_NUMBER_PATTERN.search(text)
if m:
try:
num_str = m.group("number")
if num_str is not None:
return int(float(num_str))
except (ValueError, TypeError):
pass
return None
```
Return type remains `int | None` — callers unchanged.
### `_extract_figure_marker` — Extended contract
```python
{
"number": 1,
"number_text": "1",
"prefix": "A", # raw prefix letter from regex (A-Z), or None
"alpha_prefix": "A", # prefix if non-S, else None
"has_s": False, # prefix == "S"
"has_alpha_prefix": True, # prefix is A-Z and not S
"namespace": "appendix", # resolved namespace
}
```
Note: `Supplementary Figure 1` has no alphabetic prefix (`prefix=None`), so its namespace comes from the keyword path (`"supplementary"`), not from prefix detection.
### `_extract_figure_namespace` — Priority: keyword > S prefix > non-S prefix
```python
def _extract_figure_namespace(text: str, prefix: str | None = None) -> str:
lower = text.lower()
# Explicit descriptor has highest priority.
if "extended data" in lower or "extended figure" in lower:
return "extended_data"
# S-prefix remains supplementary even without keyword.
if prefix == "S":
return "supplementary"
if "supplementary" in lower or "supporting" in lower or "additional file" in lower:
return "supplementary"
# Non-S alphabetic prefix without explicit descriptor → appendix.
if prefix and prefix != "S":
return "appendix"
return "main"
```
This prevents `Supplementary Figure A1` from being misclassified as appendix — the keyword `Supplementary` takes priority.
### `_format_figure_id` — Preserve Real Prefix Letter
```python
def _format_figure_id(namespace: str, number: int, alpha_prefix: str | None = None) -> str:
if namespace == "supplementary":
return f"figure_s{number:03d}"
if namespace == "extended_data":
return f"figure_ed{number:03d}"
if namespace == "appendix":
letter = (alpha_prefix or "x").lower()
return f"figure_{letter}{number:03d}"
return f"figure_{number:03d}"
```
```
Figure A1 → figure_a001
Figure B1 → figure_b001 (no collision with A1)
```
### Table A1 — Explicitly Out of Scope
`_extract_figure_number` and `_extract_figure_marker` are shared utilities (used by both figure and table code). However:
- **This spec is figure-only.** The regex already includes `TABLE|Table`, which is pre-existing. This change must NOT expand table-caption matching behavior — the regex already matched `Table 1` before.
- Figure inventory must not newly start consuming table captions as figure records. If `Table A1` is matched by the regex, it is consumed by `_extract_figure_marker` for utility purposes only, but `build_figure_inventory` must not emit a `figure_a001` for it.
- Table-side appendix support (`table_a001`) is deferred to a separate change.
### Functions to Touch
| Function | File | Change |
|----------|------|--------|
| `_FIGURE_NUMBER_PATTERN` | ocr_figures.py | Replace with named-group regex |
| `_extract_figure_number` | ocr_figures.py | Read `group("number")` instead of `group(1)` |
| `_extract_figure_marker` | ocr_figures.py | Add `prefix`, `alpha_prefix`, `has_alpha_prefix`, `namespace` fields |
| `_extract_figure_namespace` | ocr_figures.py | Accept `prefix` param; keyword-first priority; non-S → appendix |
| `_format_figure_id` | ocr_figures.py | Accept `alpha_prefix` param; appendix → `figure_{letter}XXX` |
### Not Touched
- Zone detection — no change
- Layout passes — no change
- `LegendBundlePass` — unchanged (calls `_extract_figure_number` which still returns `int | None`)
- Cross-page / same-page passes — unchanged
- Table inventory — out of scope
- `Scheme 1` / Roman numerals / `Figure 1A` — out of scope
## Edge Cases
| Case | number | prefix | alpha_prefix | namespace | ID | Correct? |
|------|--------|--------|-------------|-----------|-----|----------|
| `Figure 1` | 1 | None | None | main | `figure_001` | ✅ |
| `Figure S1` | 1 | S | None | supplementary | `figure_s001` | ✅ |
| `Fig. S.1` | 1 | S | None | supplementary | `figure_s001` | ✅ |
| `Fig. S 1` | 1 | S | None | supplementary | `figure_s001` | ✅ |
| `Supplementary Figure 1` | 1 | None | None | supplementary | `figure_s001` | ✅ keyword path |
| `Supplementary Figure A1` | 1 | A | A | supplementary | `figure_s001` | ✅ keyword > prefix |
| `Extended Data Figure A1` | 1 | A | A | extended_data | `figure_ed001` | ✅ keyword > prefix |
| `Figure A1` | 1 | A | A | appendix | `figure_a001` | ✅ |
| `Figure A.1` | 1 | A | A | appendix | `figure_a001` | ✅ |
| `Fig. A 1` | 1 | A | A | appendix | `figure_a001` | ✅ |
| `Figure B2` | 2 | B | B | appendix | `figure_b002` | ✅ |
| `TABLE A1` | 1 | A | A | appendix | N/A | ⚠️ extractor-level only; table inventory deferred |
| `Figure 1A` | 1 | None | None | main | `figure_001` | ⚠️ pre-existing (suffix ignored) |
| `Figure A` (no digit) | None | A | — | — | — | ✅ no number → no match |
| `Scheme 1` | None | None | — | — | — | ⚠️ out of scope |
| `Figure I` (Roman) | None | I | — | — | — | ⚠️ out of scope |
## Verification
### Unit tests (add to `test_ocr_figures.py`)
```python
# Core contract: _extract_figure_number still works after regex change
def test_extract_figure_number_main_after_regex_change():
assert _extract_figure_number("Figure 1. Caption") == 1
def test_extract_figure_number_supplementary_after_regex_change():
assert _extract_figure_number("Figure S1. Caption") == 1
def test_extract_figure_number_appendix_after_regex_change():
assert _extract_figure_number("Figure A1. Caption") == 1
# Supplementary keyword has no prefix
def test_supplementary_figure_keyword_has_no_prefix():
marker = _extract_figure_marker("Supplementary Figure 1")
assert marker["prefix"] is None
assert marker["alpha_prefix"] is None
assert marker["namespace"] == "supplementary"
assert _format_figure_id(marker["namespace"], marker["number"], marker["alpha_prefix"]) == "figure_s001"
# Keyword overrides appendix prefix
def test_supplementary_keyword_overrides_appendix_prefix():
marker = _extract_figure_marker("Supplementary Figure A1")
assert marker["prefix"] == "A"
assert marker["namespace"] == "supplementary"
def test_extended_data_keyword_overrides_appendix_prefix():
marker = _extract_figure_marker("Extended Data Figure A1")
assert marker["prefix"] == "A"
assert marker["namespace"] == "extended_data"
# Prefix forms
@pytest.mark.parametrize("text,exp_prefix", [
("Figure S1", "S"),
("Figure S.1", "S"),
("Fig. S 1", "S"),
("Figure A1", "A"),
("Figure A.1", "A"),
("Fig. A 1", "A"),
("Figure B2", "B"),
("Figure 1", None),
])
def test_figure_marker_prefix(text, exp_prefix):
marker = _extract_figure_marker(text)
assert marker["prefix"] == exp_prefix
@pytest.mark.parametrize("text,exp_ns", [
("Figure S1", "supplementary"),
("Supplementary Figure 1", "supplementary"),
("Figure A1", "appendix"),
("Figure A.1", "appendix"),
("Figure B2", "appendix"),
("Figure 1", "main"),
])
def test_figure_namespace(text, exp_ns):
marker = _extract_figure_marker(text)
assert marker["namespace"] == exp_ns
# ID format preserves real prefix letter
def test_appendix_letter_is_preserved_in_id():
marker = _extract_figure_marker("Figure B2. Caption")
assert marker["alpha_prefix"] == "B"
fid = _format_figure_id("appendix", 2, alpha_prefix="B")
assert fid == "figure_b002"
def test_figure_a1_and_figure_b1_do_not_collide():
id_a = _format_figure_id("appendix", 1, alpha_prefix="A")
id_b = _format_figure_id("appendix", 1, alpha_prefix="B")
assert id_a != id_b
# Existing behavior unchanged
def test_s_prefix_stays_supplementary_number():
assert _extract_figure_number("Figure S1. text") == 1
# Vault spot-check: M84CTEM9
def test_appendix_figure_integration():
blocks = load_blocks_for("M84CTEM9")
inv = build_figure_inventory_vnext(blocks)
ids = [f["figure_id"] for f in inv["matched_figures"]]
assert "figure_a001" in ids
assert "figure_a002" in ids
assert "figure_a003" in ids
assert all(f.get("matched_assets") for f in inv["matched_figures"] if "figure_a00" in f["figure_id"])
```
### Regression safety
- `pytest tests/test_ocr_figures.py` — all existing tests pass
- `ruff check paperforge/worker/ocr_figures.py` — clean
- Figure inventory must not gain new `figure_aXXX` entries for table captions (compare against baseline)
### Vault verification
- Run `build_figure_inventory_vnext` on M84CTEM9: confirm `figure_a001`, `figure_a002`, `figure_a003` appear with assets
- Run full batch comparison against vault: total figure match count should increase by ~7 (the 7 post-ref appendix figure captions). Zero regressions on existing `Figure 1` / `Figure S1` matches.
## Open Decisions
- Table A1: separate PR, not here
- `Scheme 1` / Roman numerals: separate issue
- Cross-page continuation (NC66N4Q3): separate issue

View file

@ -145,9 +145,8 @@ class LegendBundlePass:
figure_no = ocr_figures._extract_figure_number(
str(cap.get("text", ""))
)
namespace = ocr_figures._extract_figure_namespace(
str(cap.get("text", ""))
)
marker = ocr_figures._extract_figure_marker(str(cap.get("text", "")))
namespace = marker["namespace"]
legend_ref = ResourceRef(
kind="legend",
@ -197,7 +196,9 @@ class LegendBundlePass:
if figure_no is not None:
figure_id = ocr_figures._format_figure_id(
namespace, figure_no
marker["namespace"],
figure_no,
alpha_prefix=marker["alpha_prefix"],
)
else:
figure_id = f"figure_unknown_{len(state.matches):03d}"

View file

@ -39,21 +39,28 @@ class PrimarySamePagePass:
if score.get("decision") != "matched":
continue
figure_no = ocr_figures._extract_figure_number(str(legend.get("text", "")))
proposals.append(ClaimProposal(
pass_name=self.name,
figure_no=figure_no,
claim_type="match",
legends=[ResourceRef(kind="legend", page=page, block_id=legend.get("block_id"), figure_no=figure_no)],
assets=[ResourceRef(kind="asset", page=page, block_id=bid) for bid in group.get("asset_block_ids", [])],
groups=[ResourceRef(kind="group", page=page, block_id=None, group_id=group.get("group_id"))],
confidence=float(score.get("score", 0.0)),
evidence_rank=1,
reason="same_page_primary",
diagnostics={
"evidence": list(score.get("evidence", [])),
"legend_block_id": str(legend.get("block_id", "")),
},
))
proposals.append(
ClaimProposal(
pass_name=self.name,
figure_no=figure_no,
claim_type="match",
legends=[
ResourceRef(kind="legend", page=page, block_id=legend.get("block_id"), figure_no=figure_no)
],
assets=[
ResourceRef(kind="asset", page=page, block_id=bid)
for bid in group.get("asset_block_ids", [])
],
groups=[ResourceRef(kind="group", page=page, block_id=None, group_id=group.get("group_id"))],
confidence=float(score.get("score", 0.0)),
evidence_rank=1,
reason="same_page_primary",
diagnostics={
"evidence": list(score.get("evidence", [])),
"legend_block_id": str(legend.get("block_id", "")),
},
)
)
return proposals
def _materialize_match(self, state, proposal):
@ -70,14 +77,19 @@ class PrimarySamePagePass:
legend_text = next(
str(b.get("text", ""))
for b in state.candidate_index.deduped_legends
if str(b.get("block_id", "")) == legend.block_id
if _resource_page(b) == page and str(b.get("block_id", "")) == str(legend.block_id)
)
figure_no = proposal.figure_no
namespace = ocr_figures._extract_figure_namespace(legend_text)
marker = ocr_figures._extract_figure_marker(legend_text)
namespace = marker["namespace"]
if figure_no is None:
figure_id = f"figure_unknown_{len(state.matches):03d}"
else:
figure_id = ocr_figures._format_figure_id(namespace, figure_no)
figure_id = ocr_figures._format_figure_id(
marker["namespace"],
marker["number"],
alpha_prefix=marker["alpha_prefix"],
)
return {
"figure_id": figure_id,
"figure_namespace": namespace,
@ -89,7 +101,11 @@ class PrimarySamePagePass:
"asset_block_ids": sorted(asset_ids),
"settlement_type": "same_page",
"confidence": proposal.confidence,
"match_score": {"score": proposal.confidence, "decision": "matched", "evidence": proposal.diagnostics["evidence"]},
"match_score": {
"score": proposal.confidence,
"decision": "matched",
"evidence": proposal.diagnostics["evidence"],
},
"flags": [],
"bridge_block_ids": [],
}
@ -125,11 +141,14 @@ class CrossPageReservationPass:
continue
# Find forward groups (page > legend page)
forward_groups = [
g for g in state.candidate_index.candidate_groups
g
for g in state.candidate_index.candidate_groups
if _resource_page(g) is not None and _resource_page(g) > page
]
for group in forward_groups[:1]:
group_ref = ResourceRef(kind="group", page=_resource_page(group), block_id=None, group_id=group.get("group_id"))
group_ref = ResourceRef(
kind="group", page=_resource_page(group), block_id=None, group_id=group.get("group_id")
)
if not state.ledger.can_claim_group(group_ref):
continue
proposal = ClaimProposal(
@ -156,11 +175,35 @@ class CrossPageSettlementPass:
name = "cross_page_settlement"
def run(self, state):
from . import ocr_figures
report = PassReport(pass_name=self.name)
for reservation in state.reservations:
legend = reservation["legends"][0]
group = reservation["groups"][0]
state.ledger.transition_reserved_group_to_claimed(group, owner=legend, reason="cross_page_settlement")
# Look up the actual legend block to extract namespace/number/alpha_prefix
legend_text = ""
for leg in state.candidate_index.deduped_legends:
if str(leg.get("block_id", "")) == str(legend.block_id):
legend_text = str(leg.get("text", ""))
break
marker = ocr_figures._extract_figure_marker(legend_text)
if marker["number"] is not None and marker["namespace"] == "appendix":
# Appendix: use schema-derived ID (no collision risk with main).
figure_id = ocr_figures._format_figure_id(
marker["namespace"], marker["number"], alpha_prefix=marker["alpha_prefix"]
)
figure_namespace = marker["namespace"]
figure_number = marker["number"]
else:
# Main/supplementary/unnumbered: keep reserved ID to avoid
# duplication with same-page match AND keep figure_number=None
# so figure_number filter queries exclude this synthetic match.
figure_id = f"figure_reserved_{len(state.matches):03d}"
figure_namespace = marker["namespace"] if marker["number"] else "figure"
figure_number = reservation["figure_no"]
proposal = ClaimProposal(
pass_name=self.name,
figure_no=reservation["figure_no"],
@ -173,20 +216,23 @@ class CrossPageSettlementPass:
reason="cross_page_settlement",
diagnostics={"evidence": ["reservation_claimed"]},
)
state.accept_match(proposal, {
"figure_id": f"figure_reserved_{len(state.matches):03d}",
"figure_namespace": "figure",
"figure_number": reservation["figure_no"],
"legend_block_id": legend.block_id,
"page": legend.page,
"text": "",
"matched_assets": [],
"asset_block_ids": [],
"settlement_type": "cross_page_reservation",
"confidence": 0.6,
"match_score": {"score": 0.6, "decision": "matched", "evidence": ["reservation_claimed"]},
"flags": ["cross_page_reserved"],
"bridge_block_ids": [],
})
state.accept_match(
proposal,
{
"figure_id": figure_id,
"figure_namespace": figure_namespace,
"figure_number": figure_number,
"legend_block_id": legend.block_id,
"page": legend.page,
"text": legend_text,
"matched_assets": [],
"asset_block_ids": [],
"settlement_type": "cross_page_reservation",
"confidence": 0.6,
"match_score": {"score": 0.6, "decision": "matched", "evidence": ["reservation_claimed"]},
"flags": ["cross_page_reserved"],
"bridge_block_ids": [],
},
)
report.accepted.append(proposal)
return report

View file

@ -102,11 +102,16 @@ class SidecarPass:
report.rejected.append(proposal)
continue
namespace = ocr_figures._extract_figure_namespace(figure_text)
marker = ocr_figures._extract_figure_marker(figure_text)
namespace = marker["namespace"]
if figure_no is None:
figure_id = f"figure_unknown_{len(state.matches):03d}"
else:
figure_id = ocr_figures._format_figure_id(namespace, figure_no)
figure_id = ocr_figures._format_figure_id(
marker["namespace"],
marker["number"],
alpha_prefix=marker["alpha_prefix"],
)
match_record = {
"legend_block_id": cid,

View file

@ -13,8 +13,8 @@ from paperforge.worker.ocr_scores import score_figure_caption, score_figure_matc
_FIGURE_NUMBER_PATTERN = re.compile(
r"(?:Figure|Fig\.?|Supplementary\s+Figure|Supplementary\s+Fig\.?|"
r"Extended\s+Data\s+Figure|Extended\s+Data\s+Fig\.?|图|圖|ͼ)\s*"
r"(?:S\.?\s*)?(\d+(?:\.\d+)?)",
r"Extended\s+Data\s+Figure|Extended\s+Data\s+Fig\.?|图|圖|ͼ)"
r"\s*(?:(?P<prefix>[A-Z])\.?\s*)?(?P<number>\d+(?:\.\d+)?)",
flags=re.IGNORECASE,
)
@ -110,30 +110,27 @@ def _extract_figure_number(text: str) -> int | None:
m = _FIGURE_NUMBER_PATTERN.search(text)
if m:
try:
return int(float(m.group(1)))
except ValueError:
return None
num_str = m.group("number")
if num_str is not None:
return int(float(num_str))
except (ValueError, TypeError):
pass
return None
def _extract_figure_namespace(text: str) -> str:
def _extract_figure_namespace(text: str, prefix: str | None = None) -> str:
lower = text.lower()
if "supplementary" in lower:
return "supplementary"
if "extended data" in lower:
if "extended data" in lower or "extended figure" in lower:
return "extended_data"
if prefix == "S":
return "supplementary"
if "supplementary" in lower or "supporting" in lower or "additional file" in lower:
return "supplementary"
if prefix and prefix != "S":
return "appendix"
return "main"
_FIGURE_MARKER_PATTERN = re.compile(
r"(?P<prefix>Supplementary\s+Figure|Supplementary\s+Fig\.?|"
r"Extended\s+Data\s+Figure|Extended\s+Data\s+Fig\.?|"
r"Figure|Fig\.?)\s*"
r"(?P<s_prefix>S\.?\s*)?"
r"(?P<number>\d+(?:\.\d+)?)",
re.I,
)
_FIGURE_DESCRIPTION_OPENING = re.compile(
r"^(?:This figure|The figure|This Fig\.?|The Fig\.?|Figure\s+\d+|Fig\.?\s+\d+)\b",
flags=re.IGNORECASE,
@ -141,34 +138,42 @@ _FIGURE_DESCRIPTION_OPENING = re.compile(
def _extract_figure_marker(text: str) -> dict:
m = _FIGURE_MARKER_PATTERN.search(text)
m = _FIGURE_NUMBER_PATTERN.search(text)
if not m:
return {
"namespace": "main",
"number": None,
"number_text": "",
"prefix": None,
"alpha_prefix": None,
"has_s": False,
"has_alpha_prefix": False,
"raw_prefix": "",
"has_s_prefix": False,
"marker_text": "",
}
lower = text.lower()
has_s = bool(m.group("s_prefix"))
if has_s or "supplementary" in lower or "supporting" in lower or "additional file" in lower or "appendix" in lower:
namespace = "supplementary"
elif "extended data" in lower or "extended figure" in lower:
namespace = "extended_data"
else:
namespace = "main"
prefix_raw = m.group("prefix")
prefix = (prefix_raw or "").upper() or None
number_raw = m.group("number")
try:
number = int(float(number_raw))
except ValueError:
except (ValueError, TypeError):
number = None
namespace = _extract_figure_namespace(text, prefix)
return {
"namespace": namespace,
"number": number,
"raw_prefix": m.group("prefix"),
"has_s_prefix": has_s,
"marker_text": m.group(0),
"number_text": number_raw or "",
"prefix": prefix,
"alpha_prefix": prefix if prefix and prefix != "S" else None,
"has_s": prefix == "S",
"has_alpha_prefix": prefix is not None and prefix != "S",
"raw_prefix": prefix or "",
"has_s_prefix": prefix == "S",
"marker_text": m.group(0) or "",
}
@ -237,11 +242,15 @@ def _validate_page_local_caption_grammar(
return hypotheses
def _format_figure_id(namespace: str, number: int) -> str:
def _format_figure_id(namespace: str, number: int, alpha_prefix: str | None = None) -> str:
if namespace == "supplementary":
return f"figure_s{number:03d}"
if namespace == "extended_data":
return f"figure_ed{number:03d}"
if namespace == "appendix":
if not alpha_prefix:
alpha_prefix = "x" # fallback, should not happen
return f"figure_{alpha_prefix.lower()}{number:03d}"
return f"figure_{number:03d}"
@ -2573,11 +2582,12 @@ def _settle_cross_page_reserved_objects(
best_group = target_groups[0]
legend_text = str(legend.get("text") or "")
fn = _extract_figure_number(legend_text)
if fn is None:
marker = _extract_figure_marker(legend_text)
if marker["number"] is None:
continue
ns = _extract_figure_namespace(legend_text)
fig_id = _format_figure_id(ns, fn)
ns = marker["namespace"]
fn = marker["number"]
fig_id = _format_figure_id(ns, fn, alpha_prefix=marker["alpha_prefix"])
caption_score = score_figure_caption(
legend, nearby_media=True, caption_style_match=False, body_prose_likelihood=False
@ -2654,11 +2664,12 @@ def _settle_cross_page_reserved_objects(
lid = str(best_legend.get("block_id", ""))
legend_text = str(best_legend.get("text") or "")
fn = _extract_figure_number(legend_text)
if fn is None:
marker = _extract_figure_marker(legend_text)
if marker["number"] is None:
continue
ns = _extract_figure_namespace(legend_text)
fig_id = _format_figure_id(ns, fn)
ns = marker["namespace"]
fn = marker["number"]
fig_id = _format_figure_id(ns, fn, alpha_prefix=marker["alpha_prefix"])
caption_score = score_figure_caption(
best_legend, nearby_media=True, caption_style_match=False, body_prose_likelihood=False
@ -3231,6 +3242,7 @@ def build_figure_inventory_legacy(
fn = _extract_figure_number(text)
if fn is None:
continue
# no prefix context — keyword-only fallback
ns = _extract_figure_namespace(text)
key = (ns, fn)
if key not in _dedup_map:
@ -3275,6 +3287,7 @@ def build_figure_inventory_legacy(
text = legend.get("text", "")
fn = _extract_figure_number(text)
if fn is not None:
# no prefix context — keyword-only fallback
ns = _extract_figure_namespace(text)
key = (ns, fn)
_distinct_check = (
@ -3470,6 +3483,7 @@ def build_figure_inventory_legacy(
legend_reserved_for_cross_page = (int(legend.get("page", 0) or 0), legend_id) in _reserved_legend_ids
legend_page = legend.get("page", 0)
legend_text = str(legend.get("text") or "")
# no prefix context — keyword-only fallback
ns = _extract_figure_namespace(legend_text)
fig_num = _extract_figure_number(legend_text)
# Text may be empty (stored as [] in raw block) but marker_signature
@ -3596,7 +3610,8 @@ def build_figure_inventory_legacy(
used_group_ids.add(child_gid)
if _parent_accepted:
_parent_fig_id = _format_figure_id(ns, fig_num)
_legend_marker = _extract_figure_marker(legend_text)
_parent_fig_id = _format_figure_id(ns, fig_num, alpha_prefix=_legend_marker["alpha_prefix"])
matched_figures.append(
{
"figure_id": _parent_fig_id,
@ -3964,7 +3979,12 @@ def build_figure_inventory_legacy(
unmatched_legends.append(legend)
continue
fig_id = _format_figure_id(ns, fig_num) if fig_num else f"figure_unknown_{len(matched_figures):03d}"
_fig_marker = _extract_figure_marker(legend_text)
fig_id = (
_format_figure_id(ns, fig_num, alpha_prefix=_fig_marker["alpha_prefix"])
if fig_num
else f"figure_unknown_{len(matched_figures):03d}"
)
match_score = (
region_match["match_score"]
if region_match is not None
@ -4167,6 +4187,7 @@ def build_figure_inventory_legacy(
lid = str(cap.get("block_id", ""))
cap_text = str(cap.get("text") or "")
fig_num = _extract_figure_number(cap_text)
# no prefix context — keyword-only fallback
cap_ns = _extract_figure_namespace(cap_text)
current_match = page_narrow_matched_by_legend.get(lid)
cap_is_unresolved = any(str(leg.get("block_id", "")) == lid for leg in unmatched_legends) or any(
@ -4217,7 +4238,7 @@ def build_figure_inventory_legacy(
if bid is not None:
sidecar_consumed_ids.add((ap, bid))
fig_id = (
_format_figure_id(cap_ns, fig_num)
_format_figure_id(cap_ns, fig_num, alpha_prefix=_extract_figure_marker(cap_text)["alpha_prefix"])
if fig_num
else f"figure_sidecar_{len(matched_figures) + len(sidecar_promoted):03d}"
)
@ -4377,9 +4398,10 @@ def build_figure_inventory_legacy(
page_assets = asset_pages[ap]
if not page_assets:
continue
fn = _extract_figure_number(str(cap.get("text", "")))
cap_ns = _extract_figure_namespace(str(cap.get("text", "")))
fig_id = _format_figure_id(cap_ns, fn)
marker = _extract_figure_marker(str(cap.get("text", "")))
fn = marker["number"]
cap_ns = marker["namespace"]
fig_id = _format_figure_id(cap_ns, fn, alpha_prefix=marker["alpha_prefix"])
cap_score = score_figure_caption(
cap, nearby_media=True, caption_style_match=False, body_prose_likelihood=False
)
@ -4436,6 +4458,7 @@ def build_figure_inventory_legacy(
fn = _extract_figure_number(str(leg.get("text", "")))
if fn is None:
continue
# no prefix context — keyword-only fallback
ns = _extract_figure_namespace(str(leg.get("text", "")))
_unmatched_by_number.setdefault((ns, fn), []).append(leg)
# Rejected legends may hold full legends misclassified as body_paragraph
@ -4444,6 +4467,7 @@ def build_figure_inventory_legacy(
fn = _extract_figure_number(str(leg.get("text", "")))
if fn is None:
continue
# no prefix context — keyword-only fallback
ns = _extract_figure_namespace(str(leg.get("text", "")))
key = (ns, fn)
if key in _unmatched_by_number:
@ -4465,6 +4489,7 @@ def build_figure_inventory_legacy(
fn = _extract_figure_number(locator_text)
if fn is None:
continue
# no prefix context — keyword-only fallback
ns = _extract_figure_namespace(locator_text)
locator_page = int(locator.get("page", 0) or 0)
if locator_page <= 1:
@ -4542,7 +4567,7 @@ def build_figure_inventory_legacy(
continue
# Build matched figure entry: use full_legend as caption, locator as bridge
fig_id = _format_figure_id(ns, fn)
fig_id = _format_figure_id(ns, fn, alpha_prefix=_extract_figure_marker(locator_text)["alpha_prefix"])
consumed = [_project_asset_record(a) for a in best_group_assets]
# Compute cluster_bbox from consumed asset bboxes
asset_bboxes = [a.get("bbox") or a.get("block_bbox") or [0, 0, 0, 0] for a in best_group_assets]
@ -4648,11 +4673,12 @@ def build_figure_inventory_legacy(
for legend in list(unmatched_legends):
lg_page = int(legend.get("page", 0) or 0)
cap_text = str(legend.get("text", "") or "")
fn = _extract_figure_number(cap_text)
if fn is None:
marker = _extract_figure_marker(cap_text)
if marker["number"] is None:
continue
cap_ns = _extract_figure_namespace(cap_text)
fig_id = _format_figure_id(cap_ns, fn)
fn = marker["number"]
cap_ns = marker["namespace"]
fig_id = _format_figure_id(cap_ns, fn, alpha_prefix=marker["alpha_prefix"])
# Collect candidate groups: prefer same-page, then next-page, then previous-page
same_page = [g for g in unmatched_groups if g["page"] == lg_page]
@ -4776,10 +4802,11 @@ def build_figure_inventory_legacy(
seq_matched: list[tuple[dict, dict]] = []
for cap in sorted_caps:
cap_text = cap.get("text", "")
fn = _extract_figure_number(cap_text)
if fn is None:
marker = _extract_figure_marker(cap_text)
if marker["number"] is None:
continue
cap_ns = _extract_figure_namespace(cap_text)
fn = marker["number"]
cap_ns = marker["namespace"]
cp = cap.get("page", 0) or 0
previous_page_asset = None
@ -4826,7 +4853,7 @@ def build_figure_inventory_legacy(
ai += 1
if ai_asset.get("block_id", "") == asset_bid and ai_asset.get("page", 0) == asset_page:
break
fig_id = _format_figure_id(cap_ns, fn)
fig_id = _format_figure_id(cap_ns, fn, alpha_prefix=marker["alpha_prefix"])
caption_score = score_figure_caption(
cap, nearby_media=True, caption_style_match=False, body_prose_likelihood=False
)
@ -5114,6 +5141,7 @@ def compute_figure_legend_completeness(
fig_num = None
with contextlib.suppress(ValueError):
fig_num = int(float(m.group(1)))
# no prefix context — keyword-only fallback
fig_ns = _extract_figure_namespace(text)
if bid in matched_ids:
@ -5204,9 +5232,10 @@ def _promote_sequence_matches(figure_inventory: dict, blocks: list[dict]) -> dic
af["sequence_skip_incomplete_contract"] = True
remaining_ambiguous.append(af)
continue
ns_promoted = _extract_figure_namespace(af.get("text", ""))
marker = _extract_figure_marker(af.get("text", ""))
ns_promoted = marker["namespace"]
promoted_entry = {
"figure_id": _format_figure_id(ns_promoted, fn),
"figure_id": _format_figure_id(ns_promoted, fn, alpha_prefix=marker["alpha_prefix"]),
"figure_namespace": ns_promoted,
"legend_block_id": af.get("legend_block_id", ""),
"page": page,
@ -5850,11 +5879,16 @@ def _score_caption_to_unmatched_asset_for_synthetic(caption: dict, asset: dict)
def _build_bbox_only_synthetic_figure(caption, asset, *, index, score):
text = str(caption.get("text") or "")
fn = _extract_figure_number(text)
ns = _extract_figure_namespace(text) if fn is not None else "figure"
marker = _extract_figure_marker(text)
fn = marker["number"]
ns = marker["namespace"] if fn is not None else "figure"
page = int(asset.get("page", caption.get("page", 0)) or 0)
asset_record = _project_asset_record(asset)
fig_id = _format_figure_id(ns, fn) if fn is not None else f"synthetic_figure_p{page}_{asset.get('block_id', index)}"
fig_id = (
_format_figure_id(ns, fn, alpha_prefix=marker["alpha_prefix"])
if fn is not None
else f"synthetic_figure_p{page}_{asset.get('block_id', index)}"
)
normalized = _prepare_rotated_caption_normalization(caption, asset)
entry = {
"figure_id": fig_id,
@ -5926,6 +5960,7 @@ def _apply_bbox_only_synthetic_vector_fallback(
# Skip if figure number already exists (Amendment 6)
fn = _extract_figure_number(str(caption.get("text") or ""))
# no prefix context — keyword-only fallback
ns = _extract_figure_namespace(str(caption.get("text") or "")) if fn is not None else "figure"
if fn is not None and (ns, fn) in _existing_numbered:
continue

View file

@ -3,7 +3,7 @@ from __future__ import annotations
import re
_FIGURE_NUMBER = re.compile(
r"\b(?:fig(?:ure)?\.?|extended data fig(?:ure)?\.?|supplementary fig(?:ure)?\.?|图|圖|ͼ|\uFFFD{1,2})\s*\d+",
r"\b(?:fig(?:ure)?\.?|extended data fig(?:ure)?\.?|supplementary fig(?:ure)?\.?|图|圖|ͼ|\uFFFD{1,2})\s*(?:[A-Z]\.?\s*)?\d+",
re.I,
)

View file

@ -23,8 +23,9 @@ class TableWeakCaptionRecoveryPass:
same_page_assets = state.candidate_index.assets_by_page.get(int(caption.get("page", 0) or 0), [])
if not same_page_assets:
record["status"] = "held"
held_count = len([r for r in state.candidate_index.caption_records if r.get("status") == "held"])
record["held_table"] = {
"table_id": f"held_table_{len([r for r in state.candidate_index.caption_records if r.get('status') == 'held']) + 1:03d}",
"table_id": f"held_table_{held_count + 1:03d}",
"caption_block_id": record["caption_block_id"],
"page": caption.get("page", 0),
"caption_text": record["caption_text"],
@ -58,8 +59,7 @@ class TableSamePagePass:
scored = ocr_tables._score_candidate_assets(page_assets, caption, is_continuation=record["is_continuation"])
scored.sort(key=lambda item: item[2].get("score", 0.0), reverse=True)
record["candidate_assets"] = [
{"asset_block_id": asset.get("block_id", ""), "match_score": score}
for _, asset, score in scored[:3]
{"asset_block_id": asset.get("block_id", ""), "match_score": score} for _, asset, score in scored[:3]
]
if not scored:
continue
@ -69,10 +69,29 @@ class TableSamePagePass:
if top_score_val < 0.4:
continue
if top_score_val - second_score < 0.15:
record["status"] = "ambiguous"
continue
owner = ResourceRef(kind="legend", page=caption_page, block_id=record["caption_block_id"], figure_no=record["formal_table_number"])
asset_ref = ResourceRef(kind="asset", page=int(top_asset.get("page", 0) or 0), block_id=top_asset.get("block_id"))
if record.get("is_weak_explicit_caption") and len(scored) > 1:
scored.sort(
key=lambda item: ocr_tables._bare_table_tie_break(item[2], caption, item[1]),
reverse=True,
)
top_idx, top_asset, top_score = scored[0]
top_tie = ocr_tables._bare_table_tie_break(top_score, caption, top_asset)
second_tie = ocr_tables._bare_table_tie_break(scored[1][2], caption, scored[1][1])
if top_tie == second_tie:
record["status"] = "ambiguous"
continue
else:
record["status"] = "ambiguous"
continue
owner = ResourceRef(
kind="legend",
page=caption_page,
block_id=record["caption_block_id"],
figure_no=record["formal_table_number"],
)
asset_ref = ResourceRef(
kind="asset", page=int(top_asset.get("page", 0) or 0), block_id=top_asset.get("block_id")
)
conflict = state.ledger.try_claim_assets([asset_ref], owner=owner, reason=self.name)
if conflict is not None:
report.conflicts.append(conflict)
@ -117,7 +136,11 @@ class TableSamePagePass:
"note_match_reason": "",
"note_confidence": 0.0,
"bridge_block_ids": [],
"consumed_block_ids": [record["caption_block_id"], top_asset.get("block_id", ""), *record.get("continuation_ids", [])],
"consumed_block_ids": [
record["caption_block_id"],
top_asset.get("block_id", ""),
*record.get("continuation_ids", []),
],
"is_continuation": record["is_continuation"],
"continuation_of": None,
"match_status": match_status,
@ -156,7 +179,9 @@ class TableAdjacentPagePass:
for idx, asset in state.candidate_index.assets_by_page.get(page, [])
if state.ledger.owner_of_asset(page=page, block_id=asset.get("block_id")) is None
]
all_candidates.extend(ocr_tables._score_candidate_assets(page_assets, caption, is_continuation=record["is_continuation"]))
all_candidates.extend(
ocr_tables._score_candidate_assets(page_assets, caption, is_continuation=record["is_continuation"])
)
for _, asset, score_dict in all_candidates:
a_page = int(asset.get("page", 0) or 0)
@ -186,8 +211,15 @@ class TableAdjacentPagePass:
if top_score.get("score", 0.0) - second_score < 0.15:
record["status"] = "ambiguous"
continue
owner = ResourceRef(kind="legend", page=caption_page, block_id=record["caption_block_id"], figure_no=record["formal_table_number"])
asset_ref = ResourceRef(kind="asset", page=int(top_asset.get("page", 0) or 0), block_id=top_asset.get("block_id"))
owner = ResourceRef(
kind="legend",
page=caption_page,
block_id=record["caption_block_id"],
figure_no=record["formal_table_number"],
)
asset_ref = ResourceRef(
kind="asset", page=int(top_asset.get("page", 0) or 0), block_id=top_asset.get("block_id")
)
conflict = state.ledger.try_claim_assets([asset_ref], owner=owner, reason=self.name)
if conflict is not None:
report.conflicts.append(conflict)
@ -196,7 +228,9 @@ class TableAdjacentPagePass:
continuation_of = None
if record["is_continuation"] and record["formal_table_number"] is not None:
for existing in state.matches:
if existing.get("formal_table_number") == record["formal_table_number"] and not existing.get("is_continuation"):
if existing.get("formal_table_number") == record["formal_table_number"] and not existing.get(
"is_continuation"
):
continuation_of = record["formal_table_number"]
break
state.accept_match(
@ -238,7 +272,11 @@ class TableAdjacentPagePass:
"note_match_reason": "",
"note_confidence": 0.0,
"bridge_block_ids": [],
"consumed_block_ids": [record["caption_block_id"], top_asset.get("block_id", ""), *record.get("continuation_ids", [])],
"consumed_block_ids": [
record["caption_block_id"],
top_asset.get("block_id", ""),
*record.get("continuation_ids", []),
],
"is_continuation": record["is_continuation"],
"continuation_of": continuation_of,
"match_status": match_status,
@ -290,11 +328,20 @@ class TableNotesAttachmentPass:
or braw_label == "vision_footnote"
or (
0 < len(btext) < 120
and brole not in {
"noise", "page_footer", "page_header", "frontmatter_noise",
"table_caption", "table_caption_candidate",
"table_asset", "media_asset", "figure_caption",
"section_heading", "subsection_heading", "reference_heading",
and brole
not in {
"noise",
"page_footer",
"page_header",
"frontmatter_noise",
"table_caption",
"table_caption_candidate",
"table_asset",
"media_asset",
"figure_caption",
"section_heading",
"subsection_heading",
"reference_heading",
}
)
)
@ -307,7 +354,9 @@ class TableNotesAttachmentPass:
if bbbox[1] < asset_bottom or bbbox[1] > asset_bottom + 100:
note_match_reason = "outside_vertical_range"
continue
if ocr_tables._table_note_falls_into_page_footnote_prior(bbbox, asset_page, state.corpus.page_footnote_prior):
if ocr_tables._table_note_falls_into_page_footnote_prior(
bbbox, asset_page, state.corpus.page_footnote_prior
):
note_match_reason = "page_footnote_prior_rejected"
continue
if ocr_tables._looks_like_body_text_below_table(block, asset_bbox):
@ -318,7 +367,9 @@ class TableNotesAttachmentPass:
if candidates:
candidates.sort(key=lambda b: (b.get("bbox") or [0, 0, 0, 0])[1])
table["note_block_ids"] = [str(b.get("block_id", "")) for b in candidates if b.get("block_id")]
table["note_texts"] = [str(b.get("text", "") or "").strip() for b in candidates if str(b.get("text", "") or "").strip()]
table["note_texts"] = [
str(b.get("text", "") or "").strip() for b in candidates if str(b.get("text", "") or "").strip()
]
table["note_bboxes"] = [b.get("bbox", [0, 0, 0, 0]) for b in candidates]
table["note_band_bbox"] = [
min(bb[0] for bb in table["note_bboxes"]),
@ -337,7 +388,12 @@ class TableNotesAttachmentPass:
table.setdefault("note_confidence", 0.0)
asset_block = next(
(a for a in state.corpus.raw_assets if str(a.get("block_id", "")) == str(table.get("asset_block_id", "")) and int(a.get("page", 0) or 0) == asset_page),
(
a
for a in state.corpus.raw_assets
if str(a.get("block_id", "")) == str(table.get("asset_block_id", ""))
and int(a.get("page", 0) or 0) == asset_page
),
None,
)
if asset_block is not None:
@ -345,12 +401,21 @@ class TableNotesAttachmentPass:
if rot:
ab = table.get("asset_bbox", [])
caption = next(
(r["caption"] for r in state.candidate_index.caption_records if r["caption_block_id"] == table.get("caption_block_id")),
(
r["caption"]
for r in state.candidate_index.caption_records
if r["caption_block_id"] == table.get("caption_block_id")
),
None,
)
cb = (caption.get("bbox") or caption.get("block_bbox") or []) if caption else []
if len(ab) >= 4 and len(cb) >= 4:
table["render_bbox"] = [min(cb[0], ab[0]), min(cb[1], ab[1]), max(cb[2], ab[2]), max(cb[3], ab[3])]
table["render_bbox"] = [
min(cb[0], ab[0]),
min(cb[1], ab[1]),
max(cb[2], ab[2]),
max(cb[3], ab[3]),
]
table["render_rotation_deg"] = rot
# Bridge block detection
@ -377,8 +442,12 @@ class TableFinalAccountingPass:
def run(self, state):
report = PassReport(pass_name=self.name)
state.completeness = {
"total_numbered_tables": len([r for r in state.candidate_index.caption_records if r.get("formal_table_number") is not None]),
"accounted_for": len([r for r in state.candidate_index.caption_records if r.get("status") in {"matched", "held"}]),
"total_numbered_tables": len(
[r for r in state.candidate_index.caption_records if r.get("formal_table_number") is not None]
),
"accounted_for": len(
[r for r in state.candidate_index.caption_records if r.get("status") in {"matched", "held"}]
),
"details": [
{"caption_block_id": r["caption_block_id"], "status": r.get("status", "pending")}
for r in state.candidate_index.caption_records

View file

@ -8,7 +8,7 @@ from typing import Any
from paperforge.core.io import write_json
from paperforge.worker.ocr_scores import score_table_match
_TABLE_NUM_TOKEN = r"(?:\d+(?:\.\d+)?|[IVXLCDM]+)"
_TABLE_NUM_TOKEN = r"(?:[A-Z]\d+(?:\.\d+)?|\d+(?:\.\d+)?|[IVXLCDM]+)"
_TABLE_PREFIX_PATTERN = re.compile(
rf"^(?:Table|Supplementary\s+Table|Extended\s+Data\s+Table|表|(?:\ufffc|\ufffd\ufffd))\s*"
@ -67,6 +67,8 @@ def _table_has_rotated_content(asset: dict) -> int:
def _parse_table_number_token(token: str) -> int | None:
token = token.strip().rstrip(".")
if re.fullmatch(r"[A-Z]\d+(?:\.\d+)?", token, re.IGNORECASE):
token = token[1:]
if re.fullmatch(r"\d+(?:\.\d+)?", token):
return int(float(token))
if re.fullmatch(r"[IVXLCDM]+", token, re.IGNORECASE):
@ -97,7 +99,13 @@ def _is_validation_first_table_candidate(block: dict) -> bool:
marker_type = (block.get("marker_signature") or {}).get("type") or "none"
zone = str(block.get("zone", "") or "")
style_family = str(block.get("style_family", "") or "")
return marker_type == "table_number" and zone == "display_zone" and style_family == "table_caption_like"
raw_label = str(block.get("raw_label", "") or "")
text = str(block.get("text", "") or "")
if marker_type == "table_number" and zone == "display_zone" and style_family == "table_caption_like":
return True
return (
raw_label == "figure_title" and style_family == "table_caption_like" and _extract_table_number(text) is not None
)
def _is_insufficient_table_caption_evidence(block: dict) -> bool:
@ -107,18 +115,19 @@ def _is_insufficient_table_caption_evidence(block: dict) -> bool:
def _is_weak_explicit_table_caption(block: dict) -> bool:
role = str(block.get("role", "") or "")
if role not in {"table_caption", "table_caption_candidate"}:
return False
return _is_insufficient_table_caption_evidence(block)
if role in {"table_caption", "table_caption_candidate"}:
return _is_insufficient_table_caption_evidence(block)
return _is_validation_first_table_candidate(block) and _is_insufficient_table_caption_evidence(block)
def _find_table_caption_continuation(caption: dict, structured_blocks: list[dict]) -> dict | None:
"""Find the block immediately after a weak-truncated table caption that
looks like a continuation (stolen as figure_caption or similar)."""
caption_bbox = caption.get("bbox") or [0, 0, 0, 0]
caption_page = caption.get("page")
next_idx = None
for i, block in enumerate(structured_blocks):
if block.get("block_id") == caption.get("block_id"):
if block.get("page") == caption_page and block.get("block_id") == caption.get("block_id"):
next_idx = i + 1
break
if next_idx is None or next_idx >= len(structured_blocks):
@ -153,8 +162,11 @@ def _materialize_table_caption(caption: dict, continuation: dict | None) -> tupl
return caption, consumed_ids
merged = dict(caption)
cont_text = str(continuation.get("text", "") or "")
merged["text"] = (merged.get("text", "") or "") + " " + cont_text
cont_text = str(continuation.get("text", "") or "").strip()
marker_match = _TABLE_PREFIX_PATTERN.match(cont_text)
if marker_match is not None:
cont_text = cont_text[marker_match.end() :].lstrip(" .:-\n\t")
merged["text"] = ((merged.get("text", "") or "").strip() + " " + cont_text).strip()
consumed_ids.append(continuation.get("block_id", ""))
return merged, consumed_ids
@ -173,8 +185,8 @@ def _bare_table_tie_break(score: dict, caption: dict, asset: dict) -> tuple[floa
cb = caption.get("bbox") or [0, 0, 0, 0]
ab = asset.get("bbox") or [0, 0, 0, 0]
x_overlap = min(cb[2], ab[2]) - max(cb[0], ab[0]) if len(cb) >= 4 and len(ab) >= 4 else 0.0
vertical_gap = max(0.0, cb[1] - ab[3]) if len(cb) >= 4 and len(ab) >= 4 else 9999.0
return (float(score.get("score", 0.0)), float(x_overlap), -float(vertical_gap))
below_gap = max(0.0, ab[1] - cb[3]) if len(cb) >= 4 and len(ab) >= 4 else 9999.0
return (float(score.get("score", 0.0)), float(x_overlap), -float(below_gap))
def _score_candidate_assets(
@ -232,6 +244,7 @@ def _table_note_falls_into_page_footnote_prior(
return False
return float(note_bbox[1]) >= float(prior_by_page[page])
def build_table_inventory(structured_blocks: list[dict]) -> dict[str, Any]:
return build_table_inventory_vnext(structured_blocks)
@ -295,8 +308,7 @@ def build_table_inventory_legacy(structured_blocks: list[dict]) -> dict[str, Any
if is_validation_first_candidate and is_weak_truncated:
# Check if same-page table assets exist before holding.
same_page_assets = [
a for i,a in enumerate(assets)
if i not in used_asset_indices and a.get('page',0) == caption_page
a for i, a in enumerate(assets) if i not in used_asset_indices and a.get("page", 0) == caption_page
]
if not same_page_assets:
held_tables.append(
@ -555,8 +567,10 @@ def build_table_inventory_legacy(structured_blocks: list[dict]) -> dict[str, Any
ab = matched_asset.get("bbox") or matched_asset.get("block_bbox") or []
if len(cb) >= 4 and len(ab) >= 4:
_render_bbox = [
min(cb[0], ab[0]), min(cb[1], ab[1]),
max(cb[2], ab[2]), max(cb[3], ab[3]),
min(cb[0], ab[0]),
min(cb[1], ab[1]),
max(cb[2], ab[2]),
max(cb[3], ab[3]),
]
_render_rotation_deg = _rot

View file

@ -151,6 +151,8 @@
},
"consumed_ids_only_in_legacy": [],
"consumed_ids_only_in_vnext": [],
"paper": "24YKLTHQ"
"paper": "24YKLTHQ",
"lost_block_roles": {},
"gained_block_roles": {}
}
}

View file

@ -162,6 +162,8 @@
},
"consumed_ids_only_in_legacy": [],
"consumed_ids_only_in_vnext": [],
"paper": "28JLIHLS"
"paper": "28JLIHLS",
"lost_block_roles": {},
"gained_block_roles": {}
}
}

View file

@ -218,6 +218,8 @@
},
"consumed_ids_only_in_legacy": [],
"consumed_ids_only_in_vnext": [],
"paper": "2HEUD5P9"
"paper": "2HEUD5P9",
"lost_block_roles": {},
"gained_block_roles": {}
}
}

View file

@ -0,0 +1,104 @@
{
"paper": "37LK5T97",
"verdict": "parity",
"diff": {
"legacy_matched_count": 3,
"vnext_matched_count": 3,
"legacy_unresolved_count": 0,
"vnext_unresolved_count": 0,
"legacy_unmatched_legend_count": 0,
"vnext_unmatched_legend_count": 0,
"legacy_consumed_block_ids": [
"10",
"9"
],
"vnext_consumed_block_ids": [
"10",
"9"
],
"legacy_completeness": {
"total": 3,
"accounted_for": 3,
"gap_count": 0,
"details": [
{
"block_id": 2,
"figure_number": 1,
"figure_namespace": "main",
"status": "matched",
"page": 2
},
{
"block_id": 10,
"figure_number": 2,
"figure_namespace": "main",
"status": "matched",
"page": 3
},
{
"block_id": 11,
"figure_number": 3,
"figure_namespace": "main",
"status": "matched",
"page": 12
}
]
},
"vnext_completeness": {
"total_numbered_legends": 3,
"accounted_for": 3,
"gap_count": 0,
"details": [
{
"legend_block_id": "2",
"figure_number": 1,
"status": "matched"
},
{
"legend_block_id": "10",
"figure_number": 2,
"status": "matched"
},
{
"legend_block_id": "11",
"figure_number": 3,
"status": "matched"
}
]
},
"legacy_figure_ids": [
"figure_001",
"figure_002",
"figure_003"
],
"vnext_figure_ids": [
"figure_001",
"figure_002",
"figure_003"
],
"vnext_pass_names": [
"primary_same_page",
"composite_parent",
"sidecar",
"locator_bridge",
"cross_page_reservation",
"cross_page_settlement",
"legend_bundle",
"group_sequential",
"classic_sequential",
"unresolved_cluster",
"final_accounting"
],
"legacy_settlement_types": {
"same_page": 3
},
"vnext_settlement_types": {
"same_page": 3
},
"consumed_ids_only_in_legacy": [],
"consumed_ids_only_in_vnext": [],
"paper": "37LK5T97",
"lost_block_roles": {},
"gained_block_roles": {}
}
}

View file

@ -204,6 +204,8 @@
},
"consumed_ids_only_in_legacy": [],
"consumed_ids_only_in_vnext": [],
"paper": "DWQQK2YB"
"paper": "DWQQK2YB",
"lost_block_roles": {},
"gained_block_roles": {}
}
}

View file

@ -297,6 +297,8 @@
},
"consumed_ids_only_in_legacy": [],
"consumed_ids_only_in_vnext": [],
"paper": "YGH7VEX6"
"paper": "YGH7VEX6",
"lost_block_roles": {},
"gained_block_roles": {}
}
}

View file

@ -0,0 +1 @@
[]

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,236 @@
{
"summary": {
"total_papers": 731,
"papers_with_captions": 712,
"papers_with_figure_map": 8,
"total_caption_blocks": 5822,
"errors": 0
},
"caption_role_breakdown": {
"figure_caption": {
"standard_numeric": 3952,
"unclassified": 376,
"letter_only": 7,
"numeric_alpha": 25,
"supplementary": 1,
"appendix": 1
},
"figure_caption_candidate": {
"unclassified": 1134,
"standard_numeric": 307,
"letter_only": 8,
"numeric_alpha": 4,
"supplementary": 5,
"appendix": 2
}
},
"pattern_distribution": {
"standard_numeric": {
"total": 4259,
"with_figure_map": 44,
"matched_in_inventory": 44,
"unmatched_in_inventory": 0,
"no_figure_map": 4215,
"unmatched_rate": 0.0
},
"supplementary": {
"total": 6,
"with_figure_map": 0,
"matched_in_inventory": 0,
"unmatched_in_inventory": 0,
"no_figure_map": 6,
"unmatched_rate": null
},
"appendix": {
"total": 3,
"with_figure_map": 0,
"matched_in_inventory": 0,
"unmatched_in_inventory": 0,
"no_figure_map": 3,
"unmatched_rate": null
},
"letter_only": {
"total": 15,
"with_figure_map": 0,
"matched_in_inventory": 0,
"unmatched_in_inventory": 0,
"no_figure_map": 15,
"unmatched_rate": null
},
"numeric_alpha": {
"total": 29,
"with_figure_map": 0,
"matched_in_inventory": 0,
"unmatched_in_inventory": 0,
"no_figure_map": 29,
"unmatched_rate": null
},
"box": {
"total": 0,
"with_figure_map": 0,
"matched_in_inventory": 0,
"unmatched_in_inventory": 0,
"no_figure_map": 0,
"unmatched_rate": null
},
"unclassified": {
"total": 1510,
"with_figure_map": 15,
"matched_in_inventory": 0,
"unmatched_in_inventory": 15,
"no_figure_map": 1495,
"unmatched_rate": 1.0
}
},
"examples_by_category": {
"standard_numeric": [
"Figure 1 Measurement of inferior osteophyte (O) and inferior joint distension (JD) on coronal image from magnetic resona",
"Figure 3 shows a flow diagram of study enrollment. Between 2009 and 2014, 126 consecutive patients presented with clinic",
"Figure 2 Compression of supraspinatus on sagittal images from magnetic resonance imaging scans: no contact (A), adjacent",
"Figure 3 Flowchart of study enrollment. AC, acromioclavicular.",
"FIGURE 1: The process of the OCD regeneration in rabbits. A: the OCD were generated by electric drill in the femoral pat"
],
"unclassified": [
"Source: own",
"Source: own",
"Source: own",
"Source: own",
"Source: own"
],
"letter_only": [
"Figure I. Diagram displaying the relationship between level of performance (response) and activity (dose) with performan",
"Figure I. Search algorithm used to identify and screen studies to be included in the review of published literature.",
"Figure I. PEMF modulates AMSC-derived exosomes in the incubator. PEMF = pulsed electromagnetic field; AMSC = adipose tis",
"Figure I. Study flow diagram.",
"Figure I. Schematic diagram of an indirect coupling system to stimulate in vitro cell cultures. (A) Configuration to app"
],
"numeric_alpha": [
"Figure 1A. International Cartilage Repair Society evaluation form showing the grid map of the knee. Published with permi",
"Figure 1B. Anatomical grading of the depth of the cartilage injury according to the International Cartilage Repair Socie",
"Fig. 2AD (A) The inferior bony projection that looks like the heel of a shoe is shown in this diagram. This kind of spu",
"Fig. 3AB (A) The acromial spur is located at the lateral end of the acromion and is congruent with the acromial undersu",
"Fig. 4AC (A) The acromial spur is located at the lateral end of the acromion. It is not congruent with the acromial und"
],
"supplementary": [
"Figure 1a and Figure S2 (Supporting Information) show the fabrication process for the coiled PDA/CNT yarn (CPCY) that is",
"(A) Cells in the HPCS are present across all profiled tumors. Fraction of cells that were mappable (y axis) from each tu",
"Fig. S1. (A) Titration curve in potentiometric titration method. (B) Storage (G') and loss (G\") modulus of CS-2GNP sampl",
"Fig. S2. (A) Macroscopic image of chitosan-stabilized gold nanoparticle (CS-GNP) solution (2% w/v GNP). (B) Transmission",
"Figure S1. $ ^{13} $C NMR spectra (a) P-37, (b) L-37."
],
"appendix": [
"Figure A1. Odds ratios with CIs for the probability of a rotator cuff tear (full model). The bars represent 90% (dark bl",
"Figure A2. Nomogram to predict the probability of a rotator cuff tear (full model). (A) I he values of a predictor varia",
"Figure A3. Calibration curve for the fitted full model. Small vertical lines at the top of the graph denote the frequenc"
]
},
"unmatched_details": {
"unclassified": [
{
"paper_id": "25K5KZAQ",
"text_preview": "NMCH",
"fig_number": null
},
{
"paper_id": "25K5KZAQ",
"text_preview": "BMCH",
"fig_number": null
},
{
"paper_id": "25K5KZAQ",
"text_preview": "BMCH-TSPC",
"fig_number": null
},
{
"paper_id": "82W2IJIP",
"text_preview": "Mechano-iontronic conversion in cartilage",
"fig_number": null
},
{
"paper_id": "PZ8B59K4",
"text_preview": "ROC: receiver operating characteristic",
"fig_number": null
},
{
"paper_id": "PZ8B59K4",
"text_preview": "ROC curve of each trained model",
"fig_number": null
},
{
"paper_id": "UBM39DTB",
"text_preview": "subtypes. F The heat map depicted the relative abundance of DEGs in three tendinopathy subtypes. G Venn diagram of DEGs ",
"fig_number": null
},
{
"paper_id": "UBM39DTB",
"text_preview": "tendinopathy subtypes (Hw, n = 35; Iw, n = 12; Ir, n = 16). G Representative HE images of diseased tendons from the thre",
"fig_number": null
},
{
"paper_id": "UBM39DTB",
"text_preview": "1",
"fig_number": null
},
{
"paper_id": "UBM39DTB",
"text_preview": "signal pathways with characteristic changes. The treatment recommendation is primarily directed towards specific subtype",
"fig_number": null
},
{
"paper_id": "XGT9Z257",
"text_preview": "specificity, PPV and NPV calculated accordingly. d, Sensitivity of four subtypes (TAAD, TBAD, IMH and PAU) of AAS detect",
"fig_number": null
},
{
"paper_id": "XGT9Z257",
"text_preview": "of the box indicate the 25th and 75th percentiles, respectively. The whiskers extend to 1.5 times the interquartile rang",
"fig_number": null
},
{
"paper_id": "XGT9Z257",
"text_preview": "the performance of the original model and the upgraded model, respectively.\ne, Model performance metrics (AUC, accuracy,",
"fig_number": null
},
{
"paper_id": "XGT9Z257",
"text_preview": "(n = 14,436 data samples). The error bars denote the two-sided 95% CI computed from 1,000 bootstrapping iterations. The ",
"fig_number": null
},
{
"paper_id": "XGT9Z257",
"text_preview": "The features extracted from encoder are used for abnormal and normal classification. Decoder A and T are designed for th",
"fig_number": null
}
]
},
"prefix_variant_breakdown": {
"Figure N": 2013,
"Fig. N": 1826,
"Fig N": 70,
"Fig.N (no space)": 28,
"Scheme N": 33,
"Chinese 图 N": 23,
"Figure A (letter only)": 11,
"Figure S.N": 11,
"Fig. S.N": 7,
"Fig. A.N": 7,
"Supplementary Figure": 3,
"Figure A.N": 3,
"Supplemental Figure": 0,
"Suppl. Fig": 0,
"Appendix Figure": 0,
"Fig. A (letter only)": 0
},
"unclassified_sub_patterns": {
"plain_text_no_number": 550,
"short_label_under_5_chars": 276,
"other_unclassified": 581,
"schema_diagram": 61,
"chinese_figure_图": 23,
"fig_N_no_space": 28,
"scheme_N": 33,
"table_label": 13,
"letter_subfigure_labels": 24,
"short_trash_noise": 5
}
}

View file

@ -0,0 +1,382 @@
"""
Scan all 739 papers in the ocr vault for figure caption patterns.
Count each format, cross-reference against figure-map.json inventory,
and report matched/unmatched rates per pattern.
Output: scripts/dev/caption_pattern_analysis.json
"""
import json
import re
import sys
import traceback
from pathlib import Path
from collections import defaultdict, Counter
OCR_ROOT = Path("D:/L/OB/Literature-hub/System/PaperForge/ocr")
# Patterns for classification
# Order matters: more specific patterns first
PATTERNS = [
# ---- Standard numeric ----
("figure_n_numeric", re.compile(
r'\b(?:Figure|Fig\.?)\s+(\d+)\b', re.IGNORECASE
)),
# ---- Supplementary patterns ----
("figure_s_numeric", re.compile(
r'\b(?:Figure|Fig\.?)\s+S(\d+)\b', re.IGNORECASE
)),
("suppl_figure", re.compile(
r'\b(?:Supplementary|Supplemental|Suppl\.?)\s+(?:Figure|Fig\.?)\s*(\d*)\b', re.IGNORECASE
)),
# ---- Appendix patterns ----
("figure_appendix_letter_number", re.compile(
r'\b(?:Figure|Fig\.?)\s+([A-Z])(\d+)\b'
)),
("appendix_figure", re.compile(
r'\b(?:Appendix|Appx\.?|App\.?)\s+(?:Figure|Fig\.?)\s*([A-Z]?\d*)\b', re.IGNORECASE
)),
# ---- Letter-only (no number) ----
("figure_letter_only", re.compile(
r'\b(?:Figure|Fig\.?)\s+([A-Z])\b(?!\s*\d)'
)),
# ---- Figure with alpha suffix (e.g. Figure 1A, Figure 1a) ----
("figure_numeric_alpha", re.compile(
r'\b(?:Figure|Fig\.?)\s+(\d+)([A-Za-z])\b', re.IGNORECASE
)),
# ---- Box (not exactly a figure but some papers use it) ----
("box_pattern", re.compile(
r'\bBox\s+(\d+)\b', re.IGNORECASE
)),
]
# We'll classify captions into these categories
CATEGORIES = [
"standard_numeric", # Figure 1, Fig. 1, Fig 1
"supplementary", # Figure S1, Supplementary Figure 1, Suppl. Fig 1
"appendix", # Figure A1, Appendix Figure 1
"letter_only", # Figure A, Fig. B
"numeric_alpha", # Figure 1A, Figure 2b
"box", # Box 1
"unclassified", # No figure pattern matched
]
def classify_caption(text):
"""Classify a caption text into one of the categories."""
if not text or not text.strip():
return "unclassified", None
stripped = text.strip()
# Try patterns in order; first match wins
for cat, pat in PATTERNS:
m = pat.search(stripped)
if m:
if cat == "figure_n_numeric":
return "standard_numeric", m.group(1)
elif cat in ("figure_s_numeric", "suppl_figure"):
return "supplementary", m.group(0)
elif cat in ("figure_appendix_letter_number", "appendix_figure"):
return "appendix", m.group(0)
elif cat == "figure_letter_only":
return "letter_only", m.group(1)
elif cat == "figure_numeric_alpha":
return "numeric_alpha", m.group(0)
elif cat == "box_pattern":
return "box", m.group(0)
return "unclassified", None
def extract_figure_number(text):
"""Extract best-effort figure label (e.g. '1', 'S1', 'A1', 'A') from text."""
if not text:
return None
stripped = text.strip()
# Figure S1 or Supplementary Figure 1
m = re.search(r'\b(?:Figure|Fig\.?)\s+S(\d+)\b', stripped, re.IGNORECASE)
if m:
return f"S{m.group(1)}"
m = re.search(r'\b(?:Supplementary|Supplemental|Suppl\.?)\s+(?:Figure|Fig\.?)\s*(\d+)', stripped, re.IGNORECASE)
if m:
return f"S{m.group(1)}"
# Figure A1 (letter + number)
m = re.search(r'\b(?:Figure|Fig\.?)\s+([A-Z])(\d+)\b', stripped)
if m:
return f"{m.group(1)}{m.group(2)}"
# Figure 1A (number + alpha suffix)
m = re.search(r'\b(?:Figure|Fig\.?)\s+(\d+)([A-Za-z])\b', stripped, re.IGNORECASE)
if m:
return f"{m.group(1)}{m.group(2).upper()}"
# Figure N (plain number)
m = re.search(r'\b(?:Figure|Fig\.?)\s+(\d+)\b', stripped, re.IGNORECASE)
if m:
return m.group(1)
# Letter only
m = re.search(r'\b(?:Figure|Fig\.?)\s+([A-Z])\b(?!\s*\d)', stripped)
if m:
return m.group(1)
return None
def load_figure_map(paper_dir):
"""Load figure-map.json if it exists. Returns list of figure entries or None."""
figmap_path = paper_dir / "figure-map.json"
if not figmap_path.exists():
return None
try:
with open(figmap_path, "r", encoding="utf-8") as f:
data = json.load(f)
entries = []
for fig in data.get("figures", []):
entries.append({
"number": fig.get("number"),
"label": fig.get("label", ""),
"type": fig.get("type", "main_figure"),
})
for fig in data.get("supplementary_figures", []):
entries.append({
"number": fig.get("number"),
"label": fig.get("label", ""),
"type": "supplementary_figure",
})
return entries
except Exception:
return None
def figure_map_contains(fig_map_entries, fig_number):
"""Check if a figure number exists in the figure map entries."""
if not fig_map_entries or not fig_number:
return False
for entry in fig_map_entries:
if entry["number"] == fig_number:
return True
# Also match by label
label_num = re.search(r'(\d+|[A-Z]\d*)$', entry.get("label", ""))
if label_num and label_num.group(1) == fig_number:
return True
return False
def process_paper(paper_dir):
"""Process a single paper's blocks.structured.jsonl."""
blocks_path = paper_dir / "structure" / "blocks.structured.jsonl"
if not blocks_path.exists():
return None
paper_id = paper_dir.name
captions = []
fig_map = load_figure_map(paper_dir)
try:
with open(blocks_path, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
try:
block = json.loads(line)
except json.JSONDecodeError:
continue
role = block.get("role")
if role not in ("figure_caption", "figure_caption_candidate"):
continue
text = block.get("text", "")
category, matched_pattern = classify_caption(text)
fig_number = extract_figure_number(text)
in_inventory = figure_map_contains(fig_map, fig_number) if fig_map else None
captions.append({
"paper_id": paper_id,
"role": role,
"text_preview": text[:120],
"category": category,
"fig_number": fig_number,
"fig_map_exists": fig_map is not None,
"in_inventory": in_inventory,
})
except Exception as e:
print(f" [WARN] Error reading {paper_id}: {e}", file=sys.stderr)
return None
return captions
def main():
paper_dirs = sorted(OCR_ROOT.glob("*/structure/blocks.structured.jsonl"))
total_papers = len(paper_dirs)
print(f"Found {total_papers} papers with blocks.structured.jsonl", file=sys.stderr)
all_captions = []
papers_with_captions = 0
papers_with_map = 0
papers_with_both = 0
errors = 0
for i, blocks_path in enumerate(paper_dirs):
paper_dir = blocks_path.parent.parent
paper_id = paper_dir.name
if (i + 1) % 50 == 0:
print(f" Progress: {i+1}/{total_papers}...", file=sys.stderr)
result = process_paper(paper_dir)
if result is None:
errors += 1
continue
if result:
papers_with_captions += 1
all_captions.extend(result)
# Check if figure-map exists
fig_map_path = paper_dir / "figure-map.json"
if fig_map_path.exists():
papers_with_map += 1
print(f"\nProcessed: {total_papers} papers", file=sys.stderr)
print(f" Papers with captions: {papers_with_captions}", file=sys.stderr)
print(f" Papers with figure-map.json: {papers_with_map}", file=sys.stderr)
print(f" Total caption blocks: {len(all_captions)}", file=sys.stderr)
print(f" Errors: {errors}", file=sys.stderr)
# ---- Analysis ----
# 1. Distribution by category
cat_counts = Counter(c["category"] for c in all_captions)
cat_with_map = Counter(c["category"] for c in all_captions if c["fig_map_exists"])
# 2. Per-category: matched vs unmatched in inventory
# Only count captions from papers that HAVE a figure-map
cat_matched = Counter()
cat_unmatched = Counter()
cat_without_map = Counter()
for c in all_captions:
cat = c["category"]
if c["fig_map_exists"]:
if c["in_inventory"] is True:
cat_matched[cat] += 1
elif c["in_inventory"] is False:
cat_unmatched[cat] += 1
else:
cat_without_map[cat] += 1 # shouldn't happen since fig_map_exists is True
else:
cat_without_map[cat] += 1
# 3. Detailed breakdown by role
role_cat_counts = defaultdict(Counter)
for c in all_captions:
role_cat_counts[c["role"]][c["category"]] += 1
# 4. Collect examples for each pattern
examples_by_cat = defaultdict(list)
for c in all_captions:
cat = c["category"]
if len(examples_by_cat[cat]) < 5:
examples_by_cat[cat].append(c["text_preview"])
# 5. Detailed unmatched analysis
unmatched_by_cat = defaultdict(list)
for c in all_captions:
if c["fig_map_exists"] and c["in_inventory"] is False:
unmatched_by_cat[c["category"]].append({
"paper_id": c["paper_id"],
"text_preview": c["text_preview"],
"fig_number": c["fig_number"],
})
# Build result
total_with_map = sum(cat_counts.get(c, 0) for c in CATEGORIES if c in cat_matched or c in cat_unmatched)
distribution = {}
for cat in CATEGORIES:
total = cat_counts.get(cat, 0)
matched = cat_matched.get(cat, 0)
unmatched = cat_unmatched.get(cat, 0)
no_map = cat_without_map.get(cat, 0)
with_map = matched + unmatched
distribution[cat] = {
"total": total,
"with_figure_map": with_map,
"matched_in_inventory": matched,
"unmatched_in_inventory": unmatched,
"no_figure_map": no_map,
"unmatched_rate": round(unmatched / with_map, 4) if with_map > 0 else None,
}
result = {
"summary": {
"total_papers": total_papers,
"papers_with_captions": papers_with_captions,
"papers_with_figure_map": papers_with_map,
"total_caption_blocks": len(all_captions),
"errors": errors,
},
"caption_role_breakdown": {
role: dict(counts) for role, counts in sorted(role_cat_counts.items())
},
"pattern_distribution": distribution,
"examples_by_category": dict(examples_by_cat),
"unmatched_details": {
cat: entries[:20] for cat, entries in sorted(unmatched_by_cat.items())
if entries
},
}
output_path = Path("scripts/dev/caption_pattern_analysis.json")
with open(output_path, "w", encoding="utf-8") as f:
json.dump(result, f, indent=2, ensure_ascii=False)
print(f"\nResults saved to {output_path}", file=sys.stderr)
# ---- Print summary to stdout ----
print("\n" + "=" * 70)
print(" CAPTION PATTERN ANALYSIS RESULTS")
print("=" * 70)
print(f" Papers scanned: {total_papers}")
print(f" Papers w/ captions: {papers_with_captions}")
print(f" Papers w/ figure-map:{papers_with_map}")
print(f" Total caption blocks: {len(all_captions)}")
print(f" Errors: {errors}")
print()
# Role breakdown
print(" --- Role Breakdown ---")
for role, counts in sorted(role_cat_counts.items()):
total_role = sum(counts.values())
print(f" {role}: {total_role}")
for cat, cnt in sorted(counts.items()):
print(f" {cat}: {cnt}")
print()
# Pattern distribution
print(" --- Pattern Distribution & Unmatched Rate ---")
print(f" {'Category':<25} {'Total':>8} {'WithMap':>8} {'Matched':>8} {'Unmatched':>8} {'UnmatchRate':>12}")
print(f" {'-'*25} {'-'*8} {'-'*8} {'-'*8} {'-'*8} {'-'*12}")
for cat in CATEGORIES:
d = distribution[cat]
rate_str = f"{d['unmatched_rate']*100:.1f}%" if d['unmatched_rate'] is not None else "N/A"
print(f" {cat:<25} {d['total']:>8} {d['with_figure_map']:>8} {d['matched_in_inventory']:>8} {d['unmatched_in_inventory']:>8} {rate_str:>12}")
# Extra: unclassified examples
if examples_by_cat.get("unclassified"):
print(f"\n --- Sample Unclassified Captions (first 5) ---")
for ex in examples_by_cat["unclassified"][:5]:
print(f" \"{ex}\"")
print("=" * 70)
if __name__ == "__main__":
main()

View file

@ -0,0 +1,58 @@
{
"plain_subtypes": {
"short_alpha_label": 222,
"very_short_trash": 418,
"descriptive_paragraph": 767,
"mislabeled_table": 67,
"subfigure_label": 5,
"box_or_appendix_text": 3
},
"selected_papers": {
"appendix_alpha": [
"2BFG5P6B",
"4CML4K3Y",
"7CIULR7G",
"AH6Q7DLC",
"APNGVIIY",
"BAGSWM3L",
"HXZHMT2Q",
"LCGJ6IMF",
"LJU5RQUB",
"M84CTEM9",
"NSV8KBJY",
"XTUQTWER"
],
"scheme_numeric": [
"3FQYMMXS",
"4ZCBXS4P",
"5CK2JEIS",
"6ZWKUPCU",
"7Q3VTNHT",
"7THZ5Y9G"
],
"fig_nospace": [
"5MAW65YD",
"A6IC2SIK",
"UGA8GFAR"
],
"numeric_alpha": [
"8CCATQE3"
],
"plain_majority": [
"KBLPLRVL",
"P9D6GZ9M",
"KIX7SKXQ",
"XBSC5X2H",
"VAMSAZMG",
"A6IC2SIK"
],
"standard_baseline": [
"NC66N4Q3",
"LISDYT7V",
"S9UMIF83",
"PJBMGVTF",
"Y5KQ4JQ7",
"4IG7M4FI"
]
}
}

View file

@ -0,0 +1,144 @@
{
"audit_date": "2026-07-03",
"vault_papers": 731,
"papers_with_captions": 712,
"total_caption_blocks": 5822,
"caption_format_distribution": {
"standard_numeric": {
"count": 4093,
"pct": 70.3,
"status": "matched OK"
},
"plain_prefix_missing": {
"count": 1343,
"pct": 23.1,
"status": "PARTIAL — some reserved, some body text mislabeled"
},
"unclassified_other": {
"count": 270,
"pct": 4.6,
"status": "not matched, needs per-case check"
},
"scheme_numeric": {
"count": 32,
"pct": 0.5,
"status": "GAP — Scheme prefix not in figure regex"
},
"numeric_alpha_suffix": {
"count": 27,
"pct": 0.5,
"status": "GAP — suffix letter lost, hyphen variants break"
},
"chinese_图": {
"count": 22,
"pct": 0.4,
"status": "GAP — Chinese prefix not in figure regex"
},
"appendix_alpha": {
"count": 14,
"pct": 0.2,
"status": "GAP — alphabetic number prefix not supported"
},
"fig_nospace": {
"count": 10,
"pct": 0.2,
"status": "actually OK — parsed as fig_nospace→matched"
},
"suppl_S_numeric": {
"count": 8,
"pct": 0.1,
"status": "OK — S prefix supported"
},
"suppl_numeric": {
"count": 3,
"pct": 0.1,
"status": "OK — Supplementary prefix supported"
}
},
"vision_verified_gaps": [
{
"gap_id": "GAP-1",
"name": "Scheme N prefix not supported",
"affected_papers": 28,
"affected_captions": 32,
"root_cause": "regex only handles 'Figure'/'Fig.' prefixes",
"location": "ocr_figures.py:_FIGURE_NUMBER_PATTERN (line 14)",
"vision_verified": [
"BL8ABQ2A p2 — Scheme 1 has diagram, reserved with 0 assets"
],
"fix": "add 'Scheme' as recognized prefix option"
},
{
"gap_id": "GAP-2",
"name": "Alphabetic figure number (Figure A1/A2, Fig. A1)",
"affected_papers": 12,
"affected_captions": 14,
"root_cause": "regex uses \\d+ only for number capture, [A-Z] not recognized",
"location": "ocr_figures.py:_FIGURE_NUMBER_PATTERN, _extract_figure_marker (lines 14, 128)",
"vision_verified": [
"M84CTEM9 p8 — Figure A1 caption→image (block 33) not matched as asset",
"M84CTEM9 p9 — Figure A2 caption→nomogram image UNMATCHED",
"AH6Q7DLC — expected appendix pattern, no match"
],
"fix": "extend regex to optional ([A-Z])\\d* after 'Figure ' prefix"
},
{
"gap_id": "GAP-3",
"name": "Subfigure alphabetic suffix with hyphen (Fig. 2-A, Figs. 2-A through 2-D)",
"affected_papers": 14,
"affected_captions": 27,
"root_cause": "hyphen + letter suffix causes partial match or doubles",
"location": "ocr_figures.py:_FIGURE_NUMBER_PATTERN",
"vision_verified": [
"VAMSAZMG p4 — Fig. 2-A through 2-D caption UNMATCHED, Fig. 2-C duplicated"
],
"fix": "add hyphen+letter optional suffix as subfigure indicator"
},
{
"gap_id": "GAP-4",
"name": "Chinese 图 prefix not supported",
"affected_papers": 2,
"affected_captions": 22,
"root_cause": "regex doesn't include Chinese '图' prefix",
"location": "ocr_figures.py:_FIGURE_NUMBER_PATTERN",
"fix": "add '图' as recognized prefix"
},
{
"gap_id": "GAP-5",
"name": "Descriptive/plain-text captions misclassified as figure_caption",
"affected_papers": 374,
"affected_captions": 1343,
"root_cause": "67% (descriptive paragraphs + short_trash) are NOT figures — role classifier over-assigns figure_caption_candidate",
"subtypes": {
"descriptive_paragraph_not_figure": {
"count": 767,
"pct_of_category": 57.1
},
"very_short_trash": {
"count": 418,
"pct_of_category": 31.1
},
"short_alpha_label_subfigure": {
"count": 222,
"pct_of_category": 16.5
},
"mislabeled_table": {
"count": 67,
"pct_of_category": 5.0
}
}
}
],
"baseline_performance": {
"standard_numeric_papers": {
"matched": "~679 papers, ~4093 captions",
"verified": "NC66N4Q3 (26 fig, 52 assets) — all correct"
},
"fig_nospace": {
"matched": "all 5 captions in 5MAW65YD OK",
"verified": "regex actually handles no-space variant"
},
"summary": "Standard Figure N / Fig. N format works correctly for all 4093 cases across 679 papers"
},
"total_impact_estimate": "~50-80 figures with real content (caption + image) not matched across 731 papers, primarily from GAP-1 (Scheme, 28 papers) and GAP-2 (appendix alpha, 12 papers)"
}

View file

@ -0,0 +1,280 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,Review,"[121, 80, 180, 103]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,doc_title,Articular Cartilage Injury in Athletes,"[119, 131, 746, 171]",paper_title,0.8,"[""page-1 zone title_zone: Articular Cartilage Injury in Athletes""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,2,text,"Timothy R. McAdams $ ^{1} $, Kai Mithoefer $ ^{2} $, Jason M. Scopp $ ^{3} $, and Bert R. Mandelbaum $ ^{4} $
Cartilage
1(3) 165179
©The Author(s) 2010
Reprints and permission:
sagepub.com/journalsPe","[118, 237, 744, 297]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Timothy R. McAdams $ ^{1} $, Kai Mithoefer $ ^{2} $, Jason M""]",frontmatter_noise,0.8,body_zone,reference_like,citation_line,False,False
1,3,text,,"[886, 113, 1104, 261]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,frontmatter_main_zone,support_like,empty,True,True
1,4,paragraph_title,Abstract,"[119, 362, 212, 386]",abstract_heading,0.95,"[""abstract heading""]",abstract_heading,0.95,frontmatter_main_zone,heading_like,short_fragment,True,True
1,5,abstract,"Articular cartilage lesions in the athletic population are observed with increasing frequency and, due to limited intrinsic healing capacity, can lead to progressive pain and functional limitation ove","[117, 392, 1110, 611]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,6,paragraph_title,Keywords,"[120, 643, 219, 667]",structured_insert,0.9,"[""frontmatter noise: Keywords""]",frontmatter_noise,0.9,frontmatter_main_zone,heading_like,short_fragment,False,False
1,7,text,"microfracture, cartilage repair, sports injury","[119, 673, 478, 699]",frontmatter_noise,0.7,"[""keyword-like block: microfracture, cartilage repair, sports injury""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,8,paragraph_title,Introduction,"[120, 785, 268, 810]",section_heading,0.9,"[""explicit scholarly heading: Introduction""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
1,9,text,"Articular cartilage defects of the knee are frequently observed. Curl and coworkers described 53,569 hyaline cartilage lesions in 19,827 patients undergoing knee arthroscopy. $ ^{24} $ Similarly, a re","[117, 831, 603, 1383]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,10,text,"Due to their documented poor spontaneous repair potential, injuries to the articular cartilage surfaces present a therapeutic challenge particularly in young and active individuals. $ ^{18,19,57} $ Re","[118, 1384, 603, 1433]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,11,text,,"[626, 782, 1112, 1194]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,frontmatter_main_zone,support_like,empty,True,True
1,12,footnote," $ ^{1} $Department of Orthopaedic Surgery, Stanford University, Palo Alto, CA
$ ^{2} $Harvard Vanguard Orthopedics and Sports Medicine, Brigham and Women's Hospital, Harvard Medical School, Boston, ","[627, 1207, 1106, 1330]",footnote,0.7,"[""footnote label: $ ^{1} $Department of Orthopaedic Surgery, Stanford Universi""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,13,footnote,"Corresponding Author:
Timothy R. McAdams, Stanford University, 450 Broadway Street,
Redwood City, CA 94063
Email: tmcadams@stanford.edu","[627, 1347, 1052, 1429]",frontmatter_support,0.75,"[""page-1 correspondence footnote: Corresponding Author:\nTimothy R. McAdams, Stanford Universit""]",frontmatter_support,0.75,body_zone,body_like,none,True,True
2,0,number,166,"[98, 82, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,header,Cartilage I(3),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,2,text,athletic level is the most important parameter for outcome evaluation from articular cartilage restoration in this challenging population.,"[92, 144, 576, 219]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,3,paragraph_title,Natural History,"[94, 252, 281, 278]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Natural History""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,4,text,"The limited ability of articular cartilage for spontaneous repair has been well documented. $ ^{[18,137]} $ Following the acute injury and resultant tissue necrosis, the lack of vascularization of art","[92, 288, 578, 649]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,5,text,"While much knowledge has been gained from laboratory studies about the progression from cartilage injury to osteoarthritis, prospective clinical information about the natural history of articular cart","[91, 647, 578, 1442]",affiliation,0.8,"[""page-1 zone affiliation_zone: While much knowledge has been gained from laboratory studies""]",affiliation,0.8,body_zone,body_like,none,True,True
2,6,image,,"[614, 152, 1078, 467]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,7,figure_title,Figure I. Diagram displaying the relationship between level of performance (response) and activity (dose) with performance and cartilage injury.,"[602, 479, 1085, 546]",figure_caption,0.85,"[""figure_title label: Figure I. Diagram displaying the relationship between level ""]",figure_caption,0.85,,reference_like,citation_line,True,True
2,8,text,increased risk for arthritic joint degeneration is felt to result from the high joint stresses associated with the repetitive joint impact and torsional loading seen with the rapid deceleration motion,"[600, 599, 1086, 723]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,9,paragraph_title,Chondropenia,"[603, 756, 772, 783]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Chondropenia""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,10,text,"The increased risk for development of knee osteoarthritis in athletes is well documented, particularly at the elite level. $ ^{28,30,32,70,118,119} $ Intact articular cartilage possesses optimal load-","[600, 791, 1087, 1442]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,0,header,McAdams et al.,"[121, 82, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,1,number,167,"[1075, 81, 1110, 104]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,2,text,of articular cartilage function and may ultimately progress to osteoarthritis.,"[117, 154, 601, 201]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,3,text,"Commonly used classification systems for cartilage injury include the Outerbridge and International Cartilage Repair Society (ICRS). $ ^{56,105} $ These classification systems are based on size and de","[117, 202, 604, 589]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,4,paragraph_title,Diagnosis,"[119, 621, 236, 649]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Diagnosis""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
3,5,text,"Diagnosis of articular cartilage lesions can be achieved by a combination of history, clinical examination, and radiographic/magnetic resonance evaluation. A high index of suspicion is important in pa","[117, 657, 604, 1382]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,paragraph_title,Nutritional Supplements and Viscosupplementation,"[627, 154, 963, 211]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Nutritional Supplements and Viscosupplementation""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
3,7,text,"Nutritional supplements have received much recent interest as both a way to prevent cartilage injury and limit its progression. $ ^{23,41} $ However, most of the literature on nutritional supplements ","[626, 225, 1112, 468]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,8,paragraph_title,Glucosamine and Chondroitin,"[628, 502, 902, 528]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Glucosamine and Chondroitin""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
3,9,text,"After publication of The Arthritis Cure in 1997, glucosamine has been the center of much attention and controversy. $ ^{133} $ Glucosamine has been found to be safe and effective in meta-analysis stud","[626, 537, 1112, 922]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,10,text,"Viscosupplementation, like nutritional supplements, has become a popular treatment option for osteoarthritis of the knee. A series of 3 to 5 injections of hyaluronic acid, hylan, or hyaluronan may be ","[626, 922, 1112, 1382]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,0,number,168,"[98, 82, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,header,Cartilage I(3),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,2,figure_title,Table I. Chondropenia Severity Score (CSS) Is Graded 0 to 100 and Involves Assessment of Meniscus Injury as well as Size and Number of Cartilage Lesions,"[93, 146, 878, 191]",table_caption,0.9,"[""table prefix matched: Table I. Chondropenia Severity Score (CSS) Is Graded 0 to 10""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
4,3,table,"<table><tr><td colspan=""2"">PATELLOFEMORAL</td><td colspan=""2"">MEDIAL COMPARTMENT</td><td colspan=""2"">LATERAL COMPARTMENT</td></tr><tr><td>Patella</td><td></td><td>MFC</td><td></td><td>LFC</td><td></td","[106, 229, 1072, 1270]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
4,4,text,"Patient Name: ___
Index Knee: ___","[107, 1296, 563, 1327]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,5,text,,"[582, 1297, 961, 1327]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,6,text,Dob:___,"[106, 1352, 462, 1383]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
5,0,header,McAdams et al.,"[121, 82, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,1,number,169,"[1076, 81, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,2,paragraph_title,Treatment,"[121, 146, 251, 172]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Treatment""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
5,3,text,"Historically, surgical attempts at cartilage repair involved stimulation of mesenchymal stem cell metaplasia to form fibrocartilage. This is done by lavage, debridement, drilling, or microfracture, al","[117, 192, 604, 507]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,4,image,,"[636, 148, 1108, 456]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
5,5,figure_title,Figure 2. Clinical algorithm for management of articular lesions in athletes.,"[627, 466, 1110, 509]",figure_caption,0.92,"[""figure_title label: Figure 2. Clinical algorithm for management of articular les""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,6,image,,"[152, 608, 1046, 1309]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,7,figure_title,"Figure 3. Microfracture technique for articular cartilage repair with debridement of cartilage margins (A), removal of calcified cartilage (B), and systematic distribution of microfractures of the sub","[116, 1324, 1109, 1427]",figure_caption,0.92,"[""figure_title label: Figure 3. Microfracture technique for articular cartilage re""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,0,number,170,"[97, 81, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,header,Cartilage I(3),"[973, 80, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,2,paragraph_title,Cartilage Repair: Mesenchymal Stem Cell Stimulation,"[94, 145, 573, 174]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Cartilage Repair: Mesenchymal Stem Cell Stimulation""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
6,3,text,"Reports of mesenchymal stem cell stimulation first occurred in 1946 when Magnusson $ ^{77} $ described debridement of injured hyaline cartilage. Subsequent reports described abrasion, drilling, and mi","[93, 192, 577, 360]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,4,text,"The microfracture technique has been well described $ ^{91,92} $ and involves debridement through the calcified cartilage layer followed by perforation of the subchondral bone with arthroscopic surgic","[92, 359, 577, 720]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,5,text,"Initial studies showed good early clinical results that tended to deteriorate with time. $ ^{39} $ Recently, Steadman measured functional outcomes in 71 knees after microfracture, and clinical improve","[92, 720, 577, 1008]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,6,text,"Microfracture is an appealing option in the treatment of articular cartilage injury because it is relatively simple with minimal morbidity. It appears best suited for young patients with acute, smalle","[92, 1009, 577, 1203]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,7,paragraph_title,Cartilage Replacement: Substitution Replacement Options,"[94, 1235, 420, 1290]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Cartilage Replacement: Substitution Replacement Options""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
6,8,text,"Segmental fresh allograft replacement of osteochondral defects was first reported by Lexar in 1908. $ ^{74} $ Additional studies showed good to excellent results in 75% to 86% of patients, but the ris","[93, 1295, 577, 1442]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,9,image,,"[662, 160, 1027, 1070]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,10,figure_title,Figure 4. Technique of mosaicplasty using osteochondral cylinder harvest from the peripheral trochlea and press-fit insertion into the cartilage defect in a mosaic pattern with recreation of the condy,"[602, 1089, 1085, 1176]",figure_caption,0.92,"[""figure_title label: Figure 4. Technique of mosaicplasty using osteochondral cyli""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,11,text,"More recently, osteochondral autograft transplantation surgery (OATS), or “mosaicplasty,” has been utilized for small, 1- to 2-cm lesions. In this technique, the osteochondral autograft cylindrical pl","[600, 1224, 1086, 1443]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,0,header,McAdams et al.,"[121, 82, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,1,number,171,"[1075, 81, 1108, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,2,text,trauma at the graft and recipient edges can lead to lack of peripheral integration with persistent gap formation. $ ^{53} $,"[118, 144, 603, 192]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,3,text,The surgical technique was described by Hangody and can be accomplished through a mini-arthrotomy or arthroscopically $ ^{48} $ (Fig. 4). The graft diameter can be varied to optimize defect filling an,"[118, 193, 603, 527]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,4,text,"Rabbit and goat model studies show evidence of preservation of chondral viability with osteochondral autograft transfer. $ ^{70,100} $ Clinical studies are optimistic as well. $ ^{7,21,44,47,84} $ In ","[117, 527, 603, 1129]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,5,text,Options for cartilage transplantation in larger defects include cartilage slurry and osteochondral allograft transplantation. Stone $ ^{132} $ reported significant improvement in pain and function aft,"[117, 1129, 603, 1443]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,6,text,,"[626, 143, 1112, 530]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,7,paragraph_title,Cartilage Regeneration: Cell/Biologic Implantation,"[627, 564, 1077, 591]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Cartilage Regeneration: Cell/Biologic Implantation""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
7,8,text,"Since 1976, investigators have attempted to transplant periochondrium to stimulate production of articular cartilage. $ ^{52,124} $ However, two thirds of the grafts underwent endochondral ossificatio","[627, 599, 1112, 1056]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,9,text,Recent studies support ACI in athletes with large articular cartilage lesions (Fig. 6). Mithöfer $ ^{95} $ in 2005 reported 72% good to excellent results with ACI in 45 soccer players with a mean defe,"[627, 1057, 1113, 1441]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,0,number,172,"[97, 81, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,header,Cartilage I(3),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,2,image,,"[108, 161, 555, 1082]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,3,figure_title,Figure 5. Technique of mosaicplasty using osteochondral cylinder harvest from the peripheral trochlea (A) and press-fit insertion into the cartilage defect in a mosaic pattern with recreation of the c,"[94, 1104, 576, 1187]",figure_caption,0.92,"[""figure_title label: Figure 5. Technique of mosaicplasty using osteochondral cyli""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,4,vision_footnote,"Source: Hangody L, Ráthonyi GK, Duska Z, et al. Autologous osteochondral mosaicplasty. Surgical technique. J Bone Joint Surg Am. 2004;86:65-72. Reprinted with publisher permission (http://www.ejbjs.or","[95, 1188, 576, 1245]",footnote,0.7,"[""vision_footnote label: Source: Hangody L, R\u00e1thonyi GK, Duska Z, et al. Autologous o""]",footnote,0.7,body_zone,body_like,none,True,True
8,5,text,"ACI has recently been compared to both debridement and mosaicplasty. Fu compared ACI to debridement in 2005. $ ^{36} $ In this study, patients who underwent ACI obtained higher levels of knee function","[92, 1320, 577, 1441]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,6,text,,"[601, 144, 1086, 383]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
8,7,text,ACI provides an autologous source of hyaline-like tissue and can be used in larger lesions with no donor-site morbidity. The stiffness of ACI hyaline-like tissue (2.77 N) more closely approximates hya,"[601, 384, 1085, 552]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,8,text,"The negative aspects of ACI include technical difficulty, requires a staged procedure, and potential cost/reimbursement issues. One of the main technical challenges is the periosteal flap, and problem","[600, 552, 1086, 889]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,9,text,"In an attempt to limit the hypertrophy that occurs during redifferentiation, alternatives to the periosteal flap have evolved. In this way, no incision is necessary to harvest the periosteum, and the ","[600, 889, 1086, 1057]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,10,text,"Rather than simply altering the cultured chondrocyte cover, the latest techniques involve a biodegradable matrix seeded with chondrocytes to cover the defect (“matrix articular cartilage implantation,","[600, 1058, 1086, 1442]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,0,header,McAdams et al.,"[121, 81, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,1,number,173,"[1075, 81, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,2,image,,"[128, 167, 1094, 1244]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,3,figure_title,Figure 6. Case study of a high-impact athlete treated with autologous chondrocyte transplantation (A). Image taken 4 months after injury for a full-thickness lesion of the weightbearing femoral condyl,"[117, 1269, 1109, 1382]",figure_caption,0.92,"[""figure_title label: Figure 6. Case study of a high-impact athlete treated with a""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,4,vision_footnote,"Source: 6A reproduced with permission from Genzyme Biosurgery, Cambridge, MA.","[121, 1374, 603, 1394]",footnote,0.7,"[""vision_footnote label: Source: 6A reproduced with permission from Genzyme Biosurger""]",footnote,0.7,body_zone,body_like,none,True,True
10,0,number,174,"[97, 81, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,1,header,Cartilage I(3),"[972, 80, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,2,text,"12 months showed evidence of hyaline-like tissue, but this was not quantified. MRI at 6 and 12 months showed good defect filling.","[93, 144, 576, 216]",body_paragraph,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,,reference_like,reference_numeric_dot,True,True
10,3,text,"Bartlett compared porcine collagen membraneACI to porcine collagen biomatrixACI. $ ^{8} $ In 91 patients, both groups showed improvement in Cincinnati Knee Score at 1 year. The 2 techniques showed c","[92, 218, 577, 482]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,4,paragraph_title,Rehabilitation after Cartilage Reconstitution Procedures,"[93, 515, 429, 569]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Rehabilitation after Cartilage Reconstitution Procedures""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
10,5,text,"Little is known about the optimal rehabilitation protocols after cartilage reconstitution procedures. The phases of rehabilitation in cartilage reconstitution are proliferative, transitional, remodeli","[92, 575, 577, 940]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,6,paragraph_title,Future Directions,"[94, 971, 301, 998]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Future Directions""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
10,7,text,"The future of articular cartilage reconstitution lies in regeneration of tissue. At this time, regeneration involves collecting and culturing chondrocytes with subsequent reimplantation, using a varie","[92, 1008, 577, 1248]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,8,text,"Based on currently available repair technologies, new approaches are being evaluated that may help to improve quality and quantity of the repair cartilage tissue and overcome the current technical and","[91, 1248, 577, 1420]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,9,text,,"[601, 144, 1087, 432]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
10,10,text,"Stem cells have the potential to differentiate into chondrocytes under appropriate conditions, potentially with improved cell viability, and are at the forefront of articular cartilage regeneration in","[600, 432, 1087, 964]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,11,paragraph_title,Concomitant Procedures,"[602, 996, 896, 1021]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Concomitant Procedures""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
10,12,text,"Combined pathology is frequently encountered by the surgeon treating articular cartilage defects in the athletic knee. Malalignment, ligamentous instability, or meniscal injury and deficiency are know","[600, 1034, 1086, 1418]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,0,header,McAdams et al.,"[122, 82, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,1,number,175,"[1076, 82, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,2,text,"because performing simultaneous adjuvant procedures in the athletic population avoids the prolonged rehabilitation and absence from competition associated with staged procedures, which has been shown ","[119, 145, 601, 265]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,3,paragraph_title,Summary,"[120, 301, 239, 327]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Summary""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
11,4,text,Articular cartilage repair in athletes is aimed at returning the athlete to the preinjury level of athletic participation without increased risk for long-term arthritic degeneration. Nutritional suppl,"[119, 337, 602, 890]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,5,paragraph_title,Declaration of Conflicting Interests,"[120, 906, 456, 929]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Declaration of Conflicting Interests""]",backmatter_boundary_candidate,0.5,body_zone,heading_like,none,True,True
11,6,text,The authors declared no potential conflicts of interest with respect to the authorship and/or publication of this article.,"[120, 938, 600, 985]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,7,paragraph_title,Funding,"[121, 1002, 203, 1025]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Funding""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
11,8,text,The authors received no financial support for the research and/or authorship of this article.,"[120, 1034, 600, 1080]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,9,paragraph_title,References,"[121, 1098, 230, 1120]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
11,10,reference_content,"1. Ahmad CS, Cohen ZA, Levine WN, Ateshian GA, Mow VC. Biomechanical and topographic considerations for autologous osteochondral grafting in the knee. Am J Sports Med. 2001;29:201-6.","[132, 1131, 599, 1199]",reference_item,0.85,"[""reference content label: 1. Ahmad CS, Cohen ZA, Levine WN, Ateshian GA, Mow VC. Biome""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,11,reference_content,"2. Alford JW, Cole BJ. Cartilage restoration, part 2: techniques, outcomes, and future directions. Am J Sports Med. 2005;33:443-60.","[131, 1203, 597, 1270]",reference_item,0.85,"[""reference content label: 2. Alford JW, Cole BJ. Cartilage restoration, part 2: techni""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,12,reference_content,"3. Alford JW, Cole BJ. Cartilage restoration, part I: basic science, historical perspective, patient evaluation, and treatment options. Am J Sports Med. 2005;33:295-306.","[132, 1275, 599, 1343]",reference_item,0.85,"[""reference content label: 3. Alford JW, Cole BJ. Cartilage restoration, part I: basic ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,13,reference_content,"4. Arendt E, Dick R. Knee injury patterns among men and women in collegiate basketball and soccer: NCAA data and review of literature. Am J Sports Med. 1995;23:694-701.","[131, 1349, 600, 1414]",reference_item,0.85,"[""reference content label: 4. Arendt E, Dick R. Knee injury patterns among men and wome""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,14,reference_content,"5. Aroen A, Loken S, Heir S, Alvik E, Ekland A, Granlund OG, Engebretsen L. Articular cartilage lesions in 993 consecutive knee arthroscopies. Am J Sports Med. 2004;32:211-5.","[640, 147, 1109, 215]",reference_item,0.85,"[""reference content label: 5. Aroen A, Loken S, Heir S, Alvik E, Ekland A, Granlund OG,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,15,reference_content,"6. Arokoski J, Kiviranta I, Jurvelin J, Tammin M, Helminen HJ. Long-distance running causes site-dependent decrease of cartilage glycosaminoglycan content in the knee joint of beagle dogs. Arthritis R","[640, 219, 1109, 311]",reference_item,0.85,"[""reference content label: 6. Arokoski J, Kiviranta I, Jurvelin J, Tammin M, Helminen H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,16,reference_content,"7. Barber FA, Chow JCY. Arthroscopic chondral osseous autograft transplantation (COR Procedure) for femoral defects. Arthroscopy. 2006;22:10-6.","[641, 316, 1108, 382]",reference_item,0.85,"[""reference content label: 7. Barber FA, Chow JCY. Arthroscopic chondral osseous autogr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,17,reference_content,"8. Bartlett W, Skinner JA, Gooding CR, Carrington RW, Flanagan AM, Briggs TW, Bentley G. Autologous chondrocyte implantation versus matrix-induced autologous chondrocyte implantation for osteochondral","[640, 387, 1109, 502]",reference_item,0.85,"[""reference content label: 8. Bartlett W, Skinner JA, Gooding CR, Carrington RW, Flanag""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,18,reference_content,"9. Bartz RL, Laudicina L. Osteoarthritis after sports knee injuries. Clin Sports Med. 2005;24:39-45.","[639, 507, 1108, 551]",reference_item,0.85,"[""reference content label: 9. Bartz RL, Laudicina L. Osteoarthritis after sports knee i""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,19,reference_content,"10. Bartz RL, Kamaric E, Noble PC, Lintner D, Bocell J. Topographic matching of selected donor and recipient sites for osteochondral autografting of the articular surface of the femoral condyles. Am J","[634, 555, 1109, 647]",reference_item,0.85,"[""reference content label: 10. Bartz RL, Kamaric E, Noble PC, Lintner D, Bocell J. Topo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,20,reference_content,"11. Behrens P, Bitter T, Kurz B, Russlies M. Matrix-associated autologous chondrocyte transplantation/implantation (MACT/MACI): 5-year follow-up. Knee. 2006;13:194-202.","[633, 651, 1109, 719]",reference_item,0.85,"[""reference content label: 11. Behrens P, Bitter T, Kurz B, Russlies M. Matrix-associat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,21,reference_content,"12. Bentley G, Biant LC, Carrington RW, Akmal M, Goldberg A, Williams AM, et al. A prospective, randomised comparison of autologous chondrocyte implantation versus mosaicplasty for osteochondral defec","[633, 723, 1110, 837]",reference_item,0.85,"[""reference content label: 12. Bentley G, Biant LC, Carrington RW, Akmal M, Goldberg A,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,22,reference_content,"13. Benya PD, Schaffer JD. Dedifferentiated chondrocytes reexpress the differentiated collagen phenotype when cultured in agarose gels. Cell. 1982;30:215-24.","[633, 843, 1109, 911]",reference_item,0.85,"[""reference content label: 13. Benya PD, Schaffer JD. Dedifferentiated chondrocytes ree""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,23,reference_content,"14. Blevins FT, Steadman JR, Rodrigo JJ, Silliman J. Treatment of articular cartilage defects in athletes: an analysis of functional outcome and lesion appearance. Orthopedics. 1998;21:761-8.","[633, 916, 1110, 983]",reference_item,0.85,"[""reference content label: 14. Blevins FT, Steadman JR, Rodrigo JJ, Silliman J. Treatme""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,24,reference_content,"15. Borazjani BH, Chen AC, Bae WC, Patil S, Sah RL, et al. Effect of impact on chondrocyte viability during insertion of human osteochondral grafts. J Bone Joint Surg. 2006;88:1934-43.","[633, 988, 1110, 1077]",reference_item,0.85,"[""reference content label: 15. Borazjani BH, Chen AC, Bae WC, Patil S, Sah RL, et al. E""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,25,reference_content,"16. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O, Peterson L. Treatment of deep cartilage defects in the knee with autologous chondrocyte transplantation. N Engl J Med. 1994;331:889-95.","[634, 1083, 1109, 1174]",reference_item,0.85,"[""reference content label: 16. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,26,reference_content,"17. Brown WE, Potter HG, Marx RG, Wickiewicz TL, Warren RF. Magnetic resonance imaging appearance of cartilage repair in the knee. Clin Orthop. 2004;422:214-23.","[633, 1180, 1108, 1247]",reference_item,0.85,"[""reference content label: 17. Brown WE, Potter HG, Marx RG, Wickiewicz TL, Warren RF. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,27,reference_content,"18. Buckwalter JA, Mankin HJ. Articular cartilage. Part II: degeneration and osteoarthrosis, repair, regeneration, and transplantation. J Bone Joint Surg Am. 1997;79:612-32.","[633, 1252, 1108, 1318]",reference_item,0.85,"[""reference content label: 18. Buckwalter JA, Mankin HJ. Articular cartilage. Part II: ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,28,reference_content,19. Buckwalter JA. Evaluating methods for restoring cartilaginous articular surfaces. Clin Orthop. 1999;367S:S224-38.,"[633, 1323, 1108, 1367]",reference_item,0.85,"[""reference content label: 19. Buckwalter JA. Evaluating methods for restoring cartilag""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
11,29,reference_content,"20. Campbell J, Bellamy N, Gee T. Differences between systematic reviews/meta-analyses of hyaluronic acid/hyaluronan/","[630, 1372, 1110, 1415]",reference_item,0.85,"[""reference content label: 20. Campbell J, Bellamy N, Gee T. Differences between system""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,0,number,176,"[98, 82, 132, 103]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,1,header,Cartilage I(3),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,2,reference_content,hylan in osteoarthritis of the knee. Osteoarthritis Cartilage. 2007;15:1424-36.,"[122, 147, 573, 190]",reference_item,0.85,"[""reference content label: hylan in osteoarthritis of the knee. Osteoarthritis Cartilag""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
12,3,reference_content,"21. Chow JCY, Hantes ME, Houle JB, Zalavras CG. Arthroscopic autogenous osteochondral transplantation for treating knee cartilage defects: a 2- to 5-year follow-up study. Arthroscopy. 2004;20:681-90.","[97, 194, 573, 286]",reference_item,0.85,"[""reference content label: 21. Chow JCY, Hantes ME, Houle JB, Zalavras CG. Arthroscopic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,4,reference_content,"22. Church S, Keating JF. Reconstruction of the anterior cruciate ligament: timing of surgery and the incidence of meniscal tears and degenerative change. J Bone Joint Surg. 2005;87:1639-42.","[97, 290, 573, 381]",reference_item,0.85,"[""reference content label: 22. Church S, Keating JF. Reconstruction of the anterior cru""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,5,reference_content,23. Clark KL. Nutritional considerations in joint health. Clin Sports Med. 2007;26:101-18.,"[97, 386, 574, 432]",reference_item,0.85,"[""reference content label: 23. Clark KL. Nutritional considerations in joint health. Cl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,6,reference_content,"24. Curl WW, Krome J, Gordon E, Rushing J, Smith BP, Poehling GG. Cartilage injuries: a review of 31516 knee arthroscopies. Arthroscopy. 1997;13:456-60.","[97, 435, 573, 502]",reference_item,0.85,"[""reference content label: 24. Curl WW, Krome J, Gordon E, Rushing J, Smith BP, Poehlin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,7,reference_content,"25. Ding C, Cicuttini F, Scott F, Cooley H, Boon C, Jones G. Natural history of knee cartilage defects and factors affecting change. Arch Int Med. 2006;166:651-8.","[97, 507, 573, 574]",reference_item,0.85,"[""reference content label: 25. Ding C, Cicuttini F, Scott F, Cooley H, Boon C, Jones G.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,8,reference_content,"26. Dragoo JL, Carlson G, McCormick F, Khan-Farooqi, Zhu M, Zuk PA, et al. Healing full-thickness cartilage defects using adipose-derived stem cells. Tissue Engineering. 2007;13:1-7.","[97, 578, 574, 647]",reference_item,0.85,"[""reference content label: 26. Dragoo JL, Carlson G, McCormick F, Khan-Farooqi, Zhu M, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,9,reference_content,"27. Dragoo JL, Samimi B, Zhu M, Hame SL, Thomas BJ, Lieberman JR, et al. Tissue-engineered cartilage and bone using stem cells from human infrapatellar fat pads. J Bone Joint Surg. 2003;85:740-7.","[97, 651, 575, 742]",reference_item,0.85,"[""reference content label: 27. Dragoo JL, Samimi B, Zhu M, Hame SL, Thomas BJ, Lieberma""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,10,reference_content,"28. Drawer S, Fuller CW. Propensity for osteoarthritis and lower limb joint pain in retired professional soccer players. Br J Sports Med. 2001;35:402-8.","[97, 746, 575, 815]",reference_item,0.85,"[""reference content label: 28. Drawer S, Fuller CW. Propensity for osteoarthritis and l""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,11,reference_content,"29. Drongowski RA, Coran AG, Woitys EM. Predictive value of meniscal and chondral injuries in conservatively treated anterior cruciate ligament injuries. Arthroscopy. 1994;10:97-102.","[97, 819, 575, 887]",reference_item,0.85,"[""reference content label: 29. Drongowski RA, Coran AG, Woitys EM. Predictive value of ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,12,reference_content,"30. Engstrom B, Forssblad M, Johansson C, Tornkvist H. Does a major knee injury definitely sideline an elite soccer player? Am J Sports Med. 1990;18:101-5.","[97, 891, 573, 958]",reference_item,0.85,"[""reference content label: 30. Engstrom B, Forssblad M, Johansson C, Tornkvist H. Does ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,13,reference_content,"31. Erggelet C, Sittinger M, Lahm A. The arthroscopic implantation of autologous chondrocytes for the treatment of full-thickness cartilage defects of the knee joint. Arthroscopy. 2003;19:108-10.","[97, 962, 573, 1053]",reference_item,0.85,"[""reference content label: 31. Erggelet C, Sittinger M, Lahm A. The arthroscopic implan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,14,reference_content,32. Felson DT. Osteoarthritis: new insights. Part 1: the disease and its risk factors. Ann Intern Med. 2000;133:635-46.,"[96, 1059, 574, 1103]",reference_item,0.85,"[""reference content label: 32. Felson DT. Osteoarthritis: new insights. Part 1: the dis""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,15,reference_content,"33. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongialization: a new treatment for diseased patellae. Clin Orthop. 1979;144:74-83.","[98, 1107, 573, 1174]",reference_item,0.85,"[""reference content label: 33. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongializati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,16,reference_content,"34. Figueroa D, Calvo R, Vaisman A, Carrasco MA, Moraga C, Delgado I. Knee chondral lesions: incidence and correlation between arthroscopic and magnetic resonance findings. Arthroscopy. 2007;23:312-5.","[97, 1179, 573, 1270]",reference_item,0.85,"[""reference content label: 34. Figueroa D, Calvo R, Vaisman A, Carrasco MA, Moraga C, D""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,17,reference_content,"35. Frisbie DD, Morisset S, Ho C, Rodkey WG, Steadman JR, McIlwraith CW. Effects of calcified cartilage on healing of chondral defects treated with microfracture in horses. Am J Sports Med. 2006;34:18","[98, 1275, 575, 1367]",reference_item,0.85,"[""reference content label: 35. Frisbie DD, Morisset S, Ho C, Rodkey WG, Steadman JR, Mc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,18,reference_content,"36. Fu FH, Zurakowski D, Browne JE, Mandelbaum B, Erggelet C, Moseley JB JR, et al. Autologous chondrocyte implantation","[97, 1371, 574, 1416]",reference_item,0.85,"[""reference content label: 36. Fu FH, Zurakowski D, Browne JE, Mandelbaum B, Erggelet C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,19,reference_content,versus debridement for treatment of full-thickness chondral defects of the knee. Am J Sports Med. 2005;33:1658-66.,"[630, 148, 1083, 191]",reference_item,0.85,"[""reference content label: versus debridement for treatment of full-thickness chondral ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
12,20,reference_content,"37. Garretson RB III, Katolik LI, Verma N, Beck PR, Bach BR, Cole BJ. Contact pressure at osteochondral donor sites in the patellofemoral joint. Am J Sports Med. 2004;32:967-74.","[606, 195, 1083, 285]",reference_item,0.85,"[""reference content label: 37. Garretson RB III, Katolik LI, Verma N, Beck PR, Bach BR,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,21,reference_content,"38. Glaser C, Putz R. Functional anatomy of articular cartilage under compressive loading. Osteoarthritis and Cartilage. 2002;10:83-89.","[606, 290, 1082, 358]",reference_item,0.85,"[""reference content label: 38. Glaser C, Putz R. Functional anatomy of articular cartil""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,22,reference_content,"39. Gobbi A, Nunag P, Malinowski K. Treatment of chondral lesions of the knee with microfracture in a group of athletes. Knee Surg Sports Traumatol Arthrosc. 2005;13:213-21.","[607, 363, 1082, 431]",reference_item,0.85,"[""reference content label: 39. Gobbi A, Nunag P, Malinowski K. Treatment of chondral le""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,23,reference_content,"40. Gooding CR, Bartlett W, Bentley G, Skinner JA, Carrington R, Flanagan A. A prospective, randomized study comparing two techniques of autologous chondrocyte implantation for osteochondral defects i","[606, 435, 1084, 550]",reference_item,0.85,"[""reference content label: 40. Gooding CR, Bartlett W, Bentley G, Skinner JA, Carringto""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,24,reference_content,"41. Gorsline RT, Kaeding CC. The use of NSAIDs and nutritional supplements in athletes with osteoarthritis: prevalence, benefits, and consequences. Clin Sports Med. 2005;24:71-82.","[605, 555, 1084, 623]",reference_item,0.85,"[""reference content label: 41. Gorsline RT, Kaeding CC. The use of NSAIDs and nutrition""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,25,reference_content,"42. Grande DA, Pitman MI, Peterson L, Menche D, Klein M. The repair of experimentally produced defects in rabbit articular cartilage by autologous chondrocyte implantation. J Orthop Res. 1989;7:208-18","[606, 627, 1084, 718]",reference_item,0.85,"[""reference content label: 42. Grande DA, Pitman MI, Peterson L, Menche D, Klein M. The""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,26,reference_content,43. Gross A. Fresh osteochondral allograft for posttraumatic knee defects: surgical technique. Op Tech Orthop. 1997;7:334-9.,"[606, 723, 1083, 789]",reference_item,0.85,"[""reference content label: 43. Gross A. Fresh osteochondral allograft for posttraumatic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,27,reference_content,"44. Gudas R, Kelesinskas RJ, Kimtys V, Stankevicius E, Toliusis V, Benotavicius G, Smailys A. A prospective randomized clinical study of mosaic osteochondral autologous transplantation versus microfra","[606, 795, 1084, 912]",reference_item,0.85,"[""reference content label: 44. Gudas R, Kelesinskas RJ, Kimtys V, Stankevicius E, Toliu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,28,reference_content,"45. Guettler JH, Demetropoulos CK, Yang KH, Jurist KA. Osteochondral defects in the human knee: influence of defect size on cartilage rim stress and load redistribution to surrounding cartilage. Am J ","[605, 915, 1083, 1007]",reference_item,0.85,"[""reference content label: 45. Guettler JH, Demetropoulos CK, Yang KH, Jurist KA. Osteo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,29,reference_content,"46. Hambly K, Bobic V, Wondrasch B, Van Assche D, Marlovitis S. Autologous chondrocyte implantation postoperative care and rehabilitation: science and practice. Am J Sports Med. 2006;34:1020-38.","[605, 1011, 1083, 1102]",reference_item,0.85,"[""reference content label: 46. Hambly K, Bobic V, Wondrasch B, Van Assche D, Marlovitis""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,30,reference_content,"47. Hangody L, Fule P. Autologois osteochondral mosaicplasty for the treatment of full thickness defects of weight bearing joints: ten years of experimental and clinical experience. J Bone Joint Surg ","[605, 1107, 1084, 1198]",reference_item,0.85,"[""reference content label: 47. Hangody L, Fule P. Autologois osteochondral mosaicplasty""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,31,reference_content,"48. Hangody L, Rathonyi GK, Duska Z, Vasarhelyi G, Fules P, Modis L. Autologous osteochondral mosaicplasty: surgical technique. J Bone Joint Surg Am. 2004;86 Suppl 1:65-72.","[605, 1203, 1083, 1271]",reference_item,0.85,"[""reference content label: 48. Hangody L, Rathonyi GK, Duska Z, Vasarhelyi G, Fules P, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,32,reference_content,"49. Hefti F, Beguiristain J, Krauspe R, Moller-Madsen B, Riccio V, Tschauner C, et al. Osteochondritis dissecans: a multicenter study of the European Pediatric Orthopedic Society. J Pediatr Orthop B. ","[606, 1276, 1084, 1367]",reference_item,0.85,"[""reference content label: 49. Hefti F, Beguiristain J, Krauspe R, Moller-Madsen B, Ric""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,33,reference_content,"50. Henderson I, Gui J, Lavigne P. Autologous chondrocyte implantation: natural history of postimplantation periosteal","[605, 1371, 1084, 1416]",reference_item,0.85,"[""reference content label: 50. Henderson I, Gui J, Lavigne P. Autologous chondrocyte im""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,0,header,McAdams et al.,"[122, 82, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
13,1,number,177,"[1076, 81, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
13,2,reference_content,hypertrophy and effects of repair-site debridement on outcome. Arthroscopy. 2006;22:1318-24.,"[148, 147, 599, 191]",reference_item,0.85,"[""reference content label: hypertrophy and effects of repair-site debridement on outcom""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
13,3,reference_content,"51. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, Shive MS. Chitosan-glycerol phosphate/blood implants improve hyaline cartilage repair in ovine microfracture defects. J Bone Joint Surg. 2005","[123, 195, 600, 286]",reference_item,0.85,"[""reference content label: 51. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,4,reference_content,"52. Homminga GN, Bulstra SK, Bouwmeester PSM, VanderLinden AJ. Perichondral grafting for cartilage lesions of the knee. J Bone Joint Surg. 1990;72:1003-7.","[122, 290, 600, 359]",reference_item,0.85,"[""reference content label: 52. Homminga GN, Bulstra SK, Bouwmeester PSM, VanderLinden A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,5,reference_content,"53. Horas U, Pelinkovic D, Aigner T. Autologous chondrocyte implantation and osteochondral cylinder transplantation in cartilage repair of the knee joint: a prospective comparative trial. J Bone Joint","[124, 363, 600, 454]",reference_item,0.85,"[""reference content label: 53. Horas U, Pelinkovic D, Aigner T. Autologous chondrocyte ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,6,reference_content,"54. Hui JH, Chen F, Thambyah A, Lee EH. Treatment of chondral lesions in advanced osteochondritis dissecans: a comparative study of the efficacy of chondrocytes, mesenchymal stem cells, periosteal gra","[123, 459, 600, 597]",reference_item,0.85,"[""reference content label: 54. Hui JH, Chen F, Thambyah A, Lee EH. Treatment of chondra""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,7,reference_content,55. Insall J. The Pridie debridement operation for osteoarthritis of the knee. Clin Orthop. 1974;101:61-7.,"[123, 603, 601, 646]",reference_item,0.85,"[""reference content label: 55. Insall J. The Pridie debridement operation for osteoarth""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,8,reference_content,"57. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous repair of full-thickness defects of articular cartilage in a goat model. J Bone Joint Surg Am. 2001;83:53-64.","[123, 699, 599, 767]",reference_item,0.85,"[""reference content label: 57. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,9,reference_content,56. International Cartilage Repair Society (ICRS) Web site. http://www.cartilage.org.,"[123, 651, 599, 695]",reference_item,0.85,"[""reference content label: 56. International Cartilage Repair Society (ICRS) Web site. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,10,reference_content,"58. Jones G, Bennell K, Cicuttini FM. Effect of physical activity on cartilage development in healthy kids. Br J Sports Med. 2003;37:382-3.","[124, 770, 598, 838]",reference_item,0.85,"[""reference content label: 58. Jones G, Bennell K, Cicuttini FM. Effect of physical act""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,11,reference_content,"59. Jones SJ, Lyons RA, Sibert J, Evans R, Palmer SR. Changes in sports injuries to children between 1983 and 1998: comparison of case series. J Public Health Med. 2001;23:268-71.","[123, 843, 599, 911]",reference_item,0.85,"[""reference content label: 59. Jones SJ, Lyons RA, Sibert J, Evans R, Palmer SR. Change""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,12,reference_content,"60. Kim LS, Axelrod IJ, Howard P, Buratovich N, Waters RF. Efficacy of methylsulfonylmethane (MSM) in osteoarthritis pain of the knee: a pilot clinical trial. Osteoarthritis Cartilage. 2006;14:286-94.","[123, 915, 599, 1006]",reference_item,0.85,"[""reference content label: 60. Kim LS, Axelrod IJ, Howard P, Buratovich N, Waters RF. E""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,13,reference_content,"61. Kish G, Modis L, Hangody L. Osteochondral mosaicplasty for the treatment of focal chondral and osteochondral lesions of the knee and talus in the athlete: rationale, indications, technique, and re","[123, 1011, 601, 1103]",reference_item,0.85,"[""reference content label: 61. Kish G, Modis L, Hangody L. Osteochondral mosaicplasty f""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
13,14,reference_content,"62. Kiviranta I, Tammi M, Jurvelin J, Arokoski J, Saamanen AM, Helminen HJ. Articular cartilage thickness and glycosaminoglycan distribution in the canine knee joint after strenuous running exercise. ","[123, 1106, 599, 1198]",reference_item,0.85,"[""reference content label: 62. Kiviranta I, Tammi M, Jurvelin J, Arokoski J, Saamanen A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,15,reference_content,"63. Koh J, Wirsing K, Lautenschlager E, Zhang LO. The effect of graft height mismatch on contact pressures following osteochondral grafting. Am J Sports Med. 2004;32:317-20.","[123, 1202, 600, 1271]",reference_item,0.85,"[""reference content label: 63. Koh J, Wirsing K, Lautenschlager E, Zhang LO. The effect""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,16,reference_content,"64. Koh JL, Kowalski A, Lautenschlager E. The effect of angled osteochondral grafting on contact pressure: a biomechanical study. Am J Sports Med. 2006;34:116-9.","[123, 1275, 600, 1343]",reference_item,0.85,"[""reference content label: 64. Koh JL, Kowalski A, Lautenschlager E. The effect of angl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,17,reference_content,"65. Kohn D. Arthr
deficie
of anterior cruciate-
ons. Arthros-","[123, 1348, 599, 1415]",reference_item,0.85,"[""reference content label: 65. Kohn D. Arthr\ndeficie\nof anterior cruciate-\nons. Arthros""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,18,reference_content,"66. Krishnan SP, Skinner JA, Carrington RWJ, Flanagan AM, Briggs TW, Bentley G. Collagen-covered autologous chondrocyte implantation for osteochondritis dissicans of the knee: two- to seven-year resul","[631, 147, 1109, 239]",reference_item,0.85,"[""reference content label: 66. Krishnan SP, Skinner JA, Carrington RWJ, Flanagan AM, Br""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
13,19,reference_content,"67. Kruez PC, Erggelet C, Steinwachs M, Krause SJ, Lahm A, Niemeyer P, et al. Is microfracture of chondral defects in the knee associated with different results in patients aged 40 years or younger? A","[631, 243, 1109, 335]",reference_item,0.85,"[""reference content label: 67. Kruez PC, Erggelet C, Steinwachs M, Krause SJ, Lahm A, N""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
13,20,reference_content,"68. Kruez PC, Steinwachs M, Erggelet C, Lahm A, Krause S, Ossendorf C, et al. Importance of sports in cartilage regeneration after autologous chondrocyte implantation: a prospective study with a 3-yea","[632, 339, 1109, 453]",reference_item,0.85,"[""reference content label: 68. Kruez PC, Steinwachs M, Erggelet C, Lahm A, Krause S, Os""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,21,reference_content,"69. Kujala UM, Kettunen J, Paananen H, Aalto T, Battie MC, Impivaara O, et al. Knee osteoarthritis in former runners, soccer players, weight lifters, and shooters. Arth Rheum. 1995;38:539-46.","[632, 459, 1109, 549]",reference_item,0.85,"[""reference content label: 69. Kujala UM, Kettunen J, Paananen H, Aalto T, Battie MC, I""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,22,reference_content,"70. Lane JG, Massie JB, Ball ST, Amiel ME, Chen AC, Bae WC, et al. Follow-up of osteochondral plug transfers in a goat model: a 6-month study. Am J Sports Med. 2004;32:1440-50.","[632, 555, 1109, 623]",reference_item,0.85,"[""reference content label: 70. Lane JG, Massie JB, Ball ST, Amiel ME, Chen AC, Bae WC, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,23,reference_content,"71. Lee EH, Hui JHP. The potential of stem cells in orthopaedic surgery. J Bone Joint Surg. 2006;88:841-51.","[632, 627, 1108, 671]",reference_item,0.85,"[""reference content label: 71. Lee EH, Hui JHP. The potential of stem cells in orthopae""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,24,reference_content,"72. Lee JH, Prakash KVB, Pengatteeri YH, Park SE, Koh HS, Han CW. Chondrocyte apoptosis in the regenerated articular cartilage after allogenic chondrocyte transplantation in the rabbit knee. J Bone Jo","[633, 675, 1109, 766]",reference_item,0.85,"[""reference content label: 72. Lee JH, Prakash KVB, Pengatteeri YH, Park SE, Koh HS, Ha""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,25,reference_content,"73. Levy AS, Lohnes J, Sculley S, LeCrow M, Garrett W. Chondral delamination of the knee in soccer players. Am J Sports Med. 1996;24:634-39.","[632, 770, 1108, 838]",reference_item,0.85,"[""reference content label: 73. Levy AS, Lohnes J, Sculley S, LeCrow M, Garrett W. Chond""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,26,reference_content,74. Lexar E. Substitution of whole or half joints from freshly amputated extremities by free plastic operation. Surg Gynecol Obstet. 1908;6:601-7.,"[633, 843, 1108, 910]",reference_item,0.85,"[""reference content label: 74. Lexar E. Substitution of whole or half joints from fresh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,27,reference_content,"75. Liu G, Kawaguchi H, Ogasawara T, Asawa Y, Kishimoto J, Takahashi T, et al. Optimal combination of soluble factors for tissue engineering of permanent cartilage from cultured human chondrocytes. J ","[633, 915, 1109, 1007]",reference_item,0.85,"[""reference content label: 75. Liu G, Kawaguchi H, Ogasawara T, Asawa Y, Kishimoto J, T""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,28,reference_content,"76. Liu Y, Shu XZ, Prestwich GD. Osteochondral defect repair with autologous bone marrow-derived mesenchymal stem cells in an injectable, in situ, cross-linked synthetic extracellular matrix. Tissue E","[633, 1012, 1109, 1102]",reference_item,0.85,"[""reference content label: 76. Liu Y, Shu XZ, Prestwich GD. Osteochondral defect repair""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,29,reference_content,"77. Lohmander LS, Roos H, Dahlberg L, Hoerner LA, Lark MW. Temporal patterns of stromelysin, tissue inhibitor and proteoglycan fragments in synovial fluid after injury to the knee criciate ligament or","[632, 1107, 1109, 1199]",reference_item,0.85,"[""reference content label: 77. Lohmander LS, Roos H, Dahlberg L, Hoerner LA, Lark MW. T""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,30,reference_content,78. Magnusson PB. Technique of debridement of the knee joint for arthritis. Surg Clin North Am. 1946;26:226-49.,"[632, 1203, 1108, 1247]",reference_item,0.85,"[""reference content label: 78. Magnusson PB. Technique of debridement of the knee joint""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,31,reference_content,"79. Maletius W, Messner K. The long-term prognosis for severe damage to the weightbearing cartilage in the knee: a 14-year clinical and radiographic follow-up in 28 young athletes. Acta Orthop Scand. ","[633, 1252, 1109, 1342]",reference_item,0.85,"[""reference content label: 79. Maletius W, Messner K. The long-term prognosis for sever""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,32,reference_content,"80. Malinin T, Temple HT, Buck BE. Transplantation of osteochondral allografts after cold storage. J Bone Joint Surg. 2006;88:762-70.","[632, 1347, 1109, 1413]",reference_item,0.85,"[""reference content label: 80. Malinin T, Temple HT, Buck BE. Transplantation of osteoc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,0,number,178,"[98, 82, 132, 102]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
14,1,header,Cartilage I(3),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
14,2,reference_content,"81. Mandelbaum B, Browne JE, Fu F, Micheli LJ, Moseley JB, Erggelet C, et al. Treatment outcomes of autologous chondrocyte implantation for full-thickness articular cartilage defects of the trochlea. ","[97, 147, 574, 239]",reference_item,0.85,"[""reference content label: 81. Mandelbaum B, Browne JE, Fu F, Micheli LJ, Moseley JB, E""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,3,reference_content,"82. Mandelbaum BR, Waddell D. Etiology and pathophysiology of osteoarthritis. Orthopedics. 2005;28:1-8.","[97, 243, 573, 287]",reference_item,0.85,"[""reference content label: 82. Mandelbaum BR, Waddell D. Etiology and pathophysiology o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,4,reference_content,"83. Mandelbaum BT, Browne JE, Fu F, Micheli J, Mosley JB, Erggelet C, et al. Articular cartilage lesions of the knee. Am J Sports Med. 2000;26:853-61.","[97, 291, 574, 358]",reference_item,0.85,"[""reference content label: 83. Mandelbaum BT, Browne JE, Fu F, Micheli J, Mosley JB, Er""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,5,reference_content,"84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghinelli D, Gobbi A, et al. Articular cartilage engineering with Hyalograft C. Clin Orthop. 2005;435:96-105.","[98, 363, 573, 431]",reference_item,0.85,"[""reference content label: 84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,6,reference_content,"85. Marcacci M, Kon E, Delcogliano M, Filardo G, Busacca M, Zaffagnini S. Arthroscopic autologous osteochondral grafting for cartilage defects of the knee: prospective study results at a minimum 7-yea","[99, 435, 574, 549]",reference_item,0.85,"[""reference content label: 85. Marcacci M, Kon E, Delcogliano M, Filardo G, Busacca M, ""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
14,7,reference_content,"86. Marcacci M, Kon E, Zaffagnini S, Iacono F, Neri MP, Vascellari A, et al. Multiple osteochondral arthroscopic grafting (mosaicplasty) for cartilage defects of the knee: prospective study results at","[98, 554, 574, 670]",reference_item,0.85,"[""reference content label: 86. Marcacci M, Kon E, Zaffagnini S, Iacono F, Neri MP, Vasc""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
14,8,reference_content,"87. Marder RA, Hopkins G, Timmerman L. Arthroscopic microfracture of chondral defects of the knee: a comparison of two postoperative treatments. Arthroscopy. 2005;21:152-8.","[97, 675, 574, 743]",reference_item,0.85,"[""reference content label: 87. Marder RA, Hopkins G, Timmerman L. Arthroscopic microfra""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,9,reference_content,"88. McAlindon TE, LaValley MP, Gulin JP, Felson DT. Glucosamine and chondroitin for treatment of osteoarthritis: a systematic quality assessment and meta-analysis. JAMA. 2000;283:1469-75.","[98, 747, 573, 838]",reference_item,0.85,"[""reference content label: 88. McAlindon TE, LaValley MP, Gulin JP, Felson DT. Glucosam""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,10,reference_content,"89. McCulloch PC, Kang RW, Sobhy MH, Hayden JK, Cole BJ. Prospective evaluation of prolonged fresh osteochondral allograft transplantation of the femoral condyle: minimum 2-year follow-up. Am J Sports","[98, 842, 574, 935]",reference_item,0.85,"[""reference content label: 89. McCulloch PC, Kang RW, Sobhy MH, Hayden JK, Cole BJ. Pro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,11,reference_content,"90. Minas T. The role of cartilage repair techniques, including chondrocyte transplantation, in focal chondral knee damage. Instr Course Lect. 1999;48:629-43.","[97, 939, 573, 1006]",reference_item,0.85,"[""reference content label: 90. Minas T. The role of cartilage repair techniques, includ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,12,reference_content,"91. Mithoefer K, Williams RJ III, Warren RF, Wichiewicz TL, Marx RF. High-impact athletics after knee articular cartilage repair. Am J Sports Med. 2006;34:1413-8.","[97, 1011, 574, 1079]",reference_item,0.85,"[""reference content label: 91. Mithoefer K, Williams RJ III, Warren RF, Wichiewicz TL, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,13,reference_content,"92. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR, Jones BC, et al. Chondral resurfacing of articular cartilage defects in the knee with the microfracture technique. J Bone Joint Surg. 2006","[98, 1083, 574, 1174]",reference_item,0.85,"[""reference content label: 92. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,14,reference_content,"93. Mithoefer K, Steadman JR. The microfracture technique. Tech Knee Surg. 2006;5:140-8.","[96, 1179, 574, 1222]",reference_item,0.85,"[""reference content label: 93. Mithoefer K, Steadman JR. The microfracture technique. T""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,15,reference_content,"94. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR, Jones EC, et al. The microfracture technique for treatment of articular cartilage lesions in the knee: a prospective cohort evaluation. J ","[98, 1227, 575, 1318]",reference_item,0.85,"[""reference content label: 94. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,16,reference_content,"95. Mithöfer K, Peterson L, Mandelbaum BR, et al. Articular cartilage repair in soccer players with autologous chondrocyte transplantation: functional outcome and return to competition. Am J Sports Me","[97, 1323, 574, 1414]",reference_item,0.85,"[""reference content label: 95. Mith\u00f6fer K, Peterson L, Mandelbaum BR, et al. Articular ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,17,reference_content,"96. Mithöfer K, Minas T, Peterson L, et al. Functional outcome of articular cartilage repair in adolescent athletes. Am J Sports Med. 2005;3:1147-53.","[615, 147, 1084, 214]",reference_item,0.85,"[""reference content label: 96. Mith\u00f6fer K, Minas T, Peterson L, et al. Functional outco""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,18,reference_content,"97. Mizuno S, Alleman F, Glowacki J. Effects of medium perfusion on matrix production by bovine chondrocytes in three-dimensional collagen sponges. J Biomed Mater Res. 2001;56:368-75.","[616, 219, 1083, 309]",reference_item,0.85,"[""reference content label: 97. Mizuno S, Alleman F, Glowacki J. Effects of medium perfu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,19,reference_content,"98. Moti AW, Micheli LJ. Meniscal and articular cartilage injury in the skeletally immature knee. Instr Course Lect. 2003;52:683-90.","[616, 315, 1082, 382]",reference_item,0.85,"[""reference content label: 98. Moti AW, Micheli LJ. Meniscal and articular cartilage in""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,20,reference_content,"99. Najm WI, Reinsch S, Hoehler F, Tobis JS, Harvey PW. S-adenosyl methionine (SAMe) versus celecoxib for the treatment of osteoarthritis symptoms: a double-blind crossover trial. BMC Muscul Disord. 2","[614, 386, 1084, 478]",reference_item,0.85,"[""reference content label: 99. Najm WI, Reinsch S, Hoehler F, Tobis JS, Harvey PW. S-ad""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,21,reference_content,"100. Nam EK, Makhsous M, Koh J, Bowen M, Nuber G, Zhang LQ. Biomechanical and histological evaluation of osteochondral transplantation in a rabbit model. Am J Sports Med. 2004;32:308-16.","[609, 482, 1083, 573]",reference_item,0.85,"[""reference content label: 100. Nam EK, Makhsous M, Koh J, Bowen M, Nuber G, Zhang LQ. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,22,reference_content,"101. Nebelung W, Wuschech H. Thirty-five years of follow-up of anterior cruciate ligament-deficient knees in high-level athletes. Arthroscopy. 2005;21:696-702.","[608, 578, 1084, 647]",reference_item,0.85,"[""reference content label: 101. Nebelung W, Wuschech H. Thirty-five years of follow-up ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,23,reference_content,"102. Nehrer S, Domayer S, Dorotka R, Schatz K, Bindreiter U, Kotz R. Three-year clinical outcome after chondrocyte transplantation using a hyaluronan matrix for cartilage repair. Eur J Rad. 2006;57:3-","[609, 651, 1083, 741]",reference_item,0.85,"[""reference content label: 102. Nehrer S, Domayer S, Dorotka R, Schatz K, Bindreiter U,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,24,reference_content,"103. Ogilvie-Harris DJ, Jackson RW. The arthroscopic treatment of chondromalacia patella. J Bone Joint Surg. 1984;66:660-5.","[608, 747, 1083, 791]",reference_item,0.85,"[""reference content label: 103. Ogilvie-Harris DJ, Jackson RW. The arthroscopic treatme""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,25,reference_content,"104. Ossendorf C, Kaps C, Kreuz PC, Burmester GR, Sittinger M, Erggelet C. Treatment of posttraumatic and focal osteoarthritic cartilage defects of the knee with autologous polymer-based three-dimensi","[607, 796, 1084, 911]",reference_item,0.85,"[""reference content label: 104. Ossendorf C, Kaps C, Kreuz PC, Burmester GR, Sittinger ""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
14,26,reference_content,105. Outerbridge RE. The etiology of chondromalacea patellae. J Bone Joint Surg. 1961;43:752-67.,"[607, 915, 1083, 958]",reference_item,0.85,"[""reference content label: 105. Outerbridge RE. The etiology of chondromalacea patellae""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,27,reference_content,"106. Pearce SG, Hurtig MB, Clarnette R, Kalra M, Cowan B, Miniaci A. An investigation of 2 techniques for optimizing joint surface congruency using multiple cylindrical osteochondral autografts. Arthr","[607, 963, 1084, 1054]",reference_item,0.85,"[""reference content label: 106. Pearce SG, Hurtig MB, Clarnette R, Kalra M, Cowan B, Mi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,28,reference_content,"107. Pearle AD, Warren RF, Rodeo SA. Basic science of articular cartilage and osteoarthritis. Clin Sports Med. 2005;24:1-12.","[607, 1059, 1083, 1125]",reference_item,0.85,"[""reference content label: 107. Pearle AD, Warren RF, Rodeo SA. Basic science of articu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,29,reference_content,"108. Peterson L, Brittberg M, Kiviranta I, Akerlund EL, Lindahl A. Autologous chondrocyte transplantation: biomechanics and long-term durability. Am J Sports Med. 2002;30:2-12.","[607, 1131, 1083, 1199]",reference_item,0.85,"[""reference content label: 108. Peterson L, Brittberg M, Kiviranta I, Akerlund EL, Lind""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,30,reference_content,"109. Petersen W, Zelle S, Zantop T. Arthroscopic implantation of a three dimensional scaffold for autologous chondrocyte transplantation. Arch Orthop Trauma Surg. 2008;128:505-8.","[608, 1203, 1083, 1271]",reference_item,0.85,"[""reference content label: 109. Petersen W, Zelle S, Zantop T. Arthroscopic implantatio""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,31,reference_content,"110. Piasecki DD, Spindler KP, Warren TA, Andrish JT, Parker RD. Intraarticular injuries associated with anterior cruciate ligament tear: findings at ligament reconstruction in high school and recreat","[607, 1276, 1083, 1367]",reference_item,0.85,"[""reference content label: 110. Piasecki DD, Spindler KP, Warren TA, Andrish JT, Parker""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
14,32,reference_content,"111. Potter HG, Foo LF. Magnetic resonance imaging of articular cartilage. Am J Sports Med. 2006;34:661-7.","[606, 1372, 1084, 1414]",reference_item,0.85,"[""reference content label: 111. Potter HG, Foo LF. Magnetic resonance imaging of articu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,0,header,McAdams et al.,"[122, 82, 245, 103]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
15,1,number,179,"[1076, 81, 1109, 102]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
15,2,reference_content,"112. Potter HG, Linklater JM, Allen AA, Hannafin JA, Haas SB. Magnetic resonance imaging of articular cartilage in the knee. J Bone Joint Surg Am. 1998;80:1276-84.","[124, 147, 599, 214]",reference_item,0.85,"[""reference content label: 112. Potter HG, Linklater JM, Allen AA, Hannafin JA, Haas SB""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,3,reference_content,113. Pridie KH. A method of resurfacing osteoarthritic knee joints. J Bone Joint Surg. 1959;41:618-9.,"[124, 219, 598, 263]",reference_item,0.85,"[""reference content label: 113. Pridie KH. A method of resurfacing osteoarthritic knee ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,4,reference_content,"114. Rae PJ, Noble J. Arthroscopic drilling of osteochondral lesions of the knee. J Bone Joint Surg. 1989;71:534-41.","[125, 267, 598, 310]",reference_item,0.85,"[""reference content label: 114. Rae PJ, Noble J. Arthroscopic drilling of osteochondral""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,5,reference_content,"115. Reddy S, Pedowitz DI, Parekh SG, Sennett BJ, Okereke E. The morbidity associated with osteochondral harvest from asymptomatic knees for the treatment of osteochondral lesions of the talus. Am J S","[126, 315, 600, 406]",reference_item,0.85,"[""reference content label: 115. Reddy S, Pedowitz DI, Parekh SG, Sennett BJ, Okereke E.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,6,reference_content,"116. Rodrigo JJ, Steadman RJ, Silliman JF. Improvement of full-thickness chondral defect healing in the human knee after debridement and microfracture using continuous passive motion. Am J Knee Surg. ","[125, 411, 600, 502]",reference_item,0.85,"[""reference content label: 116. Rodrigo JJ, Steadman RJ, Silliman JF. Improvement of fu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,7,reference_content,"117. Roos EM, Dahlberg L. Positive effects of moderate exercise on glycosaminoglycan content in knee cartilage. Arthrit Rheum. 2005;52:3507-14.","[125, 507, 599, 573]",reference_item,0.85,"[""reference content label: 117. Roos EM, Dahlberg L. Positive effects of moderate exerc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,8,reference_content,"118. Roos H, Lindberg H, Ornell M. Soccer as a cause of hip and knee osteoarthritis. Ann Rheum Dis. 1996;55:690-8.","[125, 578, 599, 623]",reference_item,0.85,"[""reference content label: 118. Roos H, Lindberg H, Ornell M. Soccer as a cause of hip ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,9,reference_content,119. Roos H. Are there long-term sequelae from soccer? Clin Sports Med. 1998;17:819-83.,"[125, 627, 599, 670]",reference_item,0.85,"[""reference content label: 119. Roos H. Are there long-term sequelae from soccer? Clin ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,10,reference_content,"120. Schonholtz GJ, Ling B. Arthroscopic chondroplasty of the patella. Arthroscopy. 1985;1:92-6.","[125, 674, 598, 719]",reference_item,0.85,"[""reference content label: 120. Schonholtz GJ, Ling B. Arthroscopic chondroplasty of th""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,11,reference_content,"121. Sharma A, Wood LD, Richardson JB, Roberts S, Kuiper NJ. Glycosaminoglycan profiles of repair tissue formed following autologous chondrocyte implantation differ from control cartilage. Arthrit Res","[125, 724, 599, 815]",reference_item,0.85,"[""reference content label: 121. Sharma A, Wood LD, Richardson JB, Roberts S, Kuiper NJ.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,12,reference_content,"122. Shelbourne KD, Jari S, Gray T. Outcome of untreated traumatic articular cartilage defects of the knee: a natural history study. J Bone Joint Surg Am. 2003;85 Suppl 2:8-16.","[125, 819, 599, 887]",reference_item,0.85,"[""reference content label: 122. Shelbourne KD, Jari S, Gray T. Outcome of untreated tra""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,13,reference_content,"123. Shintani N, Kurth T, Hunziker EB. Expression of cartilage-related genes in bovine synovial tissue. J Orthop Res. 2007;25:813-9.","[124, 891, 598, 957]",reference_item,0.85,"[""reference content label: 123. Shintani N, Kurth T, Hunziker EB. Expression of cartila""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,14,reference_content,"124. Skoog T, Johansson SH. The formation of articular cartilage from free perichondrial grafts. Plast Reconst Surg. 1976;57:1-6.","[125, 963, 599, 1008]",reference_item,0.85,"[""reference content label: 124. Skoog T, Johansson SH. The formation of articular carti""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,15,reference_content,"125. Smith AD, Tao SS. Knee injuries in young athletes. Clin Sports Med. 1995;14:629-50.","[125, 1011, 598, 1055]",reference_item,0.85,"[""reference content label: 125. Smith AD, Tao SS. Knee injuries in young athletes. Clin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,16,reference_content,126. Smith-Peterson MN. Evolution of mould arthroplasty of the hip joint. J Bone Joint Surg. 1948;30:59-75.,"[125, 1059, 598, 1103]",reference_item,0.85,"[""reference content label: 126. Smith-Peterson MN. Evolution of mould arthroplasty of t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,17,reference_content,127. Sprague NF 3rd. Arthroscopic debridement for degenerative knee joint disease. Clin Orthop Relat Res. 1981;160:118-23.,"[125, 1107, 599, 1151]",reference_item,0.85,"[""reference content label: 127. Sprague NF 3rd. Arthroscopic debridement for degenerati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,18,reference_content,"128. Steadman JR, Rodkey WG, Singleton SB. Microfracture technique for full thickness chondral defects: technique and clinical results. Oper Tech Orthopedics. 1997;7:300-4.","[125, 1155, 599, 1223]",reference_item,0.85,"[""reference content label: 128. Steadman JR, Rodkey WG, Singleton SB. Microfracture tec""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
15,19,reference_content,"129. Steadman JR, Briggs KK, Rodrigo JJ, Kocher MS, Gill TJ, Rodkey WG. Outcomes of microfracture for traumatic chondral defects of the knee: average 11-year follow-up. Arthroscopy. 2003;19:477-84.","[126, 1227, 600, 1318]",reference_item,0.85,"[""reference content label: 129. Steadman JR, Briggs KK, Rodrigo JJ, Kocher MS, Gill TJ,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,20,reference_content,"130. Steadman JR, Miller BS, Karas SG, Schlegel TF, Briggs KK, Hawkins RJ. The microfracture technique in the treatment of full-thickness chondral lesions of the knee in National Football League playe","[633, 147, 1110, 239]",reference_item,0.85,"[""reference content label: 130. Steadman JR, Miller BS, Karas SG, Schlegel TF, Briggs K""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,21,reference_content,"131. Steinwachs M, Kreuz PC. Autologous chondrocyte implantation in chondral defects of the knee with a type I/III collagen membrane: a prospective study with a 3-year follow-up. Arthroscopy. 2007;23:","[633, 243, 1108, 334]",reference_item,0.85,"[""reference content label: 131. Steinwachs M, Kreuz PC. Autologous chondrocyte implanta""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,22,reference_content,"132. Stone KR, Walgenbach AW, Freyer A, Turek TJ, Speer DP. Articular cartilage paste grafting to full-thickness articular cartilage knee joint lesions: a 2- to 12-year follow-up. Arthroscopy. 2006;22","[633, 339, 1108, 430]",reference_item,0.85,"[""reference content label: 132. Stone KR, Walgenbach AW, Freyer A, Turek TJ, Speer DP. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,23,reference_content,"133. Theosakis J, Adderly B, Fox B. The arthritis cure: the medical miracle that can halt, reverse, and may even cure osteoarthritis. Vol. XVI. 1st ed. New York: St. Martin's Press; 1997.","[633, 435, 1108, 525]",reference_item,0.85,"[""reference content label: 133. Theosakis J, Adderly B, Fox B. The arthritis cure: the ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,24,reference_content,134. Towheed TE. Current status of glucosamine therapy in osteoarthritis. Arthr Rheum. 2003;49:601-4.,"[633, 531, 1108, 574]",reference_item,0.85,"[""reference content label: 134. Towheed TE. Current status of glucosamine therapy in os""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,25,reference_content,"135. Trattnig S, Pinker K, Drestan C, Plank C, Millinton S, Marlavits S. Matrix-based autologous chondrocyte implantation for cartilage repair with Hyalograft C: two-year follow-up by magnetic resonan","[635, 579, 1109, 670]",reference_item,0.85,"[""reference content label: 135. Trattnig S, Pinker K, Drestan C, Plank C, Millinton S, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,26,reference_content,"136. Victor von Engelhardt L, Kraft CN, Pennekamp PH, Schild HH, Schmitz A, von Falkenhausen M. The evaluation of articular cartilage lesions of the knee with a 3-tesla magnet. Arthroscopy. 2007;23:49","[634, 675, 1109, 765]",reference_item,0.85,"[""reference content label: 136. Victor von Engelhardt L, Kraft CN, Pennekamp PH, Schild""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,27,reference_content,"137. Vrahas MS, Mithoefer K, Joseph D. Long-term effects of articular impaction. Clin Orthop. 2004;423:40-3.","[632, 771, 1110, 815]",reference_item,0.85,"[""reference content label: 137. Vrahas MS, Mithoefer K, Joseph D. Long-term effects of ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,28,reference_content,"138. Wang DA, Varghese S, Sharma B, Strehin I, Fermanian S, Gorham J. Multifunctional chondroitin sulphate for cartilage tissue-biomaterial integration. Nat Mater. 2007;6:385-92.","[633, 820, 1109, 887]",reference_item,0.85,"[""reference content label: 138. Wang DA, Varghese S, Sharma B, Strehin I, Fermanian S, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,29,reference_content,"139. Wang CT, Lin J, Chang CJ, Lin YT, Hou SM. Therapeutic effects of hyaluronic acid on osteoarthritis of the knee: a meta-analysis of randomized controlled trials. J Bone Joint Surg. 2004;86:538-55.","[633, 892, 1109, 982]",reference_item,0.85,"[""reference content label: 139. Wang CT, Lin J, Chang CJ, Lin YT, Hou SM. Therapeutic e""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,30,reference_content,"140. Williams RJ, Ranawat AS, Potter HG, Carter T, Warren RF. Fresh stored allografts for the treatment of osteochondral defects of the knee. J Bone Joint Surg. 2007;89:718-26.","[633, 988, 1108, 1055]",reference_item,0.85,"[""reference content label: 140. Williams RJ, Ranawat AS, Potter HG, Carter T, Warren RF""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,31,reference_content,"141. Williams SK, Amiel D, Ball ST, Allen RT, Wong VW, Chen AC, et al. Prolonged storage effects on the articular cartilage of fresh human osteochondral allografts. J Bone Joint Surg. 2003;85:2111-20.","[633, 1059, 1109, 1150]",reference_item,0.85,"[""reference content label: 141. Williams SK, Amiel D, Ball ST, Allen RT, Wong VW, Chen ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,32,reference_content,"142. Wood JJ, Malek MA, Frassica FJ, Polder JA, Mohan AK, Bloom ET, et al. Autologous cultured chondrocytes: adverse events reported to the United States Food and Drug Administration. J Bone Joint Sur","[633, 1154, 1109, 1246]",reference_item,0.85,"[""reference content label: 142. Wood JJ, Malek MA, Frassica FJ, Polder JA, Mohan AK, Bl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,33,reference_content,"143. Yan H, Yu C. Repair of full-thickness cartilage defects with cells of different origin in a rabbit model. Arthroscopy. 2007;23:178-87.","[633, 1251, 1109, 1318]",reference_item,0.85,"[""reference content label: 143. Yan H, Yu C. Repair of full-thickness cartilage defects""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header Review [121, 80, 180, 103] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 doc_title Articular Cartilage Injury in Athletes [119, 131, 746, 171] paper_title 0.8 ["page-1 zone title_zone: Articular Cartilage Injury in Athletes"] paper_title 0.8 frontmatter_main_zone support_like none True True
4 1 2 text Timothy R. McAdams $ ^{1} $, Kai Mithoefer $ ^{2} $, Jason M. Scopp $ ^{3} $, and Bert R. Mandelbaum $ ^{4} $ Cartilage 1(3) 165–179 ©The Author(s) 2010 Reprints and permission: sagepub.com/journalsPe [118, 237, 744, 297] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Timothy R. McAdams $ ^{1} $, Kai Mithoefer $ ^{2} $, Jason M"] frontmatter_noise 0.8 body_zone reference_like citation_line False False
5 1 3 text [886, 113, 1104, 261] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 frontmatter_main_zone support_like empty True True
6 1 4 paragraph_title Abstract [119, 362, 212, 386] abstract_heading 0.95 ["abstract heading"] abstract_heading 0.95 frontmatter_main_zone heading_like short_fragment True True
7 1 5 abstract Articular cartilage lesions in the athletic population are observed with increasing frequency and, due to limited intrinsic healing capacity, can lead to progressive pain and functional limitation ove [117, 392, 1110, 611] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
8 1 6 paragraph_title Keywords [120, 643, 219, 667] structured_insert 0.9 ["frontmatter noise: Keywords"] frontmatter_noise 0.9 frontmatter_main_zone heading_like short_fragment False False
9 1 7 text microfracture, cartilage repair, sports injury [119, 673, 478, 699] frontmatter_noise 0.7 ["keyword-like block: microfracture, cartilage repair, sports injury"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
10 1 8 paragraph_title Introduction [120, 785, 268, 810] section_heading 0.9 ["explicit scholarly heading: Introduction"] section_heading 0.9 body_zone heading_like canonical_section_name True True
11 1 9 text Articular cartilage defects of the knee are frequently observed. Curl and coworkers described 53,569 hyaline cartilage lesions in 19,827 patients undergoing knee arthroscopy. $ ^{24} $ Similarly, a re [117, 831, 603, 1383] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
12 1 10 text Due to their documented poor spontaneous repair potential, injuries to the articular cartilage surfaces present a therapeutic challenge particularly in young and active individuals. $ ^{18,19,57} $ Re [118, 1384, 603, 1433] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
13 1 11 text [626, 782, 1112, 1194] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 frontmatter_main_zone support_like empty True True
14 1 12 footnote $ ^{1} $Department of Orthopaedic Surgery, Stanford University, Palo Alto, CA $ ^{2} $Harvard Vanguard Orthopedics and Sports Medicine, Brigham and Women's Hospital, Harvard Medical School, Boston, [627, 1207, 1106, 1330] footnote 0.7 ["footnote label: $ ^{1} $Department of Orthopaedic Surgery, Stanford Universi"] footnote 0.7 body_zone body_like affiliation_marker True True
15 1 13 footnote Corresponding Author: Timothy R. McAdams, Stanford University, 450 Broadway Street, Redwood City, CA 94063 Email: tmcadams@stanford.edu [627, 1347, 1052, 1429] frontmatter_support 0.75 ["page-1 correspondence footnote: Corresponding Author:\nTimothy R. McAdams, Stanford Universit"] frontmatter_support 0.75 body_zone body_like none True True
16 2 0 number 166 [98, 82, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
17 2 1 header Cartilage I(3) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
18 2 2 text athletic level is the most important parameter for outcome evaluation from articular cartilage restoration in this challenging population. [92, 144, 576, 219] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
19 2 3 paragraph_title Natural History [94, 252, 281, 278] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Natural History"] subsection_heading 0.6 body_zone heading_like short_fragment True True
20 2 4 text The limited ability of articular cartilage for spontaneous repair has been well documented. $ ^{[18,137]} $ Following the acute injury and resultant tissue necrosis, the lack of vascularization of art [92, 288, 578, 649] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 2 5 text While much knowledge has been gained from laboratory studies about the progression from cartilage injury to osteoarthritis, prospective clinical information about the natural history of articular cart [91, 647, 578, 1442] affiliation 0.8 ["page-1 zone affiliation_zone: While much knowledge has been gained from laboratory studies"] affiliation 0.8 body_zone body_like none True True
22 2 6 image [614, 152, 1078, 467] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
23 2 7 figure_title Figure I. Diagram displaying the relationship between level of performance (response) and activity (dose) with performance and cartilage injury. [602, 479, 1085, 546] figure_caption 0.85 ["figure_title label: Figure I. Diagram displaying the relationship between level "] figure_caption 0.85 reference_like citation_line True True
24 2 8 text increased risk for arthritic joint degeneration is felt to result from the high joint stresses associated with the repetitive joint impact and torsional loading seen with the rapid deceleration motion [600, 599, 1086, 723] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 2 9 paragraph_title Chondropenia [603, 756, 772, 783] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Chondropenia"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
26 2 10 text The increased risk for development of knee osteoarthritis in athletes is well documented, particularly at the elite level. $ ^{28,30,32,70,118,119} $ Intact articular cartilage possesses optimal load- [600, 791, 1087, 1442] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
27 3 0 header McAdams et al. [121, 82, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
28 3 1 number 167 [1075, 81, 1110, 104] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
29 3 2 text of articular cartilage function and may ultimately progress to osteoarthritis. [117, 154, 601, 201] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 3 3 text Commonly used classification systems for cartilage injury include the Outerbridge and International Cartilage Repair Society (ICRS). $ ^{56,105} $ These classification systems are based on size and de [117, 202, 604, 589] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
31 3 4 paragraph_title Diagnosis [119, 621, 236, 649] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Diagnosis"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
32 3 5 text Diagnosis of articular cartilage lesions can be achieved by a combination of history, clinical examination, and radiographic/magnetic resonance evaluation. A high index of suspicion is important in pa [117, 657, 604, 1382] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
33 3 6 paragraph_title Nutritional Supplements and Viscosupplementation [627, 154, 963, 211] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Nutritional Supplements and Viscosupplementation"] subsection_heading 0.6 body_zone heading_like none True True
34 3 7 text Nutritional supplements have received much recent interest as both a way to prevent cartilage injury and limit its progression. $ ^{23,41} $ However, most of the literature on nutritional supplements [626, 225, 1112, 468] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
35 3 8 paragraph_title Glucosamine and Chondroitin [628, 502, 902, 528] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Glucosamine and Chondroitin"] subsection_heading 0.6 body_zone heading_like none True True
36 3 9 text After publication of The Arthritis Cure in 1997, glucosamine has been the center of much attention and controversy. $ ^{133} $ Glucosamine has been found to be safe and effective in meta-analysis stud [626, 537, 1112, 922] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
37 3 10 text Viscosupplementation, like nutritional supplements, has become a popular treatment option for osteoarthritis of the knee. A series of 3 to 5 injections of hyaluronic acid, hylan, or hyaluronan may be [626, 922, 1112, 1382] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
38 4 0 number 168 [98, 82, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
39 4 1 header Cartilage I(3) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
40 4 2 figure_title Table I. Chondropenia Severity Score (CSS) Is Graded 0 to 100 and Involves Assessment of Meniscus Injury as well as Size and Number of Cartilage Lesions [93, 146, 878, 191] table_caption 0.9 ["table prefix matched: Table I. Chondropenia Severity Score (CSS) Is Graded 0 to 10"] table_caption 0.9 display_zone table_caption_like table_number True True
41 4 3 table <table><tr><td colspan="2">PATELLOFEMORAL</td><td colspan="2">MEDIAL COMPARTMENT</td><td colspan="2">LATERAL COMPARTMENT</td></tr><tr><td>Patella</td><td></td><td>MFC</td><td></td><td>LFC</td><td></td [106, 229, 1072, 1270] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
42 4 4 text Patient Name: ___ Index Knee: ___ [107, 1296, 563, 1327] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
43 4 5 text [582, 1297, 961, 1327] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
44 4 6 text Dob:___ [106, 1352, 462, 1383] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
45 5 0 header McAdams et al. [121, 82, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
46 5 1 number 169 [1076, 81, 1109, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
47 5 2 paragraph_title Treatment [121, 146, 251, 172] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Treatment"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
48 5 3 text Historically, surgical attempts at cartilage repair involved stimulation of mesenchymal stem cell metaplasia to form fibrocartilage. This is done by lavage, debridement, drilling, or microfracture, al [117, 192, 604, 507] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
49 5 4 image [636, 148, 1108, 456] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
50 5 5 figure_title Figure 2. Clinical algorithm for management of articular lesions in athletes. [627, 466, 1110, 509] figure_caption 0.92 ["figure_title label: Figure 2. Clinical algorithm for management of articular les"] figure_caption 0.92 display_zone legend_like figure_number True True
51 5 6 image [152, 608, 1046, 1309] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
52 5 7 figure_title Figure 3. Microfracture technique for articular cartilage repair with debridement of cartilage margins (A), removal of calcified cartilage (B), and systematic distribution of microfractures of the sub [116, 1324, 1109, 1427] figure_caption 0.92 ["figure_title label: Figure 3. Microfracture technique for articular cartilage re"] figure_caption 0.92 display_zone legend_like figure_number True True
53 6 0 number 170 [97, 81, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
54 6 1 header Cartilage I(3) [973, 80, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
55 6 2 paragraph_title Cartilage Repair: Mesenchymal Stem Cell Stimulation [94, 145, 573, 174] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Cartilage Repair: Mesenchymal Stem Cell Stimulation"] subsection_heading 0.6 body_zone heading_like none True True
56 6 3 text Reports of mesenchymal stem cell stimulation first occurred in 1946 when Magnusson $ ^{77} $ described debridement of injured hyaline cartilage. Subsequent reports described abrasion, drilling, and mi [93, 192, 577, 360] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
57 6 4 text The microfracture technique has been well described $ ^{91,92} $ and involves debridement through the calcified cartilage layer followed by perforation of the subchondral bone with arthroscopic surgic [92, 359, 577, 720] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
58 6 5 text Initial studies showed good early clinical results that tended to deteriorate with time. $ ^{39} $ Recently, Steadman measured functional outcomes in 71 knees after microfracture, and clinical improve [92, 720, 577, 1008] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
59 6 6 text Microfracture is an appealing option in the treatment of articular cartilage injury because it is relatively simple with minimal morbidity. It appears best suited for young patients with acute, smalle [92, 1009, 577, 1203] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
60 6 7 paragraph_title Cartilage Replacement: Substitution Replacement Options [94, 1235, 420, 1290] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Cartilage Replacement: Substitution Replacement Options"] subsection_heading 0.6 body_zone heading_like none True True
61 6 8 text Segmental fresh allograft replacement of osteochondral defects was first reported by Lexar in 1908. $ ^{74} $ Additional studies showed good to excellent results in 75% to 86% of patients, but the ris [93, 1295, 577, 1442] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
62 6 9 image [662, 160, 1027, 1070] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
63 6 10 figure_title Figure 4. Technique of mosaicplasty using osteochondral cylinder harvest from the peripheral trochlea and press-fit insertion into the cartilage defect in a mosaic pattern with recreation of the condy [602, 1089, 1085, 1176] figure_caption 0.92 ["figure_title label: Figure 4. Technique of mosaicplasty using osteochondral cyli"] figure_caption 0.92 display_zone legend_like figure_number True True
64 6 11 text More recently, osteochondral autograft transplantation surgery (OATS), or “mosaicplasty,” has been utilized for small, 1- to 2-cm lesions. In this technique, the osteochondral autograft cylindrical pl [600, 1224, 1086, 1443] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 7 0 header McAdams et al. [121, 82, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
66 7 1 number 171 [1075, 81, 1108, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
67 7 2 text trauma at the graft and recipient edges can lead to lack of peripheral integration with persistent gap formation. $ ^{53} $ [118, 144, 603, 192] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
68 7 3 text The surgical technique was described by Hangody and can be accomplished through a mini-arthrotomy or arthroscopically $ ^{48} $ (Fig. 4). The graft diameter can be varied to optimize defect filling an [118, 193, 603, 527] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
69 7 4 text Rabbit and goat model studies show evidence of preservation of chondral viability with osteochondral autograft transfer. $ ^{70,100} $ Clinical studies are optimistic as well. $ ^{7,21,44,47,84} $ In [117, 527, 603, 1129] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
70 7 5 text Options for cartilage transplantation in larger defects include cartilage slurry and osteochondral allograft transplantation. Stone $ ^{132} $ reported significant improvement in pain and function aft [117, 1129, 603, 1443] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
71 7 6 text [626, 143, 1112, 530] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
72 7 7 paragraph_title Cartilage Regeneration: Cell/Biologic Implantation [627, 564, 1077, 591] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Cartilage Regeneration: Cell/Biologic Implantation"] subsection_heading 0.6 body_zone heading_like none True True
73 7 8 text Since 1976, investigators have attempted to transplant periochondrium to stimulate production of articular cartilage. $ ^{52,124} $ However, two thirds of the grafts underwent endochondral ossificatio [627, 599, 1112, 1056] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
74 7 9 text Recent studies support ACI in athletes with large articular cartilage lesions (Fig. 6). Mithöfer $ ^{95} $ in 2005 reported 72% good to excellent results with ACI in 45 soccer players with a mean defe [627, 1057, 1113, 1441] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 8 0 number 172 [97, 81, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
76 8 1 header Cartilage I(3) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
77 8 2 image [108, 161, 555, 1082] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
78 8 3 figure_title Figure 5. Technique of mosaicplasty using osteochondral cylinder harvest from the peripheral trochlea (A) and press-fit insertion into the cartilage defect in a mosaic pattern with recreation of the c [94, 1104, 576, 1187] figure_caption 0.92 ["figure_title label: Figure 5. Technique of mosaicplasty using osteochondral cyli"] figure_caption 0.92 display_zone legend_like figure_number True True
79 8 4 vision_footnote Source: Hangody L, Ráthonyi GK, Duska Z, et al. Autologous osteochondral mosaicplasty. Surgical technique. J Bone Joint Surg Am. 2004;86:65-72. Reprinted with publisher permission (http://www.ejbjs.or [95, 1188, 576, 1245] footnote 0.7 ["vision_footnote label: Source: Hangody L, R\u00e1thonyi GK, Duska Z, et al. Autologous o"] footnote 0.7 body_zone body_like none True True
80 8 5 text ACI has recently been compared to both debridement and mosaicplasty. Fu compared ACI to debridement in 2005. $ ^{36} $ In this study, patients who underwent ACI obtained higher levels of knee function [92, 1320, 577, 1441] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
81 8 6 text [601, 144, 1086, 383] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
82 8 7 text ACI provides an autologous source of hyaline-like tissue and can be used in larger lesions with no donor-site morbidity. The stiffness of ACI hyaline-like tissue (2.77 N) more closely approximates hya [601, 384, 1085, 552] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
83 8 8 text The negative aspects of ACI include technical difficulty, requires a staged procedure, and potential cost/reimbursement issues. One of the main technical challenges is the periosteal flap, and problem [600, 552, 1086, 889] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
84 8 9 text In an attempt to limit the hypertrophy that occurs during redifferentiation, alternatives to the periosteal flap have evolved. In this way, no incision is necessary to harvest the periosteum, and the [600, 889, 1086, 1057] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
85 8 10 text Rather than simply altering the cultured chondrocyte cover, the latest techniques involve a biodegradable matrix seeded with chondrocytes to cover the defect (“matrix articular cartilage implantation, [600, 1058, 1086, 1442] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
86 9 0 header McAdams et al. [121, 81, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
87 9 1 number 173 [1075, 81, 1109, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
88 9 2 image [128, 167, 1094, 1244] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
89 9 3 figure_title Figure 6. Case study of a high-impact athlete treated with autologous chondrocyte transplantation (A). Image taken 4 months after injury for a full-thickness lesion of the weightbearing femoral condyl [117, 1269, 1109, 1382] figure_caption 0.92 ["figure_title label: Figure 6. Case study of a high-impact athlete treated with a"] figure_caption 0.92 display_zone legend_like figure_number True True
90 9 4 vision_footnote Source: 6A reproduced with permission from Genzyme Biosurgery, Cambridge, MA. [121, 1374, 603, 1394] footnote 0.7 ["vision_footnote label: Source: 6A reproduced with permission from Genzyme Biosurger"] footnote 0.7 body_zone body_like none True True
91 10 0 number 174 [97, 81, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
92 10 1 header Cartilage I(3) [972, 80, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
93 10 2 text 12 months showed evidence of hyaline-like tissue, but this was not quantified. MRI at 6 and 12 months showed good defect filling. [93, 144, 576, 216] body_paragraph 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_like reference_numeric_dot True True
94 10 3 text Bartlett compared porcine collagen membrane–ACI to porcine collagen biomatrix–ACI. $ ^{8} $ In 91 patients, both groups showed improvement in Cincinnati Knee Score at 1 year. The 2 techniques showed c [92, 218, 577, 482] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
95 10 4 paragraph_title Rehabilitation after Cartilage Reconstitution Procedures [93, 515, 429, 569] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Rehabilitation after Cartilage Reconstitution Procedures"] subsection_heading 0.6 body_zone heading_like none True True
96 10 5 text Little is known about the optimal rehabilitation protocols after cartilage reconstitution procedures. The phases of rehabilitation in cartilage reconstitution are proliferative, transitional, remodeli [92, 575, 577, 940] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
97 10 6 paragraph_title Future Directions [94, 971, 301, 998] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Future Directions"] subsection_heading 0.6 body_zone heading_like short_fragment True True
98 10 7 text The future of articular cartilage reconstitution lies in regeneration of tissue. At this time, regeneration involves collecting and culturing chondrocytes with subsequent reimplantation, using a varie [92, 1008, 577, 1248] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
99 10 8 text Based on currently available repair technologies, new approaches are being evaluated that may help to improve quality and quantity of the repair cartilage tissue and overcome the current technical and [91, 1248, 577, 1420] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
100 10 9 text [601, 144, 1087, 432] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
101 10 10 text Stem cells have the potential to differentiate into chondrocytes under appropriate conditions, potentially with improved cell viability, and are at the forefront of articular cartilage regeneration in [600, 432, 1087, 964] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
102 10 11 paragraph_title Concomitant Procedures [602, 996, 896, 1021] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Concomitant Procedures"] subsection_heading 0.6 body_zone heading_like none True True
103 10 12 text Combined pathology is frequently encountered by the surgeon treating articular cartilage defects in the athletic knee. Malalignment, ligamentous instability, or meniscal injury and deficiency are know [600, 1034, 1086, 1418] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 11 0 header McAdams et al. [122, 82, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
105 11 1 number 175 [1076, 82, 1109, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
106 11 2 text because performing simultaneous adjuvant procedures in the athletic population avoids the prolonged rehabilitation and absence from competition associated with staged procedures, which has been shown [119, 145, 601, 265] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
107 11 3 paragraph_title Summary [120, 301, 239, 327] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Summary"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
108 11 4 text Articular cartilage repair in athletes is aimed at returning the athlete to the preinjury level of athletic participation without increased risk for long-term arthritic degeneration. Nutritional suppl [119, 337, 602, 890] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
109 11 5 paragraph_title Declaration of Conflicting Interests [120, 906, 456, 929] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Declaration of Conflicting Interests"] backmatter_boundary_candidate 0.5 body_zone heading_like none True True
110 11 6 text The authors declared no potential conflicts of interest with respect to the authorship and/or publication of this article. [120, 938, 600, 985] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
111 11 7 paragraph_title Funding [121, 1002, 203, 1025] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Funding"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
112 11 8 text The authors received no financial support for the research and/or authorship of this article. [120, 1034, 600, 1080] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
113 11 9 paragraph_title References [121, 1098, 230, 1120] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone heading_like short_fragment True True
114 11 10 reference_content 1. Ahmad CS, Cohen ZA, Levine WN, Ateshian GA, Mow VC. Biomechanical and topographic considerations for autologous osteochondral grafting in the knee. Am J Sports Med. 2001;29:201-6. [132, 1131, 599, 1199] reference_item 0.85 ["reference content label: 1. Ahmad CS, Cohen ZA, Levine WN, Ateshian GA, Mow VC. Biome"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
115 11 11 reference_content 2. Alford JW, Cole BJ. Cartilage restoration, part 2: techniques, outcomes, and future directions. Am J Sports Med. 2005;33:443-60. [131, 1203, 597, 1270] reference_item 0.85 ["reference content label: 2. Alford JW, Cole BJ. Cartilage restoration, part 2: techni"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
116 11 12 reference_content 3. Alford JW, Cole BJ. Cartilage restoration, part I: basic science, historical perspective, patient evaluation, and treatment options. Am J Sports Med. 2005;33:295-306. [132, 1275, 599, 1343] reference_item 0.85 ["reference content label: 3. Alford JW, Cole BJ. Cartilage restoration, part I: basic "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
117 11 13 reference_content 4. Arendt E, Dick R. Knee injury patterns among men and women in collegiate basketball and soccer: NCAA data and review of literature. Am J Sports Med. 1995;23:694-701. [131, 1349, 600, 1414] reference_item 0.85 ["reference content label: 4. Arendt E, Dick R. Knee injury patterns among men and wome"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
118 11 14 reference_content 5. Aroen A, Loken S, Heir S, Alvik E, Ekland A, Granlund OG, Engebretsen L. Articular cartilage lesions in 993 consecutive knee arthroscopies. Am J Sports Med. 2004;32:211-5. [640, 147, 1109, 215] reference_item 0.85 ["reference content label: 5. Aroen A, Loken S, Heir S, Alvik E, Ekland A, Granlund OG,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
119 11 15 reference_content 6. Arokoski J, Kiviranta I, Jurvelin J, Tammin M, Helminen HJ. Long-distance running causes site-dependent decrease of cartilage glycosaminoglycan content in the knee joint of beagle dogs. Arthritis R [640, 219, 1109, 311] reference_item 0.85 ["reference content label: 6. Arokoski J, Kiviranta I, Jurvelin J, Tammin M, Helminen H"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
120 11 16 reference_content 7. Barber FA, Chow JCY. Arthroscopic chondral osseous autograft transplantation (COR Procedure) for femoral defects. Arthroscopy. 2006;22:10-6. [641, 316, 1108, 382] reference_item 0.85 ["reference content label: 7. Barber FA, Chow JCY. Arthroscopic chondral osseous autogr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
121 11 17 reference_content 8. Bartlett W, Skinner JA, Gooding CR, Carrington RW, Flanagan AM, Briggs TW, Bentley G. Autologous chondrocyte implantation versus matrix-induced autologous chondrocyte implantation for osteochondral [640, 387, 1109, 502] reference_item 0.85 ["reference content label: 8. Bartlett W, Skinner JA, Gooding CR, Carrington RW, Flanag"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
122 11 18 reference_content 9. Bartz RL, Laudicina L. Osteoarthritis after sports knee injuries. Clin Sports Med. 2005;24:39-45. [639, 507, 1108, 551] reference_item 0.85 ["reference content label: 9. Bartz RL, Laudicina L. Osteoarthritis after sports knee i"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
123 11 19 reference_content 10. Bartz RL, Kamaric E, Noble PC, Lintner D, Bocell J. Topographic matching of selected donor and recipient sites for osteochondral autografting of the articular surface of the femoral condyles. Am J [634, 555, 1109, 647] reference_item 0.85 ["reference content label: 10. Bartz RL, Kamaric E, Noble PC, Lintner D, Bocell J. Topo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
124 11 20 reference_content 11. Behrens P, Bitter T, Kurz B, Russlies M. Matrix-associated autologous chondrocyte transplantation/implantation (MACT/MACI): 5-year follow-up. Knee. 2006;13:194-202. [633, 651, 1109, 719] reference_item 0.85 ["reference content label: 11. Behrens P, Bitter T, Kurz B, Russlies M. Matrix-associat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
125 11 21 reference_content 12. Bentley G, Biant LC, Carrington RW, Akmal M, Goldberg A, Williams AM, et al. A prospective, randomised comparison of autologous chondrocyte implantation versus mosaicplasty for osteochondral defec [633, 723, 1110, 837] reference_item 0.85 ["reference content label: 12. Bentley G, Biant LC, Carrington RW, Akmal M, Goldberg A,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
126 11 22 reference_content 13. Benya PD, Schaffer JD. Dedifferentiated chondrocytes reexpress the differentiated collagen phenotype when cultured in agarose gels. Cell. 1982;30:215-24. [633, 843, 1109, 911] reference_item 0.85 ["reference content label: 13. Benya PD, Schaffer JD. Dedifferentiated chondrocytes ree"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
127 11 23 reference_content 14. Blevins FT, Steadman JR, Rodrigo JJ, Silliman J. Treatment of articular cartilage defects in athletes: an analysis of functional outcome and lesion appearance. Orthopedics. 1998;21:761-8. [633, 916, 1110, 983] reference_item 0.85 ["reference content label: 14. Blevins FT, Steadman JR, Rodrigo JJ, Silliman J. Treatme"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
128 11 24 reference_content 15. Borazjani BH, Chen AC, Bae WC, Patil S, Sah RL, et al. Effect of impact on chondrocyte viability during insertion of human osteochondral grafts. J Bone Joint Surg. 2006;88:1934-43. [633, 988, 1110, 1077] reference_item 0.85 ["reference content label: 15. Borazjani BH, Chen AC, Bae WC, Patil S, Sah RL, et al. E"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
129 11 25 reference_content 16. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O, Peterson L. Treatment of deep cartilage defects in the knee with autologous chondrocyte transplantation. N Engl J Med. 1994;331:889-95. [634, 1083, 1109, 1174] reference_item 0.85 ["reference content label: 16. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
130 11 26 reference_content 17. Brown WE, Potter HG, Marx RG, Wickiewicz TL, Warren RF. Magnetic resonance imaging appearance of cartilage repair in the knee. Clin Orthop. 2004;422:214-23. [633, 1180, 1108, 1247] reference_item 0.85 ["reference content label: 17. Brown WE, Potter HG, Marx RG, Wickiewicz TL, Warren RF. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
131 11 27 reference_content 18. Buckwalter JA, Mankin HJ. Articular cartilage. Part II: degeneration and osteoarthrosis, repair, regeneration, and transplantation. J Bone Joint Surg Am. 1997;79:612-32. [633, 1252, 1108, 1318] reference_item 0.85 ["reference content label: 18. Buckwalter JA, Mankin HJ. Articular cartilage. Part II: "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
132 11 28 reference_content 19. Buckwalter JA. Evaluating methods for restoring cartilaginous articular surfaces. Clin Orthop. 1999;367S:S224-38. [633, 1323, 1108, 1367] reference_item 0.85 ["reference content label: 19. Buckwalter JA. Evaluating methods for restoring cartilag"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
133 11 29 reference_content 20. Campbell J, Bellamy N, Gee T. Differences between systematic reviews/meta-analyses of hyaluronic acid/hyaluronan/ [630, 1372, 1110, 1415] reference_item 0.85 ["reference content label: 20. Campbell J, Bellamy N, Gee T. Differences between system"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
134 12 0 number 176 [98, 82, 132, 103] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
135 12 1 header Cartilage I(3) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
136 12 2 reference_content hylan in osteoarthritis of the knee. Osteoarthritis Cartilage. 2007;15:1424-36. [122, 147, 573, 190] reference_item 0.85 ["reference content label: hylan in osteoarthritis of the knee. Osteoarthritis Cartilag"] reference_item 0.85 reference_zone unknown_like none True True
137 12 3 reference_content 21. Chow JCY, Hantes ME, Houle JB, Zalavras CG. Arthroscopic autogenous osteochondral transplantation for treating knee cartilage defects: a 2- to 5-year follow-up study. Arthroscopy. 2004;20:681-90. [97, 194, 573, 286] reference_item 0.85 ["reference content label: 21. Chow JCY, Hantes ME, Houle JB, Zalavras CG. Arthroscopic"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
138 12 4 reference_content 22. Church S, Keating JF. Reconstruction of the anterior cruciate ligament: timing of surgery and the incidence of meniscal tears and degenerative change. J Bone Joint Surg. 2005;87:1639-42. [97, 290, 573, 381] reference_item 0.85 ["reference content label: 22. Church S, Keating JF. Reconstruction of the anterior cru"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
139 12 5 reference_content 23. Clark KL. Nutritional considerations in joint health. Clin Sports Med. 2007;26:101-18. [97, 386, 574, 432] reference_item 0.85 ["reference content label: 23. Clark KL. Nutritional considerations in joint health. Cl"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
140 12 6 reference_content 24. Curl WW, Krome J, Gordon E, Rushing J, Smith BP, Poehling GG. Cartilage injuries: a review of 31516 knee arthroscopies. Arthroscopy. 1997;13:456-60. [97, 435, 573, 502] reference_item 0.85 ["reference content label: 24. Curl WW, Krome J, Gordon E, Rushing J, Smith BP, Poehlin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
141 12 7 reference_content 25. Ding C, Cicuttini F, Scott F, Cooley H, Boon C, Jones G. Natural history of knee cartilage defects and factors affecting change. Arch Int Med. 2006;166:651-8. [97, 507, 573, 574] reference_item 0.85 ["reference content label: 25. Ding C, Cicuttini F, Scott F, Cooley H, Boon C, Jones G."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
142 12 8 reference_content 26. Dragoo JL, Carlson G, McCormick F, Khan-Farooqi, Zhu M, Zuk PA, et al. Healing full-thickness cartilage defects using adipose-derived stem cells. Tissue Engineering. 2007;13:1-7. [97, 578, 574, 647] reference_item 0.85 ["reference content label: 26. Dragoo JL, Carlson G, McCormick F, Khan-Farooqi, Zhu M, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
143 12 9 reference_content 27. Dragoo JL, Samimi B, Zhu M, Hame SL, Thomas BJ, Lieberman JR, et al. Tissue-engineered cartilage and bone using stem cells from human infrapatellar fat pads. J Bone Joint Surg. 2003;85:740-7. [97, 651, 575, 742] reference_item 0.85 ["reference content label: 27. Dragoo JL, Samimi B, Zhu M, Hame SL, Thomas BJ, Lieberma"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
144 12 10 reference_content 28. Drawer S, Fuller CW. Propensity for osteoarthritis and lower limb joint pain in retired professional soccer players. Br J Sports Med. 2001;35:402-8. [97, 746, 575, 815] reference_item 0.85 ["reference content label: 28. Drawer S, Fuller CW. Propensity for osteoarthritis and l"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
145 12 11 reference_content 29. Drongowski RA, Coran AG, Woitys EM. Predictive value of meniscal and chondral injuries in conservatively treated anterior cruciate ligament injuries. Arthroscopy. 1994;10:97-102. [97, 819, 575, 887] reference_item 0.85 ["reference content label: 29. Drongowski RA, Coran AG, Woitys EM. Predictive value of "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
146 12 12 reference_content 30. Engstrom B, Forssblad M, Johansson C, Tornkvist H. Does a major knee injury definitely sideline an elite soccer player? Am J Sports Med. 1990;18:101-5. [97, 891, 573, 958] reference_item 0.85 ["reference content label: 30. Engstrom B, Forssblad M, Johansson C, Tornkvist H. Does "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
147 12 13 reference_content 31. Erggelet C, Sittinger M, Lahm A. The arthroscopic implantation of autologous chondrocytes for the treatment of full-thickness cartilage defects of the knee joint. Arthroscopy. 2003;19:108-10. [97, 962, 573, 1053] reference_item 0.85 ["reference content label: 31. Erggelet C, Sittinger M, Lahm A. The arthroscopic implan"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
148 12 14 reference_content 32. Felson DT. Osteoarthritis: new insights. Part 1: the disease and its risk factors. Ann Intern Med. 2000;133:635-46. [96, 1059, 574, 1103] reference_item 0.85 ["reference content label: 32. Felson DT. Osteoarthritis: new insights. Part 1: the dis"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
149 12 15 reference_content 33. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongialization: a new treatment for diseased patellae. Clin Orthop. 1979;144:74-83. [98, 1107, 573, 1174] reference_item 0.85 ["reference content label: 33. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongializati"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
150 12 16 reference_content 34. Figueroa D, Calvo R, Vaisman A, Carrasco MA, Moraga C, Delgado I. Knee chondral lesions: incidence and correlation between arthroscopic and magnetic resonance findings. Arthroscopy. 2007;23:312-5. [97, 1179, 573, 1270] reference_item 0.85 ["reference content label: 34. Figueroa D, Calvo R, Vaisman A, Carrasco MA, Moraga C, D"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
151 12 17 reference_content 35. Frisbie DD, Morisset S, Ho C, Rodkey WG, Steadman JR, McIlwraith CW. Effects of calcified cartilage on healing of chondral defects treated with microfracture in horses. Am J Sports Med. 2006;34:18 [98, 1275, 575, 1367] reference_item 0.85 ["reference content label: 35. Frisbie DD, Morisset S, Ho C, Rodkey WG, Steadman JR, Mc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
152 12 18 reference_content 36. Fu FH, Zurakowski D, Browne JE, Mandelbaum B, Erggelet C, Moseley JB JR, et al. Autologous chondrocyte implantation [97, 1371, 574, 1416] reference_item 0.85 ["reference content label: 36. Fu FH, Zurakowski D, Browne JE, Mandelbaum B, Erggelet C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
153 12 19 reference_content versus debridement for treatment of full-thickness chondral defects of the knee. Am J Sports Med. 2005;33:1658-66. [630, 148, 1083, 191] reference_item 0.85 ["reference content label: versus debridement for treatment of full-thickness chondral "] reference_item 0.85 reference_zone unknown_like none True True
154 12 20 reference_content 37. Garretson RB III, Katolik LI, Verma N, Beck PR, Bach BR, Cole BJ. Contact pressure at osteochondral donor sites in the patellofemoral joint. Am J Sports Med. 2004;32:967-74. [606, 195, 1083, 285] reference_item 0.85 ["reference content label: 37. Garretson RB III, Katolik LI, Verma N, Beck PR, Bach BR,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
155 12 21 reference_content 38. Glaser C, Putz R. Functional anatomy of articular cartilage under compressive loading. Osteoarthritis and Cartilage. 2002;10:83-89. [606, 290, 1082, 358] reference_item 0.85 ["reference content label: 38. Glaser C, Putz R. Functional anatomy of articular cartil"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
156 12 22 reference_content 39. Gobbi A, Nunag P, Malinowski K. Treatment of chondral lesions of the knee with microfracture in a group of athletes. Knee Surg Sports Traumatol Arthrosc. 2005;13:213-21. [607, 363, 1082, 431] reference_item 0.85 ["reference content label: 39. Gobbi A, Nunag P, Malinowski K. Treatment of chondral le"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
157 12 23 reference_content 40. Gooding CR, Bartlett W, Bentley G, Skinner JA, Carrington R, Flanagan A. A prospective, randomized study comparing two techniques of autologous chondrocyte implantation for osteochondral defects i [606, 435, 1084, 550] reference_item 0.85 ["reference content label: 40. Gooding CR, Bartlett W, Bentley G, Skinner JA, Carringto"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
158 12 24 reference_content 41. Gorsline RT, Kaeding CC. The use of NSAIDs and nutritional supplements in athletes with osteoarthritis: prevalence, benefits, and consequences. Clin Sports Med. 2005;24:71-82. [605, 555, 1084, 623] reference_item 0.85 ["reference content label: 41. Gorsline RT, Kaeding CC. The use of NSAIDs and nutrition"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
159 12 25 reference_content 42. Grande DA, Pitman MI, Peterson L, Menche D, Klein M. The repair of experimentally produced defects in rabbit articular cartilage by autologous chondrocyte implantation. J Orthop Res. 1989;7:208-18 [606, 627, 1084, 718] reference_item 0.85 ["reference content label: 42. Grande DA, Pitman MI, Peterson L, Menche D, Klein M. The"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
160 12 26 reference_content 43. Gross A. Fresh osteochondral allograft for posttraumatic knee defects: surgical technique. Op Tech Orthop. 1997;7:334-9. [606, 723, 1083, 789] reference_item 0.85 ["reference content label: 43. Gross A. Fresh osteochondral allograft for posttraumatic"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
161 12 27 reference_content 44. Gudas R, Kelesinskas RJ, Kimtys V, Stankevicius E, Toliusis V, Benotavicius G, Smailys A. A prospective randomized clinical study of mosaic osteochondral autologous transplantation versus microfra [606, 795, 1084, 912] reference_item 0.85 ["reference content label: 44. Gudas R, Kelesinskas RJ, Kimtys V, Stankevicius E, Toliu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
162 12 28 reference_content 45. Guettler JH, Demetropoulos CK, Yang KH, Jurist KA. Osteochondral defects in the human knee: influence of defect size on cartilage rim stress and load redistribution to surrounding cartilage. Am J [605, 915, 1083, 1007] reference_item 0.85 ["reference content label: 45. Guettler JH, Demetropoulos CK, Yang KH, Jurist KA. Osteo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
163 12 29 reference_content 46. Hambly K, Bobic V, Wondrasch B, Van Assche D, Marlovitis S. Autologous chondrocyte implantation postoperative care and rehabilitation: science and practice. Am J Sports Med. 2006;34:1020-38. [605, 1011, 1083, 1102] reference_item 0.85 ["reference content label: 46. Hambly K, Bobic V, Wondrasch B, Van Assche D, Marlovitis"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
164 12 30 reference_content 47. Hangody L, Fule P. Autologois osteochondral mosaicplasty for the treatment of full thickness defects of weight bearing joints: ten years of experimental and clinical experience. J Bone Joint Surg [605, 1107, 1084, 1198] reference_item 0.85 ["reference content label: 47. Hangody L, Fule P. Autologois osteochondral mosaicplasty"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
165 12 31 reference_content 48. Hangody L, Rathonyi GK, Duska Z, Vasarhelyi G, Fules P, Modis L. Autologous osteochondral mosaicplasty: surgical technique. J Bone Joint Surg Am. 2004;86 Suppl 1:65-72. [605, 1203, 1083, 1271] reference_item 0.85 ["reference content label: 48. Hangody L, Rathonyi GK, Duska Z, Vasarhelyi G, Fules P, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
166 12 32 reference_content 49. Hefti F, Beguiristain J, Krauspe R, Moller-Madsen B, Riccio V, Tschauner C, et al. Osteochondritis dissecans: a multicenter study of the European Pediatric Orthopedic Society. J Pediatr Orthop B. [606, 1276, 1084, 1367] reference_item 0.85 ["reference content label: 49. Hefti F, Beguiristain J, Krauspe R, Moller-Madsen B, Ric"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
167 12 33 reference_content 50. Henderson I, Gui J, Lavigne P. Autologous chondrocyte implantation: natural history of postimplantation periosteal [605, 1371, 1084, 1416] reference_item 0.85 ["reference content label: 50. Henderson I, Gui J, Lavigne P. Autologous chondrocyte im"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
168 13 0 header McAdams et al. [122, 82, 245, 104] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
169 13 1 number 177 [1076, 81, 1109, 103] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
170 13 2 reference_content hypertrophy and effects of repair-site debridement on outcome. Arthroscopy. 2006;22:1318-24. [148, 147, 599, 191] reference_item 0.85 ["reference content label: hypertrophy and effects of repair-site debridement on outcom"] reference_item 0.85 reference_zone unknown_like none True True
171 13 3 reference_content 51. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, Shive MS. Chitosan-glycerol phosphate/blood implants improve hyaline cartilage repair in ovine microfracture defects. J Bone Joint Surg. 2005 [123, 195, 600, 286] reference_item 0.85 ["reference content label: 51. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, S"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
172 13 4 reference_content 52. Homminga GN, Bulstra SK, Bouwmeester PSM, VanderLinden AJ. Perichondral grafting for cartilage lesions of the knee. J Bone Joint Surg. 1990;72:1003-7. [122, 290, 600, 359] reference_item 0.85 ["reference content label: 52. Homminga GN, Bulstra SK, Bouwmeester PSM, VanderLinden A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
173 13 5 reference_content 53. Horas U, Pelinkovic D, Aigner T. Autologous chondrocyte implantation and osteochondral cylinder transplantation in cartilage repair of the knee joint: a prospective comparative trial. J Bone Joint [124, 363, 600, 454] reference_item 0.85 ["reference content label: 53. Horas U, Pelinkovic D, Aigner T. Autologous chondrocyte "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
174 13 6 reference_content 54. Hui JH, Chen F, Thambyah A, Lee EH. Treatment of chondral lesions in advanced osteochondritis dissecans: a comparative study of the efficacy of chondrocytes, mesenchymal stem cells, periosteal gra [123, 459, 600, 597] reference_item 0.85 ["reference content label: 54. Hui JH, Chen F, Thambyah A, Lee EH. Treatment of chondra"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
175 13 7 reference_content 55. Insall J. The Pridie debridement operation for osteoarthritis of the knee. Clin Orthop. 1974;101:61-7. [123, 603, 601, 646] reference_item 0.85 ["reference content label: 55. Insall J. The Pridie debridement operation for osteoarth"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
176 13 8 reference_content 57. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous repair of full-thickness defects of articular cartilage in a goat model. J Bone Joint Surg Am. 2001;83:53-64. [123, 699, 599, 767] reference_item 0.85 ["reference content label: 57. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
177 13 9 reference_content 56. International Cartilage Repair Society (ICRS) Web site. http://www.cartilage.org. [123, 651, 599, 695] reference_item 0.85 ["reference content label: 56. International Cartilage Repair Society (ICRS) Web site. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
178 13 10 reference_content 58. Jones G, Bennell K, Cicuttini FM. Effect of physical activity on cartilage development in healthy kids. Br J Sports Med. 2003;37:382-3. [124, 770, 598, 838] reference_item 0.85 ["reference content label: 58. Jones G, Bennell K, Cicuttini FM. Effect of physical act"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
179 13 11 reference_content 59. Jones SJ, Lyons RA, Sibert J, Evans R, Palmer SR. Changes in sports injuries to children between 1983 and 1998: comparison of case series. J Public Health Med. 2001;23:268-71. [123, 843, 599, 911] reference_item 0.85 ["reference content label: 59. Jones SJ, Lyons RA, Sibert J, Evans R, Palmer SR. Change"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
180 13 12 reference_content 60. Kim LS, Axelrod IJ, Howard P, Buratovich N, Waters RF. Efficacy of methylsulfonylmethane (MSM) in osteoarthritis pain of the knee: a pilot clinical trial. Osteoarthritis Cartilage. 2006;14:286-94. [123, 915, 599, 1006] reference_item 0.85 ["reference content label: 60. Kim LS, Axelrod IJ, Howard P, Buratovich N, Waters RF. E"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
181 13 13 reference_content 61. Kish G, Modis L, Hangody L. Osteochondral mosaicplasty for the treatment of focal chondral and osteochondral lesions of the knee and talus in the athlete: rationale, indications, technique, and re [123, 1011, 601, 1103] reference_item 0.85 ["reference content label: 61. Kish G, Modis L, Hangody L. Osteochondral mosaicplasty f"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
182 13 14 reference_content 62. Kiviranta I, Tammi M, Jurvelin J, Arokoski J, Saamanen AM, Helminen HJ. Articular cartilage thickness and glycosaminoglycan distribution in the canine knee joint after strenuous running exercise. [123, 1106, 599, 1198] reference_item 0.85 ["reference content label: 62. Kiviranta I, Tammi M, Jurvelin J, Arokoski J, Saamanen A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
183 13 15 reference_content 63. Koh J, Wirsing K, Lautenschlager E, Zhang LO. The effect of graft height mismatch on contact pressures following osteochondral grafting. Am J Sports Med. 2004;32:317-20. [123, 1202, 600, 1271] reference_item 0.85 ["reference content label: 63. Koh J, Wirsing K, Lautenschlager E, Zhang LO. The effect"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
184 13 16 reference_content 64. Koh JL, Kowalski A, Lautenschlager E. The effect of angled osteochondral grafting on contact pressure: a biomechanical study. Am J Sports Med. 2006;34:116-9. [123, 1275, 600, 1343] reference_item 0.85 ["reference content label: 64. Koh JL, Kowalski A, Lautenschlager E. The effect of angl"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
185 13 17 reference_content 65. Kohn D. Arthr deficie of anterior cruciate- ons. Arthros- [123, 1348, 599, 1415] reference_item 0.85 ["reference content label: 65. Kohn D. Arthr\ndeficie\nof anterior cruciate-\nons. Arthros"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
186 13 18 reference_content 66. Krishnan SP, Skinner JA, Carrington RWJ, Flanagan AM, Briggs TW, Bentley G. Collagen-covered autologous chondrocyte implantation for osteochondritis dissicans of the knee: two- to seven-year resul [631, 147, 1109, 239] reference_item 0.85 ["reference content label: 66. Krishnan SP, Skinner JA, Carrington RWJ, Flanagan AM, Br"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
187 13 19 reference_content 67. Kruez PC, Erggelet C, Steinwachs M, Krause SJ, Lahm A, Niemeyer P, et al. Is microfracture of chondral defects in the knee associated with different results in patients aged 40 years or younger? A [631, 243, 1109, 335] reference_item 0.85 ["reference content label: 67. Kruez PC, Erggelet C, Steinwachs M, Krause SJ, Lahm A, N"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
188 13 20 reference_content 68. Kruez PC, Steinwachs M, Erggelet C, Lahm A, Krause S, Ossendorf C, et al. Importance of sports in cartilage regeneration after autologous chondrocyte implantation: a prospective study with a 3-yea [632, 339, 1109, 453] reference_item 0.85 ["reference content label: 68. Kruez PC, Steinwachs M, Erggelet C, Lahm A, Krause S, Os"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
189 13 21 reference_content 69. Kujala UM, Kettunen J, Paananen H, Aalto T, Battie MC, Impivaara O, et al. Knee osteoarthritis in former runners, soccer players, weight lifters, and shooters. Arth Rheum. 1995;38:539-46. [632, 459, 1109, 549] reference_item 0.85 ["reference content label: 69. Kujala UM, Kettunen J, Paananen H, Aalto T, Battie MC, I"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
190 13 22 reference_content 70. Lane JG, Massie JB, Ball ST, Amiel ME, Chen AC, Bae WC, et al. Follow-up of osteochondral plug transfers in a goat model: a 6-month study. Am J Sports Med. 2004;32:1440-50. [632, 555, 1109, 623] reference_item 0.85 ["reference content label: 70. Lane JG, Massie JB, Ball ST, Amiel ME, Chen AC, Bae WC, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
191 13 23 reference_content 71. Lee EH, Hui JHP. The potential of stem cells in orthopaedic surgery. J Bone Joint Surg. 2006;88:841-51. [632, 627, 1108, 671] reference_item 0.85 ["reference content label: 71. Lee EH, Hui JHP. The potential of stem cells in orthopae"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
192 13 24 reference_content 72. Lee JH, Prakash KVB, Pengatteeri YH, Park SE, Koh HS, Han CW. Chondrocyte apoptosis in the regenerated articular cartilage after allogenic chondrocyte transplantation in the rabbit knee. J Bone Jo [633, 675, 1109, 766] reference_item 0.85 ["reference content label: 72. Lee JH, Prakash KVB, Pengatteeri YH, Park SE, Koh HS, Ha"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
193 13 25 reference_content 73. Levy AS, Lohnes J, Sculley S, LeCrow M, Garrett W. Chondral delamination of the knee in soccer players. Am J Sports Med. 1996;24:634-39. [632, 770, 1108, 838] reference_item 0.85 ["reference content label: 73. Levy AS, Lohnes J, Sculley S, LeCrow M, Garrett W. Chond"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
194 13 26 reference_content 74. Lexar E. Substitution of whole or half joints from freshly amputated extremities by free plastic operation. Surg Gynecol Obstet. 1908;6:601-7. [633, 843, 1108, 910] reference_item 0.85 ["reference content label: 74. Lexar E. Substitution of whole or half joints from fresh"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
195 13 27 reference_content 75. Liu G, Kawaguchi H, Ogasawara T, Asawa Y, Kishimoto J, Takahashi T, et al. Optimal combination of soluble factors for tissue engineering of permanent cartilage from cultured human chondrocytes. J [633, 915, 1109, 1007] reference_item 0.85 ["reference content label: 75. Liu G, Kawaguchi H, Ogasawara T, Asawa Y, Kishimoto J, T"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
196 13 28 reference_content 76. Liu Y, Shu XZ, Prestwich GD. Osteochondral defect repair with autologous bone marrow-derived mesenchymal stem cells in an injectable, in situ, cross-linked synthetic extracellular matrix. Tissue E [633, 1012, 1109, 1102] reference_item 0.85 ["reference content label: 76. Liu Y, Shu XZ, Prestwich GD. Osteochondral defect repair"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
197 13 29 reference_content 77. Lohmander LS, Roos H, Dahlberg L, Hoerner LA, Lark MW. Temporal patterns of stromelysin, tissue inhibitor and proteoglycan fragments in synovial fluid after injury to the knee criciate ligament or [632, 1107, 1109, 1199] reference_item 0.85 ["reference content label: 77. Lohmander LS, Roos H, Dahlberg L, Hoerner LA, Lark MW. T"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
198 13 30 reference_content 78. Magnusson PB. Technique of debridement of the knee joint for arthritis. Surg Clin North Am. 1946;26:226-49. [632, 1203, 1108, 1247] reference_item 0.85 ["reference content label: 78. Magnusson PB. Technique of debridement of the knee joint"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
199 13 31 reference_content 79. Maletius W, Messner K. The long-term prognosis for severe damage to the weightbearing cartilage in the knee: a 14-year clinical and radiographic follow-up in 28 young athletes. Acta Orthop Scand. [633, 1252, 1109, 1342] reference_item 0.85 ["reference content label: 79. Maletius W, Messner K. The long-term prognosis for sever"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
200 13 32 reference_content 80. Malinin T, Temple HT, Buck BE. Transplantation of osteochondral allografts after cold storage. J Bone Joint Surg. 2006;88:762-70. [632, 1347, 1109, 1413] reference_item 0.85 ["reference content label: 80. Malinin T, Temple HT, Buck BE. Transplantation of osteoc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
201 14 0 number 178 [98, 82, 132, 102] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
202 14 1 header Cartilage I(3) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
203 14 2 reference_content 81. Mandelbaum B, Browne JE, Fu F, Micheli LJ, Moseley JB, Erggelet C, et al. Treatment outcomes of autologous chondrocyte implantation for full-thickness articular cartilage defects of the trochlea. [97, 147, 574, 239] reference_item 0.85 ["reference content label: 81. Mandelbaum B, Browne JE, Fu F, Micheli LJ, Moseley JB, E"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
204 14 3 reference_content 82. Mandelbaum BR, Waddell D. Etiology and pathophysiology of osteoarthritis. Orthopedics. 2005;28:1-8. [97, 243, 573, 287] reference_item 0.85 ["reference content label: 82. Mandelbaum BR, Waddell D. Etiology and pathophysiology o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
205 14 4 reference_content 83. Mandelbaum BT, Browne JE, Fu F, Micheli J, Mosley JB, Erggelet C, et al. Articular cartilage lesions of the knee. Am J Sports Med. 2000;26:853-61. [97, 291, 574, 358] reference_item 0.85 ["reference content label: 83. Mandelbaum BT, Browne JE, Fu F, Micheli J, Mosley JB, Er"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
206 14 5 reference_content 84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghinelli D, Gobbi A, et al. Articular cartilage engineering with Hyalograft C. Clin Orthop. 2005;435:96-105. [98, 363, 573, 431] reference_item 0.85 ["reference content label: 84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
207 14 6 reference_content 85. Marcacci M, Kon E, Delcogliano M, Filardo G, Busacca M, Zaffagnini S. Arthroscopic autologous osteochondral grafting for cartilage defects of the knee: prospective study results at a minimum 7-yea [99, 435, 574, 549] reference_item 0.85 ["reference content label: 85. Marcacci M, Kon E, Delcogliano M, Filardo G, Busacca M, "] reference_item 0.85 reference_zone unknown_like heading_numbered True True
208 14 7 reference_content 86. Marcacci M, Kon E, Zaffagnini S, Iacono F, Neri MP, Vascellari A, et al. Multiple osteochondral arthroscopic grafting (mosaicplasty) for cartilage defects of the knee: prospective study results at [98, 554, 574, 670] reference_item 0.85 ["reference content label: 86. Marcacci M, Kon E, Zaffagnini S, Iacono F, Neri MP, Vasc"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
209 14 8 reference_content 87. Marder RA, Hopkins G, Timmerman L. Arthroscopic microfracture of chondral defects of the knee: a comparison of two postoperative treatments. Arthroscopy. 2005;21:152-8. [97, 675, 574, 743] reference_item 0.85 ["reference content label: 87. Marder RA, Hopkins G, Timmerman L. Arthroscopic microfra"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
210 14 9 reference_content 88. McAlindon TE, LaValley MP, Gulin JP, Felson DT. Glucosamine and chondroitin for treatment of osteoarthritis: a systematic quality assessment and meta-analysis. JAMA. 2000;283:1469-75. [98, 747, 573, 838] reference_item 0.85 ["reference content label: 88. McAlindon TE, LaValley MP, Gulin JP, Felson DT. Glucosam"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
211 14 10 reference_content 89. McCulloch PC, Kang RW, Sobhy MH, Hayden JK, Cole BJ. Prospective evaluation of prolonged fresh osteochondral allograft transplantation of the femoral condyle: minimum 2-year follow-up. Am J Sports [98, 842, 574, 935] reference_item 0.85 ["reference content label: 89. McCulloch PC, Kang RW, Sobhy MH, Hayden JK, Cole BJ. Pro"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
212 14 11 reference_content 90. Minas T. The role of cartilage repair techniques, including chondrocyte transplantation, in focal chondral knee damage. Instr Course Lect. 1999;48:629-43. [97, 939, 573, 1006] reference_item 0.85 ["reference content label: 90. Minas T. The role of cartilage repair techniques, includ"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
213 14 12 reference_content 91. Mithoefer K, Williams RJ III, Warren RF, Wichiewicz TL, Marx RF. High-impact athletics after knee articular cartilage repair. Am J Sports Med. 2006;34:1413-8. [97, 1011, 574, 1079] reference_item 0.85 ["reference content label: 91. Mithoefer K, Williams RJ III, Warren RF, Wichiewicz TL, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
214 14 13 reference_content 92. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR, Jones BC, et al. Chondral resurfacing of articular cartilage defects in the knee with the microfracture technique. J Bone Joint Surg. 2006 [98, 1083, 574, 1174] reference_item 0.85 ["reference content label: 92. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
215 14 14 reference_content 93. Mithoefer K, Steadman JR. The microfracture technique. Tech Knee Surg. 2006;5:140-8. [96, 1179, 574, 1222] reference_item 0.85 ["reference content label: 93. Mithoefer K, Steadman JR. The microfracture technique. T"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
216 14 15 reference_content 94. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR, Jones EC, et al. The microfracture technique for treatment of articular cartilage lesions in the knee: a prospective cohort evaluation. J [98, 1227, 575, 1318] reference_item 0.85 ["reference content label: 94. Mithoefer K, Williams RJ, Warren RF, Potter HG, Spock CR"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
217 14 16 reference_content 95. Mithöfer K, Peterson L, Mandelbaum BR, et al. Articular cartilage repair in soccer players with autologous chondrocyte transplantation: functional outcome and return to competition. Am J Sports Me [97, 1323, 574, 1414] reference_item 0.85 ["reference content label: 95. Mith\u00f6fer K, Peterson L, Mandelbaum BR, et al. Articular "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
218 14 17 reference_content 96. Mithöfer K, Minas T, Peterson L, et al. Functional outcome of articular cartilage repair in adolescent athletes. Am J Sports Med. 2005;3:1147-53. [615, 147, 1084, 214] reference_item 0.85 ["reference content label: 96. Mith\u00f6fer K, Minas T, Peterson L, et al. Functional outco"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
219 14 18 reference_content 97. Mizuno S, Alleman F, Glowacki J. Effects of medium perfusion on matrix production by bovine chondrocytes in three-dimensional collagen sponges. J Biomed Mater Res. 2001;56:368-75. [616, 219, 1083, 309] reference_item 0.85 ["reference content label: 97. Mizuno S, Alleman F, Glowacki J. Effects of medium perfu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
220 14 19 reference_content 98. Moti AW, Micheli LJ. Meniscal and articular cartilage injury in the skeletally immature knee. Instr Course Lect. 2003;52:683-90. [616, 315, 1082, 382] reference_item 0.85 ["reference content label: 98. Moti AW, Micheli LJ. Meniscal and articular cartilage in"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
221 14 20 reference_content 99. Najm WI, Reinsch S, Hoehler F, Tobis JS, Harvey PW. S-adenosyl methionine (SAMe) versus celecoxib for the treatment of osteoarthritis symptoms: a double-blind crossover trial. BMC Muscul Disord. 2 [614, 386, 1084, 478] reference_item 0.85 ["reference content label: 99. Najm WI, Reinsch S, Hoehler F, Tobis JS, Harvey PW. S-ad"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
222 14 21 reference_content 100. Nam EK, Makhsous M, Koh J, Bowen M, Nuber G, Zhang LQ. Biomechanical and histological evaluation of osteochondral transplantation in a rabbit model. Am J Sports Med. 2004;32:308-16. [609, 482, 1083, 573] reference_item 0.85 ["reference content label: 100. Nam EK, Makhsous M, Koh J, Bowen M, Nuber G, Zhang LQ. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
223 14 22 reference_content 101. Nebelung W, Wuschech H. Thirty-five years of follow-up of anterior cruciate ligament-deficient knees in high-level athletes. Arthroscopy. 2005;21:696-702. [608, 578, 1084, 647] reference_item 0.85 ["reference content label: 101. Nebelung W, Wuschech H. Thirty-five years of follow-up "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
224 14 23 reference_content 102. Nehrer S, Domayer S, Dorotka R, Schatz K, Bindreiter U, Kotz R. Three-year clinical outcome after chondrocyte transplantation using a hyaluronan matrix for cartilage repair. Eur J Rad. 2006;57:3- [609, 651, 1083, 741] reference_item 0.85 ["reference content label: 102. Nehrer S, Domayer S, Dorotka R, Schatz K, Bindreiter U,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
225 14 24 reference_content 103. Ogilvie-Harris DJ, Jackson RW. The arthroscopic treatment of chondromalacia patella. J Bone Joint Surg. 1984;66:660-5. [608, 747, 1083, 791] reference_item 0.85 ["reference content label: 103. Ogilvie-Harris DJ, Jackson RW. The arthroscopic treatme"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
226 14 25 reference_content 104. Ossendorf C, Kaps C, Kreuz PC, Burmester GR, Sittinger M, Erggelet C. Treatment of posttraumatic and focal osteoarthritic cartilage defects of the knee with autologous polymer-based three-dimensi [607, 796, 1084, 911] reference_item 0.85 ["reference content label: 104. Ossendorf C, Kaps C, Kreuz PC, Burmester GR, Sittinger "] reference_item 0.85 reference_zone unknown_like heading_numbered True True
227 14 26 reference_content 105. Outerbridge RE. The etiology of chondromalacea patellae. J Bone Joint Surg. 1961;43:752-67. [607, 915, 1083, 958] reference_item 0.85 ["reference content label: 105. Outerbridge RE. The etiology of chondromalacea patellae"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
228 14 27 reference_content 106. Pearce SG, Hurtig MB, Clarnette R, Kalra M, Cowan B, Miniaci A. An investigation of 2 techniques for optimizing joint surface congruency using multiple cylindrical osteochondral autografts. Arthr [607, 963, 1084, 1054] reference_item 0.85 ["reference content label: 106. Pearce SG, Hurtig MB, Clarnette R, Kalra M, Cowan B, Mi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
229 14 28 reference_content 107. Pearle AD, Warren RF, Rodeo SA. Basic science of articular cartilage and osteoarthritis. Clin Sports Med. 2005;24:1-12. [607, 1059, 1083, 1125] reference_item 0.85 ["reference content label: 107. Pearle AD, Warren RF, Rodeo SA. Basic science of articu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
230 14 29 reference_content 108. Peterson L, Brittberg M, Kiviranta I, Akerlund EL, Lindahl A. Autologous chondrocyte transplantation: biomechanics and long-term durability. Am J Sports Med. 2002;30:2-12. [607, 1131, 1083, 1199] reference_item 0.85 ["reference content label: 108. Peterson L, Brittberg M, Kiviranta I, Akerlund EL, Lind"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
231 14 30 reference_content 109. Petersen W, Zelle S, Zantop T. Arthroscopic implantation of a three dimensional scaffold for autologous chondrocyte transplantation. Arch Orthop Trauma Surg. 2008;128:505-8. [608, 1203, 1083, 1271] reference_item 0.85 ["reference content label: 109. Petersen W, Zelle S, Zantop T. Arthroscopic implantatio"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
232 14 31 reference_content 110. Piasecki DD, Spindler KP, Warren TA, Andrish JT, Parker RD. Intraarticular injuries associated with anterior cruciate ligament tear: findings at ligament reconstruction in high school and recreat [607, 1276, 1083, 1367] reference_item 0.85 ["reference content label: 110. Piasecki DD, Spindler KP, Warren TA, Andrish JT, Parker"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
233 14 32 reference_content 111. Potter HG, Foo LF. Magnetic resonance imaging of articular cartilage. Am J Sports Med. 2006;34:661-7. [606, 1372, 1084, 1414] reference_item 0.85 ["reference content label: 111. Potter HG, Foo LF. Magnetic resonance imaging of articu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
234 15 0 header McAdams et al. [122, 82, 245, 103] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
235 15 1 number 179 [1076, 81, 1109, 102] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
236 15 2 reference_content 112. Potter HG, Linklater JM, Allen AA, Hannafin JA, Haas SB. Magnetic resonance imaging of articular cartilage in the knee. J Bone Joint Surg Am. 1998;80:1276-84. [124, 147, 599, 214] reference_item 0.85 ["reference content label: 112. Potter HG, Linklater JM, Allen AA, Hannafin JA, Haas SB"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
237 15 3 reference_content 113. Pridie KH. A method of resurfacing osteoarthritic knee joints. J Bone Joint Surg. 1959;41:618-9. [124, 219, 598, 263] reference_item 0.85 ["reference content label: 113. Pridie KH. A method of resurfacing osteoarthritic knee "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
238 15 4 reference_content 114. Rae PJ, Noble J. Arthroscopic drilling of osteochondral lesions of the knee. J Bone Joint Surg. 1989;71:534-41. [125, 267, 598, 310] reference_item 0.85 ["reference content label: 114. Rae PJ, Noble J. Arthroscopic drilling of osteochondral"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
239 15 5 reference_content 115. Reddy S, Pedowitz DI, Parekh SG, Sennett BJ, Okereke E. The morbidity associated with osteochondral harvest from asymptomatic knees for the treatment of osteochondral lesions of the talus. Am J S [126, 315, 600, 406] reference_item 0.85 ["reference content label: 115. Reddy S, Pedowitz DI, Parekh SG, Sennett BJ, Okereke E."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
240 15 6 reference_content 116. Rodrigo JJ, Steadman RJ, Silliman JF. Improvement of full-thickness chondral defect healing in the human knee after debridement and microfracture using continuous passive motion. Am J Knee Surg. [125, 411, 600, 502] reference_item 0.85 ["reference content label: 116. Rodrigo JJ, Steadman RJ, Silliman JF. Improvement of fu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
241 15 7 reference_content 117. Roos EM, Dahlberg L. Positive effects of moderate exercise on glycosaminoglycan content in knee cartilage. Arthrit Rheum. 2005;52:3507-14. [125, 507, 599, 573] reference_item 0.85 ["reference content label: 117. Roos EM, Dahlberg L. Positive effects of moderate exerc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
242 15 8 reference_content 118. Roos H, Lindberg H, Ornell M. Soccer as a cause of hip and knee osteoarthritis. Ann Rheum Dis. 1996;55:690-8. [125, 578, 599, 623] reference_item 0.85 ["reference content label: 118. Roos H, Lindberg H, Ornell M. Soccer as a cause of hip "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
243 15 9 reference_content 119. Roos H. Are there long-term sequelae from soccer? Clin Sports Med. 1998;17:819-83. [125, 627, 599, 670] reference_item 0.85 ["reference content label: 119. Roos H. Are there long-term sequelae from soccer? Clin "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
244 15 10 reference_content 120. Schonholtz GJ, Ling B. Arthroscopic chondroplasty of the patella. Arthroscopy. 1985;1:92-6. [125, 674, 598, 719] reference_item 0.85 ["reference content label: 120. Schonholtz GJ, Ling B. Arthroscopic chondroplasty of th"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
245 15 11 reference_content 121. Sharma A, Wood LD, Richardson JB, Roberts S, Kuiper NJ. Glycosaminoglycan profiles of repair tissue formed following autologous chondrocyte implantation differ from control cartilage. Arthrit Res [125, 724, 599, 815] reference_item 0.85 ["reference content label: 121. Sharma A, Wood LD, Richardson JB, Roberts S, Kuiper NJ."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
246 15 12 reference_content 122. Shelbourne KD, Jari S, Gray T. Outcome of untreated traumatic articular cartilage defects of the knee: a natural history study. J Bone Joint Surg Am. 2003;85 Suppl 2:8-16. [125, 819, 599, 887] reference_item 0.85 ["reference content label: 122. Shelbourne KD, Jari S, Gray T. Outcome of untreated tra"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
247 15 13 reference_content 123. Shintani N, Kurth T, Hunziker EB. Expression of cartilage-related genes in bovine synovial tissue. J Orthop Res. 2007;25:813-9. [124, 891, 598, 957] reference_item 0.85 ["reference content label: 123. Shintani N, Kurth T, Hunziker EB. Expression of cartila"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
248 15 14 reference_content 124. Skoog T, Johansson SH. The formation of articular cartilage from free perichondrial grafts. Plast Reconst Surg. 1976;57:1-6. [125, 963, 599, 1008] reference_item 0.85 ["reference content label: 124. Skoog T, Johansson SH. The formation of articular carti"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
249 15 15 reference_content 125. Smith AD, Tao SS. Knee injuries in young athletes. Clin Sports Med. 1995;14:629-50. [125, 1011, 598, 1055] reference_item 0.85 ["reference content label: 125. Smith AD, Tao SS. Knee injuries in young athletes. Clin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
250 15 16 reference_content 126. Smith-Peterson MN. Evolution of mould arthroplasty of the hip joint. J Bone Joint Surg. 1948;30:59-75. [125, 1059, 598, 1103] reference_item 0.85 ["reference content label: 126. Smith-Peterson MN. Evolution of mould arthroplasty of t"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
251 15 17 reference_content 127. Sprague NF 3rd. Arthroscopic debridement for degenerative knee joint disease. Clin Orthop Relat Res. 1981;160:118-23. [125, 1107, 599, 1151] reference_item 0.85 ["reference content label: 127. Sprague NF 3rd. Arthroscopic debridement for degenerati"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
252 15 18 reference_content 128. Steadman JR, Rodkey WG, Singleton SB. Microfracture technique for full thickness chondral defects: technique and clinical results. Oper Tech Orthopedics. 1997;7:300-4. [125, 1155, 599, 1223] reference_item 0.85 ["reference content label: 128. Steadman JR, Rodkey WG, Singleton SB. Microfracture tec"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
253 15 19 reference_content 129. Steadman JR, Briggs KK, Rodrigo JJ, Kocher MS, Gill TJ, Rodkey WG. Outcomes of microfracture for traumatic chondral defects of the knee: average 11-year follow-up. Arthroscopy. 2003;19:477-84. [126, 1227, 600, 1318] reference_item 0.85 ["reference content label: 129. Steadman JR, Briggs KK, Rodrigo JJ, Kocher MS, Gill TJ,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
254 15 20 reference_content 130. Steadman JR, Miller BS, Karas SG, Schlegel TF, Briggs KK, Hawkins RJ. The microfracture technique in the treatment of full-thickness chondral lesions of the knee in National Football League playe [633, 147, 1110, 239] reference_item 0.85 ["reference content label: 130. Steadman JR, Miller BS, Karas SG, Schlegel TF, Briggs K"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
255 15 21 reference_content 131. Steinwachs M, Kreuz PC. Autologous chondrocyte implantation in chondral defects of the knee with a type I/III collagen membrane: a prospective study with a 3-year follow-up. Arthroscopy. 2007;23: [633, 243, 1108, 334] reference_item 0.85 ["reference content label: 131. Steinwachs M, Kreuz PC. Autologous chondrocyte implanta"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
256 15 22 reference_content 132. Stone KR, Walgenbach AW, Freyer A, Turek TJ, Speer DP. Articular cartilage paste grafting to full-thickness articular cartilage knee joint lesions: a 2- to 12-year follow-up. Arthroscopy. 2006;22 [633, 339, 1108, 430] reference_item 0.85 ["reference content label: 132. Stone KR, Walgenbach AW, Freyer A, Turek TJ, Speer DP. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
257 15 23 reference_content 133. Theosakis J, Adderly B, Fox B. The arthritis cure: the medical miracle that can halt, reverse, and may even cure osteoarthritis. Vol. XVI. 1st ed. New York: St. Martin's Press; 1997. [633, 435, 1108, 525] reference_item 0.85 ["reference content label: 133. Theosakis J, Adderly B, Fox B. The arthritis cure: the "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
258 15 24 reference_content 134. Towheed TE. Current status of glucosamine therapy in osteoarthritis. Arthr Rheum. 2003;49:601-4. [633, 531, 1108, 574] reference_item 0.85 ["reference content label: 134. Towheed TE. Current status of glucosamine therapy in os"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
259 15 25 reference_content 135. Trattnig S, Pinker K, Drestan C, Plank C, Millinton S, Marlavits S. Matrix-based autologous chondrocyte implantation for cartilage repair with Hyalograft C: two-year follow-up by magnetic resonan [635, 579, 1109, 670] reference_item 0.85 ["reference content label: 135. Trattnig S, Pinker K, Drestan C, Plank C, Millinton S, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
260 15 26 reference_content 136. Victor von Engelhardt L, Kraft CN, Pennekamp PH, Schild HH, Schmitz A, von Falkenhausen M. The evaluation of articular cartilage lesions of the knee with a 3-tesla magnet. Arthroscopy. 2007;23:49 [634, 675, 1109, 765] reference_item 0.85 ["reference content label: 136. Victor von Engelhardt L, Kraft CN, Pennekamp PH, Schild"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
261 15 27 reference_content 137. Vrahas MS, Mithoefer K, Joseph D. Long-term effects of articular impaction. Clin Orthop. 2004;423:40-3. [632, 771, 1110, 815] reference_item 0.85 ["reference content label: 137. Vrahas MS, Mithoefer K, Joseph D. Long-term effects of "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
262 15 28 reference_content 138. Wang DA, Varghese S, Sharma B, Strehin I, Fermanian S, Gorham J. Multifunctional chondroitin sulphate for cartilage tissue-biomaterial integration. Nat Mater. 2007;6:385-92. [633, 820, 1109, 887] reference_item 0.85 ["reference content label: 138. Wang DA, Varghese S, Sharma B, Strehin I, Fermanian S, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
263 15 29 reference_content 139. Wang CT, Lin J, Chang CJ, Lin YT, Hou SM. Therapeutic effects of hyaluronic acid on osteoarthritis of the knee: a meta-analysis of randomized controlled trials. J Bone Joint Surg. 2004;86:538-55. [633, 892, 1109, 982] reference_item 0.85 ["reference content label: 139. Wang CT, Lin J, Chang CJ, Lin YT, Hou SM. Therapeutic e"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
264 15 30 reference_content 140. Williams RJ, Ranawat AS, Potter HG, Carter T, Warren RF. Fresh stored allografts for the treatment of osteochondral defects of the knee. J Bone Joint Surg. 2007;89:718-26. [633, 988, 1108, 1055] reference_item 0.85 ["reference content label: 140. Williams RJ, Ranawat AS, Potter HG, Carter T, Warren RF"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
265 15 31 reference_content 141. Williams SK, Amiel D, Ball ST, Allen RT, Wong VW, Chen AC, et al. Prolonged storage effects on the articular cartilage of fresh human osteochondral allografts. J Bone Joint Surg. 2003;85:2111-20. [633, 1059, 1109, 1150] reference_item 0.85 ["reference content label: 141. Williams SK, Amiel D, Ball ST, Allen RT, Wong VW, Chen "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
266 15 32 reference_content 142. Wood JJ, Malek MA, Frassica FJ, Polder JA, Mohan AK, Bloom ET, et al. Autologous cultured chondrocytes: adverse events reported to the United States Food and Drug Administration. J Bone Joint Sur [633, 1154, 1109, 1246] reference_item 0.85 ["reference content label: 142. Wood JJ, Malek MA, Frassica FJ, Polder JA, Mohan AK, Bl"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
267 15 33 reference_content 143. Yan H, Yu C. Repair of full-thickness cartilage defects with cells of different origin in a rabbit model. Arthroscopy. 2007;23:178-87. [633, 1251, 1109, 1318] reference_item 0.85 ["reference content label: 143. Yan H, Yu C. Repair of full-thickness cartilage defects"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True

View file

@ -0,0 +1,71 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,doc_title,Biomechanical characterization of tissue-engineered cartilages by photoacoustic measurement,"[192, 172, 1047, 247]",paper_title,0.8,"[""page-1 zone title_zone: Biomechanical characterization of tissue-engineered cartilag""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,1,text,"Miya Ishihara $ ^{*a} $, Masato Sato $ ^{a} $, Shunichi Sato $ ^{b} $, Toshiyuki Kikuchi $ ^{c} $, Kyosuke Fujikawa $ ^{c} $, Makoto Kikuchi $ ^{a} $","[327, 286, 913, 346]",authors,0.8,"[""page-1 zone author_zone: Miya Ishihara $ ^{*a} $, Masato Sato $ ^{a} $, Shunichi Sato""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,2,text," $ ^{a} $ Dept. of Med. Engng., National Defense Medical College, 3-2 Namiki, Tokorozawa, JAPAN
$ ^{b} $ Div. of Bio. Inf. Sci., National Defense Medical College Research Inst., 3-2 Namiki, Tokorozaw","[141, 365, 1099, 451]",authors,0.8,"[""page-1 zone author_zone: $ ^{a} $ Dept. of Med. Engng., National Defense Medical Coll""]",authors,0.8,frontmatter_main_zone,support_like,affiliation_marker,True,True
1,3,paragraph_title,ABSTRACT,"[556, 494, 683, 518]",abstract_heading,0.95,"[""abstract heading""]",abstract_heading,0.95,frontmatter_main_zone,heading_like,short_fragment,True,True
1,4,abstract,We have demonstrated a capability of biomechanical characterization by photoacoustic measurement using various concentration gelatins as tissue phantom. We have also evaluated the viscoelasticity of t,"[130, 533, 1106, 895]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,5,text,"Keywords: viscoelastic, photoacoustic, laser-induced stress wave, piezoelectric, rheological, relaxation parameter, cartilage, tissue engineering, gelatin, culture","[149, 968, 1075, 1016]",structured_insert,0.7,"[""keyword-like block: Keywords: viscoelastic, photoacoustic, laser-induced stress ""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,6,paragraph_title,1. INTRODUCTION,"[506, 1070, 728, 1095]",section_heading,0.85,"[""paragraph_title label with numbering: 1. INTRODUCTION""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
1,7,text,"In order to describe the behavior of structural tissues, such as cartilage, muscle, etc, viscoelastic parameters are required $ {}^{(1)} $. For example, articular cartilage functions to distribute jo","[128, 1121, 1103, 1286]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,8,text,There has been an emerging and decisive needs in recent years for a noninvasive method of measuring tissue viscoelasticities for applications of tissue engineering to weight-bearing structural tissues,"[128, 1303, 1105, 1396]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,9,footnote,*kobako@cc.ndmc.ac.jp; phone +81-42-995-1627; fax +81-42-996-5199,"[134, 1414, 729, 1440]",footnote,0.7,"[""footnote label: *kobako@cc.ndmc.ac.jp; phone +81-42-995-1627; fax +81-42-996""]",footnote,0.7,body_zone,body_like,none,True,True
1,10,footnote,"Laser-Tissue Interaction XIV, Steven L. Jacques, Donald D. Duncan, Sean J. Kirkpatrick, Andres Kriete, Editors, Proceedings of SPIE Vol. 4961 (2003) © 2003 SPIE · 1605-7422/03/$15.00","[102, 1459, 808, 1495]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Laser-Tissue Interaction XIV, Steven L. Jacques, Donald D. D""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,11,number,221,"[1070, 1454, 1102, 1472]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
1,12,footer,Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx,"[15, 1563, 972, 1582]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,text,"the viscoelasticities of tissue-engineered structural tissues (i.e., evaluation of the major functions of structural tissues) such as cartilage is needed.","[130, 169, 1103, 218]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,1,text,"In this study, we propose a novel noninvasive method for viscoelastic characterization of structural tissue by photoacoustic measurement which includes capability of noninvasive and real-time measurem","[128, 235, 1058, 353]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,2,paragraph_title,2. THEORETICAL STUDY,"[470, 394, 762, 419]",section_heading,0.85,"[""paragraph_title label with numbering: 2. THEORETICAL STUDY""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
2,3,text,"Stress waves can be induced under the following condition: $ t_p \ll 1/\mu_a $ x Vs, where, Vs is sound velocity of the sample, $ t_p $ is pulse duration of the light and $ \mu_a $ is absorption co","[128, 446, 1103, 541]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,display_formula," $$ \mathbf{p=G\gamma+\eta d\gamma/d t}, $$ ","[129, 571, 269, 597]",non_body_insert,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,body_zone,body_like,none,False,False
2,5,formula_number,Eq.(1),"[417, 572, 477, 597]",non_body_insert,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,body_zone,body_like,short_fragment,False,False
2,6,text,"where p is stress, $ \gamma $ is strain, G is elastic modulus and $ \eta $ is viscosity. The expression Eq.(1) becomes","[128, 612, 948, 638]",non_body_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
2,7,display_formula, $$ \mathbf{p}=\mathbf{G}(\gamma+\eta/\mathrm{~G~d}\gamma/\mathrm{d t}). $$ ,"[128, 651, 318, 676]",non_body_insert,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,body_zone,body_like,none,False,False
2,8,display_formula, $$ \mathrm{Eq.}(2) $$ ,"[417, 653, 477, 676]",non_body_insert,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,body_zone,body_like,none,False,False
2,9,text,"Viscosity-elasticity ratio ( $ \eta $/G) is called relaxation parameter $ {}^{(6)} $. Thus, the relaxation parameter is derived by decay times of dynamics of stress waves when the stress waves are af","[128, 679, 1099, 731]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,10,paragraph_title,3. MATERIALS AND METHODS,"[437, 790, 790, 816]",section_heading,0.85,"[""paragraph_title label with numbering: 3. MATERIALS AND METHODS""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
2,11,image,,"[160, 844, 980, 1291]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,12,figure_title,Fig.1. Experimental arrangement of photoacoustic measurement.,"[364, 1313, 855, 1338]",figure_caption_candidate,0.85,"[""figure_title label: Fig.1. Experimental arrangement of photoacoustic measurement""]",figure_caption,0.85,body_zone,legend_like,none,False,False
2,13,number,222,"[99, 1450, 131, 1467]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,14,footer,Proc. of SPIE Vol. 4961,"[146, 1448, 322, 1469]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,15,footer,Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx,"[14, 1563, 972, 1582]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,0,text,"The experiment set-up is shown in Fig. 1. An optical parametric oscillator (OPO; pulse width, 6 ns (FWHM)) was tuned at 250 nm and used for excitation of stress waves. The light source was operated at","[127, 173, 1103, 359]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,1,text,"As samples, gelatin of 1.2 mm in thickness was used as biological tissue phantom. The density of gelatin was prepared in the range of 5-25%. Tissue-engineered cartilage for transplantation was prepare","[127, 376, 1103, 471]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,2,image,,"[423, 486, 805, 791]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,3,figure_title,Fig.2. SEM (scanning electron microscope) image of ACHMS (atelocollagen honeycomb-shaped) scaffold $ ^{(7)} $.,"[203, 810, 1018, 836]",figure_caption_candidate,0.85,"[""figure_title label: Fig.2. SEM (scanning electron microscope) image of ACHMS (at""]",figure_caption,0.85,body_zone,legend_like,none,False,False
3,4,paragraph_title,4. RESULTS AND DISCUSSION,"[441, 896, 784, 921]",section_heading,0.85,"[""paragraph_title label with numbering: 4. RESULTS AND DISCUSSION""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
3,5,chart,,"[272, 934, 942, 1314]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
3,6,figure_title,Fig.3. Measured photoacoustic signal. Sample was gelatin of 25% in density.,"[313, 1350, 907, 1376]",figure_caption_candidate,0.85,"[""figure_title label: Fig.3. Measured photoacoustic signal. Sample was gelatin of ""]",figure_caption,0.85,body_zone,legend_like,none,False,False
3,7,footer,Proc. of SPIE Vol. 4961,"[877, 1448, 1051, 1468]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,8,number,223,"[1069, 1450, 1101, 1468]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,9,footer,Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx,"[15, 1563, 973, 1582]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,0,text,Figure 3 shows the recorded waveform of the photoacoustic signal of the gelatin of 25% in density. The signal shows a pulse sequence that is due to the acoustic multiple reflections at acoustic bounda,"[130, 169, 1107, 357]",body_paragraph,0.9,"[""figure caption candidate (body narrative): Figure 3 shows the recorded waveform of the photoacoustic si""]",figure_caption_candidate,0.9,display_zone,legend_like,figure_number,True,True
4,1,image,,"[150, 386, 995, 784]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
4,2,figure_title,Fig.4 The scheme of behavior of photoacoustic signal and transient measured signal.,"[298, 822, 931, 848]",figure_caption_candidate,0.85,"[""figure_title label: Fig.4 The scheme of behavior of photoacoustic signal and tra""]",figure_caption,0.85,,legend_like,none,False,False
4,3,chart,,"[271, 887, 992, 1279]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
4,4,figure_title,Fig.5 Comparison between decay time of photoacoustic signal and intrinsic relaxation parameter. Decay time of photoacoustic signal is averaged by 32 times. Error bar is standard deviation. Intrinsic r,"[140, 1293, 1084, 1364]",figure_caption_candidate,0.85,"[""figure_title label: Fig.5 Comparison between decay time of photoacoustic signal ""]",figure_caption,0.85,,legend_like,none,False,False
4,5,number,224,"[99, 1450, 131, 1467]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
4,6,footer,Proc. of SPIE Vol. 4961,"[147, 1448, 321, 1469]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
4,7,footer,Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx,"[15, 1562, 972, 1581]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
5,0,display_formula, $$ Eq.(3) $$ ,"[129, 169, 478, 197]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
5,1,display_formula," $$ \mathbf{I_{p2}}=\mathbf{k*R*}\exp(-\mathbf{t_{p2}}/\tau), $$ ","[132, 213, 310, 242]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
5,2,display_formula," $$ \mathrm{I_{p3}=k*R^{2}*exp(-t_{p3}/\tau),} $$ ","[132, 257, 314, 285]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
5,3,formula_number,Eq.(5),"[421, 259, 479, 284]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
5,4,text,where $ I_{p1}-I_{p3} $ and $ t_{p1}-t_{p3} $ are the amplitude of each peak and the time after the laser pulse (Fig. 4). R denotes a product of the reflectance at the acoustic boundary. Using the L,"[130, 302, 1105, 377]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,5,text,Figure 5 represents the comparison between decay time of photoacoustic signal and intrinsic relaxation parameter as a function of density of the gelatin. The decay times obtained by the photoacoustic ,"[128, 393, 1105, 489]",body_paragraph,0.9,"[""figure caption candidate (body narrative): Figure 5 represents the comparison between decay time of pho""]",figure_caption_candidate,0.9,display_zone,legend_like,figure_number,True,True
5,6,text,"The recorded photoacoustic signals from tissue engineered cartilages show a pulse sequence similar to that from the gelatin models shown in Fig. 3. Longer culture give larger viscoelasticity, which is","[128, 506, 1106, 601]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,paragraph_title,5. CONCLUSION,"[518, 661, 716, 684]",section_heading,0.85,"[""paragraph_title label with numbering: 5. CONCLUSION""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
5,8,text,"We have proposed a method for noninvasive characterization of the viscoelasticity of biological tissue using photoacoustic measurement. Using gelatin models, it was found that the intrinsic viscoelast","[128, 686, 1104, 803]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,paragraph_title,6. REFERENCES,"[518, 869, 713, 893]",reference_item,0.85,"[""paragraph_title label with numbering: 6. REFERENCES""]",section_heading,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,10,reference_content,1. I. S. Kovach: Biophys. Chem. 59 (1996) 61.,"[131, 935, 524, 958]",reference_item,0.85,"[""reference content label: 1. I. S. Kovach: Biophys. Chem. 59 (1996) 61.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,11,reference_content,"2. V. C. Mow, A. Ratcliffe, and A. R. Poole: Biomaterials, 13 (1992) 67.","[130, 959, 734, 983]",reference_item,0.85,"[""reference content label: 2. V. C. Mow, A. Ratcliffe, and A. R. Poole: Biomaterials, 1""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,12,reference_content,"3. R. P. Lanza, R. Langer and J. Vacanti: Principles of Tissue Engineering, ed. C. A. Vacanti (Academic Press, San Diego, 2000) $ 2^{nd} $ ed., Chap. 47, P. 671.","[129, 983, 1074, 1028]",reference_item,0.85,"[""reference content label: 3. R. P. Lanza, R. Langer and J. Vacanti: Principles of Tiss""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,13,reference_content,"4. J. Toyras, T. L. Laitinen, M. Niinimaki, R. Lindgren, M.T. Nieminen, I. Kiviranta, and J. S. Jurvelin: J. Biomech. 34 (2001) 251.","[130, 1029, 1077, 1074]",reference_item,0.85,"[""reference content label: 4. J. Toyras, T. L. Laitinen, M. Niinimaki, R. Lindgren, M.T""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,14,reference_content,"5. A. F. Mak, W. M. Lai, and V. C. Mow: J. Biomech. 20 (1987) 703.","[130, 1074, 710, 1097]",reference_item,0.85,"[""reference content label: 5. A. F. Mak, W. M. Lai, and V. C. Mow: J. Biomech. 20 (1987""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,15,reference_content,"6. K. Ozaki: Rheology, ed. K. Ozaki (Koubunsikankoukai, Kyoto, 2001) 5th ed., p.23.","[129, 1097, 836, 1121]",reference_item,0.85,"[""reference content label: 6. K. Ozaki: Rheology, ed. K. Ozaki (Koubunsikankoukai, Kyot""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,16,reference_content,"7. M. Sato, T. Asazuma, M. Ishihara, T. Kikuchi, K. Masuoka, S. Ichimura, M. Kikuchi, A. Kurita, and K. Fujikawa: J. Biomed. Mater. Res. 64A (2003) 248.","[130, 1121, 1082, 1166]",reference_item,0.85,"[""reference content label: 7. M. Sato, T. Asazuma, M. Ishihara, T. Kikuchi, K. Masuoka,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,17,reference_content,8. C. R. Mol and P. A. Breddels: J. Acoust. Soc. Am. 71 (1982) 455.,"[129, 1166, 701, 1189]",reference_item,0.85,"[""reference content label: 8. C. R. Mol and P. A. Breddels: J. Acoust. Soc. Am. 71 (198""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,18,reference_content,"9. I. Martin, B. Obradovic, S. Treppo, A.J. Grodzinsky, R. Langer, L.E. Freed and G.V. Novakovic: Biorheology 37 (2000) 141.","[129, 1191, 1081, 1235]",reference_item,0.85,"[""reference content label: 9. I. Martin, B. Obradovic, S. Treppo, A.J. Grodzinsky, R. L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
5,19,footer,Proc. of SPIE Vol. 4961,"[877, 1448, 1051, 1468]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
5,20,number,225,"[1068, 1450, 1101, 1468]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
5,21,footer,Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx,"[15, 1563, 973, 1583]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 doc_title Biomechanical characterization of tissue-engineered cartilages by photoacoustic measurement [192, 172, 1047, 247] paper_title 0.8 ["page-1 zone title_zone: Biomechanical characterization of tissue-engineered cartilag"] paper_title 0.8 frontmatter_main_zone support_like none True True
3 1 1 text Miya Ishihara $ ^{*a} $, Masato Sato $ ^{a} $, Shunichi Sato $ ^{b} $, Toshiyuki Kikuchi $ ^{c} $, Kyosuke Fujikawa $ ^{c} $, Makoto Kikuchi $ ^{a} $ [327, 286, 913, 346] authors 0.8 ["page-1 zone author_zone: Miya Ishihara $ ^{*a} $, Masato Sato $ ^{a} $, Shunichi Sato"] authors 0.8 frontmatter_main_zone support_like none True True
4 1 2 text $ ^{a} $ Dept. of Med. Engng., National Defense Medical College, 3-2 Namiki, Tokorozawa, JAPAN $ ^{b} $ Div. of Bio. Inf. Sci., National Defense Medical College Research Inst., 3-2 Namiki, Tokorozaw [141, 365, 1099, 451] authors 0.8 ["page-1 zone author_zone: $ ^{a} $ Dept. of Med. Engng., National Defense Medical Coll"] authors 0.8 frontmatter_main_zone support_like affiliation_marker True True
5 1 3 paragraph_title ABSTRACT [556, 494, 683, 518] abstract_heading 0.95 ["abstract heading"] abstract_heading 0.95 frontmatter_main_zone heading_like short_fragment True True
6 1 4 abstract We have demonstrated a capability of biomechanical characterization by photoacoustic measurement using various concentration gelatins as tissue phantom. We have also evaluated the viscoelasticity of t [130, 533, 1106, 895] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
7 1 5 text Keywords: viscoelastic, photoacoustic, laser-induced stress wave, piezoelectric, rheological, relaxation parameter, cartilage, tissue engineering, gelatin, culture [149, 968, 1075, 1016] structured_insert 0.7 ["keyword-like block: Keywords: viscoelastic, photoacoustic, laser-induced stress "] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
8 1 6 paragraph_title 1. INTRODUCTION [506, 1070, 728, 1095] section_heading 0.85 ["paragraph_title label with numbering: 1. INTRODUCTION"] section_heading 0.85 body_zone heading_like heading_numbered True True
9 1 7 text In order to describe the behavior of structural tissues, such as cartilage, muscle, etc, viscoelastic parameters are required $ {}^{(1)} $. For example, articular cartilage functions to distribute jo [128, 1121, 1103, 1286] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
10 1 8 text There has been an emerging and decisive needs in recent years for a noninvasive method of measuring tissue viscoelasticities for applications of tissue engineering to weight-bearing structural tissues [128, 1303, 1105, 1396] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
11 1 9 footnote *kobako@cc.ndmc.ac.jp; phone +81-42-995-1627; fax +81-42-996-5199 [134, 1414, 729, 1440] footnote 0.7 ["footnote label: *kobako@cc.ndmc.ac.jp; phone +81-42-995-1627; fax +81-42-996"] footnote 0.7 body_zone body_like none True True
12 1 10 footnote Laser-Tissue Interaction XIV, Steven L. Jacques, Donald D. Duncan, Sean J. Kirkpatrick, Andres Kriete, Editors, Proceedings of SPIE Vol. 4961 (2003) © 2003 SPIE · 1605-7422/03/$15.00 [102, 1459, 808, 1495] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Laser-Tissue Interaction XIV, Steven L. Jacques, Donald D. D"] frontmatter_noise 0.8 body_zone body_like none False False
13 1 11 number 221 [1070, 1454, 1102, 1472] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
14 1 12 footer Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx [15, 1563, 972, 1582] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
15 2 0 text the viscoelasticities of tissue-engineered structural tissues (i.e., evaluation of the major functions of structural tissues) such as cartilage is needed. [130, 169, 1103, 218] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
16 2 1 text In this study, we propose a novel noninvasive method for viscoelastic characterization of structural tissue by photoacoustic measurement which includes capability of noninvasive and real-time measurem [128, 235, 1058, 353] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
17 2 2 paragraph_title 2. THEORETICAL STUDY [470, 394, 762, 419] section_heading 0.85 ["paragraph_title label with numbering: 2. THEORETICAL STUDY"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
18 2 3 text Stress waves can be induced under the following condition: $ t_p \ll 1/\mu_a $ x Vs, where, Vs is sound velocity of the sample, $ t_p $ is pulse duration of the light and $ \mu_a $ is absorption co [128, 446, 1103, 541] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
19 2 4 display_formula $$ \mathbf{p=G\gamma+\eta d\gamma/d t}, $$ [129, 571, 269, 597] non_body_insert 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 body_zone body_like none False False
20 2 5 formula_number Eq.(1) [417, 572, 477, 597] non_body_insert 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 body_zone body_like short_fragment False False
21 2 6 text where p is stress, $ \gamma $ is strain, G is elastic modulus and $ \eta $ is viscosity. The expression Eq.(1) becomes [128, 612, 948, 638] non_body_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
22 2 7 display_formula $$ \mathbf{p}=\mathbf{G}(\gamma+\eta/\mathrm{~G~d}\gamma/\mathrm{d t}). $$ [128, 651, 318, 676] non_body_insert 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 body_zone body_like none False False
23 2 8 display_formula $$ \mathrm{Eq.}(2) $$ [417, 653, 477, 676] non_body_insert 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 body_zone body_like none False False
24 2 9 text Viscosity-elasticity ratio ( $ \eta $/G) is called relaxation parameter $ {}^{(6)} $. Thus, the relaxation parameter is derived by decay times of dynamics of stress waves when the stress waves are af [128, 679, 1099, 731] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 2 10 paragraph_title 3. MATERIALS AND METHODS [437, 790, 790, 816] section_heading 0.85 ["paragraph_title label with numbering: 3. MATERIALS AND METHODS"] section_heading 0.85 body_zone heading_like heading_numbered True True
26 2 11 image [160, 844, 980, 1291] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
27 2 12 figure_title Fig.1. Experimental arrangement of photoacoustic measurement. [364, 1313, 855, 1338] figure_caption_candidate 0.85 ["figure_title label: Fig.1. Experimental arrangement of photoacoustic measurement"] figure_caption 0.85 body_zone legend_like none False False
28 2 13 number 222 [99, 1450, 131, 1467] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
29 2 14 footer Proc. of SPIE Vol. 4961 [146, 1448, 322, 1469] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
30 2 15 footer Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx [14, 1563, 972, 1582] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
31 3 0 text The experiment set-up is shown in Fig. 1. An optical parametric oscillator (OPO; pulse width, 6 ns (FWHM)) was tuned at 250 nm and used for excitation of stress waves. The light source was operated at [127, 173, 1103, 359] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
32 3 1 text As samples, gelatin of 1.2 mm in thickness was used as biological tissue phantom. The density of gelatin was prepared in the range of 5-25%. Tissue-engineered cartilage for transplantation was prepare [127, 376, 1103, 471] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
33 3 2 image [423, 486, 805, 791] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
34 3 3 figure_title Fig.2. SEM (scanning electron microscope) image of ACHMS (atelocollagen honeycomb-shaped) scaffold $ ^{(7)} $. [203, 810, 1018, 836] figure_caption_candidate 0.85 ["figure_title label: Fig.2. SEM (scanning electron microscope) image of ACHMS (at"] figure_caption 0.85 body_zone legend_like none False False
35 3 4 paragraph_title 4. RESULTS AND DISCUSSION [441, 896, 784, 921] section_heading 0.85 ["paragraph_title label with numbering: 4. RESULTS AND DISCUSSION"] section_heading 0.85 body_zone heading_like heading_numbered True True
36 3 5 chart [272, 934, 942, 1314] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
37 3 6 figure_title Fig.3. Measured photoacoustic signal. Sample was gelatin of 25% in density. [313, 1350, 907, 1376] figure_caption_candidate 0.85 ["figure_title label: Fig.3. Measured photoacoustic signal. Sample was gelatin of "] figure_caption 0.85 body_zone legend_like none False False
38 3 7 footer Proc. of SPIE Vol. 4961 [877, 1448, 1051, 1468] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
39 3 8 number 223 [1069, 1450, 1101, 1468] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
40 3 9 footer Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx [15, 1563, 973, 1582] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
41 4 0 text Figure 3 shows the recorded waveform of the photoacoustic signal of the gelatin of 25% in density. The signal shows a pulse sequence that is due to the acoustic multiple reflections at acoustic bounda [130, 169, 1107, 357] body_paragraph 0.9 ["figure caption candidate (body narrative): Figure 3 shows the recorded waveform of the photoacoustic si"] figure_caption_candidate 0.9 display_zone legend_like figure_number True True
42 4 1 image [150, 386, 995, 784] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
43 4 2 figure_title Fig.4 The scheme of behavior of photoacoustic signal and transient measured signal. [298, 822, 931, 848] figure_caption_candidate 0.85 ["figure_title label: Fig.4 The scheme of behavior of photoacoustic signal and tra"] figure_caption 0.85 legend_like none False False
44 4 3 chart [271, 887, 992, 1279] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
45 4 4 figure_title Fig.5 Comparison between decay time of photoacoustic signal and intrinsic relaxation parameter. Decay time of photoacoustic signal is averaged by 32 times. Error bar is standard deviation. Intrinsic r [140, 1293, 1084, 1364] figure_caption_candidate 0.85 ["figure_title label: Fig.5 Comparison between decay time of photoacoustic signal "] figure_caption 0.85 legend_like none False False
46 4 5 number 224 [99, 1450, 131, 1467] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
47 4 6 footer Proc. of SPIE Vol. 4961 [147, 1448, 321, 1469] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
48 4 7 footer Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx [15, 1562, 972, 1581] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
49 5 0 display_formula $$ Eq.(3) $$ [129, 169, 478, 197] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like short_fragment False True
50 5 1 display_formula $$ \mathbf{I_{p2}}=\mathbf{k*R*}\exp(-\mathbf{t_{p2}}/\tau), $$ [132, 213, 310, 242] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
51 5 2 display_formula $$ \mathrm{I_{p3}=k*R^{2}*exp(-t_{p3}/\tau),} $$ [132, 257, 314, 285] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
52 5 3 formula_number Eq.(5) [421, 259, 479, 284] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
53 5 4 text where $ I_{p1}-I_{p3} $ and $ t_{p1}-t_{p3} $ are the amplitude of each peak and the time after the laser pulse (Fig. 4). R denotes a product of the reflectance at the acoustic boundary. Using the L [130, 302, 1105, 377] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
54 5 5 text Figure 5 represents the comparison between decay time of photoacoustic signal and intrinsic relaxation parameter as a function of density of the gelatin. The decay times obtained by the photoacoustic [128, 393, 1105, 489] body_paragraph 0.9 ["figure caption candidate (body narrative): Figure 5 represents the comparison between decay time of pho"] figure_caption_candidate 0.9 display_zone legend_like figure_number True True
55 5 6 text The recorded photoacoustic signals from tissue engineered cartilages show a pulse sequence similar to that from the gelatin models shown in Fig. 3. Longer culture give larger viscoelasticity, which is [128, 506, 1106, 601] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
56 5 7 paragraph_title 5. CONCLUSION [518, 661, 716, 684] section_heading 0.85 ["paragraph_title label with numbering: 5. CONCLUSION"] section_heading 0.85 body_zone heading_like heading_numbered True True
57 5 8 text We have proposed a method for noninvasive characterization of the viscoelasticity of biological tissue using photoacoustic measurement. Using gelatin models, it was found that the intrinsic viscoelast [128, 686, 1104, 803] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
58 5 9 paragraph_title 6. REFERENCES [518, 869, 713, 893] reference_item 0.85 ["paragraph_title label with numbering: 6. REFERENCES"] section_heading 0.85 reference_zone reference_like reference_numeric_dot True True
59 5 10 reference_content 1. I. S. Kovach: Biophys. Chem. 59 (1996) 61. [131, 935, 524, 958] reference_item 0.85 ["reference content label: 1. I. S. Kovach: Biophys. Chem. 59 (1996) 61."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
60 5 11 reference_content 2. V. C. Mow, A. Ratcliffe, and A. R. Poole: Biomaterials, 13 (1992) 67. [130, 959, 734, 983] reference_item 0.85 ["reference content label: 2. V. C. Mow, A. Ratcliffe, and A. R. Poole: Biomaterials, 1"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
61 5 12 reference_content 3. R. P. Lanza, R. Langer and J. Vacanti: Principles of Tissue Engineering, ed. C. A. Vacanti (Academic Press, San Diego, 2000) $ 2^{nd} $ ed., Chap. 47, P. 671. [129, 983, 1074, 1028] reference_item 0.85 ["reference content label: 3. R. P. Lanza, R. Langer and J. Vacanti: Principles of Tiss"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
62 5 13 reference_content 4. J. Toyras, T. L. Laitinen, M. Niinimaki, R. Lindgren, M.T. Nieminen, I. Kiviranta, and J. S. Jurvelin: J. Biomech. 34 (2001) 251. [130, 1029, 1077, 1074] reference_item 0.85 ["reference content label: 4. J. Toyras, T. L. Laitinen, M. Niinimaki, R. Lindgren, M.T"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
63 5 14 reference_content 5. A. F. Mak, W. M. Lai, and V. C. Mow: J. Biomech. 20 (1987) 703. [130, 1074, 710, 1097] reference_item 0.85 ["reference content label: 5. A. F. Mak, W. M. Lai, and V. C. Mow: J. Biomech. 20 (1987"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
64 5 15 reference_content 6. K. Ozaki: Rheology, ed. K. Ozaki (Koubunsikankoukai, Kyoto, 2001) 5th ed., p.23. [129, 1097, 836, 1121] reference_item 0.85 ["reference content label: 6. K. Ozaki: Rheology, ed. K. Ozaki (Koubunsikankoukai, Kyot"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
65 5 16 reference_content 7. M. Sato, T. Asazuma, M. Ishihara, T. Kikuchi, K. Masuoka, S. Ichimura, M. Kikuchi, A. Kurita, and K. Fujikawa: J. Biomed. Mater. Res. 64A (2003) 248. [130, 1121, 1082, 1166] reference_item 0.85 ["reference content label: 7. M. Sato, T. Asazuma, M. Ishihara, T. Kikuchi, K. Masuoka,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
66 5 17 reference_content 8. C. R. Mol and P. A. Breddels: J. Acoust. Soc. Am. 71 (1982) 455. [129, 1166, 701, 1189] reference_item 0.85 ["reference content label: 8. C. R. Mol and P. A. Breddels: J. Acoust. Soc. Am. 71 (198"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
67 5 18 reference_content 9. I. Martin, B. Obradovic, S. Treppo, A.J. Grodzinsky, R. Langer, L.E. Freed and G.V. Novakovic: Biorheology 37 (2000) 141. [129, 1191, 1081, 1235] reference_item 0.85 ["reference content label: 9. I. Martin, B. Obradovic, S. Treppo, A.J. Grodzinsky, R. L"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
68 5 19 footer Proc. of SPIE Vol. 4961 [877, 1448, 1051, 1468] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
69 5 20 number 225 [1068, 1450, 1101, 1468] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
70 5 21 footer Downloaded From: http://proceedings.spiedigitallibrary.org/ on 06/15/2016 Terms of Use: http://spiedigitallibrary.org/ss/TermsOfUse.aspx [15, 1563, 973, 1583] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False

View file

@ -0,0 +1,237 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,Exosome Research,"[93, 76, 240, 99]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,doc_title,The Effect of Different Frequencies of Pulsed Electromagnetic Fields on Cartilage Repair of Adipose Mesenchymal Stem Cell-Derived Exosomes in Osteoarthritis,"[91, 138, 825, 297]",paper_title,0.8,"[""page-1 zone title_zone: The Effect of Different Frequencies of Pulsed Electromagneti""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,2,text,"CARTILAGE
2022, Vol. 13(4) 200212
© The Author(s) 2022
DOI: 10.1177/19476035221137726
journals.sagepub.com/home/CAR
SAGE","[858, 118, 1070, 232]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: CARTILAGE\n2022, Vol. 13(4) 200\u2013212\n\u00a9 The Author(s) 2022\nDOI:""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,3,text,"Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wang $ ^{1,2,3} $, Xiao-Na Xiang $ ^{1,2,3} $, Jia-Lei Peng $ ^{1,2,3} $, Cheng-Qi He $ ^{1,2,3} $ $ ^{ID} $, and Hong-Chen He $ ^{1,2,3} $ $ ","[88, 353, 878, 414]",authors,0.8,"[""page-1 zone author_zone: Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wa""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,4,paragraph_title,Abstract,"[90, 471, 183, 493]",abstract_heading,0.95,"[""abstract heading""]",abstract_heading,0.95,frontmatter_main_zone,heading_like,short_fragment,True,True
1,5,abstract,Background. The intra-articular injection of mesenchymal stem cell (MSC)-derived exosomes has already been proved to reverse osteoarthritic cartilage degeneration. Pulsed electromagnetic field (PEMF) ,"[87, 496, 1085, 1024]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,6,paragraph_title,Keywords,"[91, 1057, 193, 1079]",structured_insert,0.9,"[""frontmatter noise: Keywords""]",frontmatter_noise,0.9,frontmatter_main_zone,heading_like,short_fragment,False,False
1,7,text,"adipose mesenchymal stem cell, exosomes, pulsed electromagnetic fields, osteoarthritis, cartilage repair","[89, 1081, 940, 1106]",frontmatter_noise,0.7,"[""keyword-like block: adipose mesenchymal stem cell, exosomes, pulsed electromagne""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,8,paragraph_title,Introduction,"[92, 1143, 240, 1167]",section_heading,0.9,"[""explicit scholarly heading: Introduction""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
1,9,text,"Osteoarthritis (OA) is a prevalent chronic inflammatory disease worldwide, with a strong impact on individual health. $ ^{1-4} $ OA is characterized by pathology involving the whole joint, including c","[89, 1181, 575, 1399]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,10,footnote,"¹Rehabilitation Medicine Centre, West China Hospital, Sichuan University, Chengdu, P.R. China
²School of Rehabilitation Sciences, West China School of Medicine, Sichuan University, Chengdu, P.R. China","[599, 1164, 1074, 1296]",footnote,0.7,"[""footnote label: \u00b9Rehabilitation Medicine Centre, West China Hospital, Sichua""]",footnote,0.7,body_zone,body_like,none,True,True
1,11,footnote, $ ^{*} $Yang Xu and Qian Wang contributed equally to the work.,"[601, 1284, 995, 1305]",footnote,0.7,"[""footnote label: $ ^{*} $Yang Xu and Qian Wang contributed equally to the wor""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,12,footnote,"Corresponding Author:
Hong-Chen He, Rehabilitation Medicine Centre, West China Hospital,
Sichuan University, Chengdu 610041, Sichuan, P.R. China.
Email: hxkfhhc@126.com","[599, 1316, 1069, 1397]",frontmatter_support,0.75,"[""page-1 correspondence footnote: Corresponding Author:\nHong-Chen He, Rehabilitation Medicine ""]",frontmatter_support,0.75,body_zone,body_like,none,True,True
1,13,footer,Creative Commons Non Commercial CC BY-NC: This article is distributed under the terms of the Creative Commons Attribution-NonCommercial 4.0 License (https://creativecommons.org/licenses/by-nc/4.0/) wh,"[91, 1443, 1072, 1522]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,header,Xu et al.,"[122, 81, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,number,201,"[1077, 80, 1110, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,2,text,"investigated to overcome the current limitations of cell-based therapies, such as immune responses, deterioration of stem cells' intrinsic activity, or variation by age of cell donors. $ ^{9-11} $","[119, 134, 606, 229]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,3,text,"In this case, exosomes could deliver a variety of biological signals including protein, cytokines, and microRNA (miRNA), which are derived from the source stem cells. It could be reasonably expected t","[119, 231, 605, 589]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,text,"Pulsed electromagnetic field (PEMF) has been clinically used in the treatment of OA. $ ^{20} $ Also, PEMF treatment increased bone and cartilage formation, and decreased bone and cartilage resorption ","[119, 590, 605, 878]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,5,text,"However, the effect of PEMF with different frequencies on MSC-derived exosomes in osteoarthritic cartilage has still been unknown. Therefore, this study aimed to explore the regulatory effect of PEMF ","[119, 878, 605, 1073]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,paragraph_title,Materials and Methods Ethics Statement,"[121, 1104, 385, 1170]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Materials and Methods Ethics Statement""]",subsection_heading,0.6,body_zone,support_like,none,True,True
2,7,footer,,"[121, 1143, 284, 1170]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
2,8,text,"This study was conducted under the approval of the Animal Ethical Committee of West China Hospital, Sichuan University. All animal care and surgical techniques strictly complied with the Declaration o","[120, 1182, 604, 1281]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,9,paragraph_title,In Vitro Study,"[121, 1310, 253, 1337]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: In Vitro Study""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,10,text,"Isolation and characterization of rat adipose mesenchymal stem cells. Adipose mesenchymal stem cells (AMSCs) were isolated from 3-week-old healthy Sprague-Dawley rats' epididymal fat (n = 2, provided ","[119, 1348, 605, 1422]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,11,text,,"[628, 140, 1114, 452]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
2,12,text,"For determining the multipotent differentiation capabilities of rat AMSCs, including osteogenic, adipogenic, and chondrogenic differentiation, AMSCs were cultured in the following medium types: (1) os","[627, 451, 1115, 1103]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,13,text,"PEMF stimulates MSC-derived exosomes. Rat MSCs (P3-P6) were cultured in low-glucose DMEM (Gibco, USA) when cell confluence reached 80% to 90%. The custom-designed PEMF exposure system comprises a wave","[628, 1133, 1115, 1425]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,0,number,202,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,1,header,CARTILAGE 13(4),"[940, 80, 1082, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,2,image,,"[100, 159, 1049, 912]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,3,figure_title,Figure I. PEMF modulates AMSC-derived exosomes in the incubator. PEMF = pulsed electromagnetic field; AMSC = adipose tissue-derived MSC.,"[90, 952, 620, 995]",figure_caption,0.85,"[""figure_title label: Figure I. PEMF modulates AMSC-derived exosomes in the incuba""]",figure_caption,0.85,,reference_like,citation_line,True,True
3,4,text,"contained inside the cylindrical electromagnetic coil seal, embedded in the middle of the constant temperature incubator. MSC cells were cultured in pure low-glucose DMEM before being exposed to PEMF ","[89, 1029, 573, 1269]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,text,"Isolation and characterization of MSC-derived exosomes. MSCs were cultured in pure low-glucose DMEM for 48 hours to collect the conditioned medium. The supernatant was then centrifuged at 120,000g at ","[89, 1293, 574, 1415]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,,"[599, 1029, 1084, 1100]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,7,text,"The exosome morphology was observed under 100-kV transmission electron microscopy (TEM; HITACHI H-7000FA, Japan). The particle size distribution of exosomes was analyzed by Zetaview (Particle Metrix, ","[599, 1101, 1084, 1270]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,8,text,"Primary culture of chondrocytes and in vitro model of OA-like chondrocytes. Rat chondrocytes were isolated from 1-week-old Sprague-Dawley rats' ribs (n = 2, provided by the Chengdu Dossy Experimental ","[598, 1293, 1085, 1415]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,0,header,Xu et al.,"[122, 81, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,number,203,"[1077, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,2,figure_title,Table I. Primer Sequences and Mapleton Sizes for Quantitative Polymerase Chain Reaction.,"[121, 133, 603, 178]",table_caption,0.9,"[""table prefix matched: Table I. Primer Sequences and Mapleton Sizes for Quantitativ""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
4,3,table,<table><tr><td>Genes</td><td>Primer Sequence (5-3)</td></tr><tr><td>MMP13</td><td>F: 5-AGCAGGTTGAGCCTGAACTGT-3 R: 5-GCAGCACTGAGCCTTTTCACC-3</td></tr><tr><td>COL2A1</td><td>F: 5-GCCCAACTGGCAAACA,"[120, 184, 592, 495]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
4,4,text,"cultured with DMEM/F-12 medium containing 10% FBS, 100 U/ml penicillin, and 100 U/ml streptomycin (Gibco). The medium was changed every 3 days. For all experiments described, the chondrocytes in monol","[120, 537, 603, 658]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,5,text,"For the in vitro model of OA-like chondrocytes, chondrocytes were induced to express an OA-like phenotype by interleukin (IL)-1 $ \beta $ treatment (Cyagen Biosciences Inc.). Briefly, IL-1 $ \beta $ (","[120, 658, 603, 779]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,6,text,"MSC-derived exosome uptake in vitro. Exosomes were labeled using the red fluorescent dye 3,3'-dioctadecyloxacarbocyanine perchlorate (DiO) according to the manufacturer's instructions (Cyagen Bioscien","[120, 802, 605, 1117]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,7,text,"Real-time RT-qPCR. Total RNA was extracted from cells using the Total Exosome Isolation Reagent (Invitrogen, USA), followed by reverse transcription to generate the first-strand cDNA using the PrimeSc","[119, 1138, 604, 1429]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,8,text,,"[628, 134, 1115, 471]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,9,text,"Western blot. Passage 2-4 chondrocytes were used for protein extraction. Briefly, chondrocytes were washed with PBS 3 times and lysed with radioimmunoprecipitation assay (RIPA) lysis buffer (Beyotime,","[628, 495, 1115, 1001]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,10,paragraph_title,In Vivo Study,"[631, 1032, 764, 1058]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: In Vivo Study""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
4,11,text,The rat model of OA and experimental design. Thirty-nine 8-week-old male SD rats (provided by the Chengdu Dossy Experimental Animals Company) were anesthetized with 2.5% to 3% isoflurane. Twenty-seven,"[629, 1070, 1115, 1433]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,0,number,204,"[93, 80, 130, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,1,header,CARTILAGE 13(4),"[940, 79, 1083, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,2,text,"EXO group; n = 7, OA + 75 Hz EXO group) (AMSC-derived exosomes exposed to PEMF were injected with the same concentration), while intra-articular injection of 10 μl of normal PBS was performed in the O","[88, 138, 575, 334]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,3,text,"Micro-CT imaging study. At 8 weeks of treatment, rats were sacrificed and the distal part of the femur and the proximal part of the tibia were cut with a blunt scissor to acquire knee joint tissues. M","[88, 360, 575, 627]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,4,text,"Histological staining and immunohistochemistry. At 8 weeks of treatment, the rats were sacrificed and articular cartilage samples were collected. After fixation with paraformaldehyde for 24 hours and ","[89, 650, 575, 1156]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,5,text,"For immunohistochemistry (IHC), the deparaffinized sections were soaked in EDTA (pH 9.0) for antigen retrieval by a microwave method. The sections were placed in a 3% hydrogen peroxide solution and in","[89, 1156, 574, 1446]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,6,paragraph_title,Statistical Analysis,"[601, 133, 774, 161]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,7,text,Data are expressed as mean ± standard deviation (SD). Repeated measures were analyzed by repeated-measures analysis of variance (ANOVA) with Bonferroni post hoc analysis. The other data were analyzed ,"[599, 171, 1085, 366]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,8,paragraph_title,Results Characterization of AMSCs and AMSC-Derived Exosomes,"[600, 396, 1034, 492]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Results Characterization of AMSCs and AMSC-Derived Exosomes""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,9,footer,,"[600, 436, 1034, 492]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
5,10,text,"The AMSCs were extracted from the rat adipose tissue. Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and CD45 (Fig. 2A)","[599, 503, 1084, 672]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,11,text,"For exosome preparation, 200 ml of AMSC-conditioned medium was centrifuged, and 50 µg of exosomes can be purified. The dynamic light-scattering measurement indicated that the mean size of AMSC-derived","[597, 672, 1085, 939]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,12,paragraph_title,PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes,"[599, 964, 1036, 1021]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,13,text,"To investigate whether PEMF-exposed AMSC-derived exosomes could enter chondrocytes through co-culture, exosomes stained with DiO were co-cultured with chondrocytes, and 24 hours later chondrocytes wer","[598, 1031, 1085, 1273]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,14,paragraph_title,PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Inflammation,"[599, 1301, 999, 1386]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,15,text,"Next, to evaluate whether PEMF at different frequencies could modulate the effect of AMSC-derived exosomes on","[598, 1395, 1085, 1446]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,0,header,Xu et al.,"[123, 81, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,number,205,"[1077, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,2,figure_title,A,"[164, 165, 189, 190]",figure_inner_text,0.9,"[""panel label / figure inner text: A""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,3,chart,,"[164, 194, 603, 369]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,4,chart,,"[616, 195, 1056, 369]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,5,chart,,"[166, 384, 601, 558]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,6,chart,,"[617, 382, 1057, 558]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,7,figure_title,B,"[166, 573, 187, 596]",figure_inner_text,0.9,"[""panel label / figure inner text: B""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,8,image,,"[167, 600, 1062, 827]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,9,figure_title,C,"[165, 843, 190, 869]",figure_inner_text,0.9,"[""panel label / figure inner text: C""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,10,chart,,"[161, 859, 481, 1102]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,11,figure_title,D,"[500, 843, 523, 869]",figure_inner_text,0.9,"[""panel label / figure inner text: D""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,12,image,,"[498, 869, 805, 1096]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,13,figure_title,E,"[838, 842, 861, 869]",figure_inner_text,0.9,"[""panel label / figure inner text: E""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,14,image,,"[816, 842, 1094, 1119]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,15,figure_title,"Figure 2. Characterization of AMSCs and AMSC-derived exosomes. (A) Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and C","[119, 1146, 1108, 1292]",figure_caption,0.92,"[""figure_title label: Figure 2. Characterization of AMSCs and AMSC-derived exosome""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,16,text,"IL-1β-induced chondrocyte inflammation, the expressions of common inflammation factors in OA (matrix metalloproteinase 13 [MMP13], caspase-1, and IL-1) were assessed in IL-1β-treated chondrocytes. As ","[120, 1328, 604, 1426]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,17,text,,"[628, 1333, 1116, 1432]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,0,number,206,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,1,header,CARTILAGE 13(4),"[940, 80, 1083, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,2,image,,"[132, 162, 300, 351]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,3,image,,"[302, 166, 467, 351]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,4,image,,"[470, 165, 637, 350]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,5,figure_title,C,"[653, 164, 675, 188]",figure_inner_text,0.9,"[""panel label / figure inner text: C""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,6,chart,,"[659, 203, 833, 329]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,7,figure_title,B,"[135, 358, 154, 380]",figure_inner_text,0.9,"[""panel label / figure inner text: B""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,8,chart,,"[842, 206, 1012, 327]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,9,chart,,"[137, 380, 302, 559]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,10,chart,,"[313, 380, 473, 558]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,11,chart,,"[484, 380, 642, 560]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,12,chart,,"[661, 404, 832, 529]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,13,chart,,"[840, 380, 1046, 516]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,14,chart,,"[153, 579, 309, 755]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,15,figure_title,D,"[652, 547, 673, 571]",figure_inner_text,0.9,"[""panel label / figure inner text: D""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,16,chart,,"[318, 579, 472, 753]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,17,chart,,"[658, 583, 1046, 749]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,18,figure_title,Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL-1β-induced downregulation of anabolic markers and upregulation of catabolic markers in cartilage degradation. (A) Immunofluorescence staini,"[90, 802, 1078, 969]",figure_caption,0.92,"[""figure_title label: Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
7,19,text,attenuated IL-1 $ \beta $-induced changes in the expression of these genes (P < 0.01 except for MMP13 in OA + EXO group). And PEMF-exposed AMSC-derived exosomes had a substantially better attenuation ,"[89, 1003, 575, 1218]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,20,text,Western blot (Fig. 3C) also demonstrated that IL-1β induction significantly upregulated the expression of IL-1 (P < 0.01) and caspase-1 (P < 0.01) proteins. And the treatment of AMSC-derived exosomes ,"[89, 1220, 575, 1437]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,21,paragraph_title,PEMF Promoted the Suppression Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Matrix Degeneration,"[599, 1003, 998, 1087]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF Promoted the Suppression Effect of AMSC-Derived Exosome""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
7,22,text,"In addition, to investigate whether PEMF could modulate the effect of AMSC-derived exosomes on IL-1β-induced reduction in chondrocyte matrix synthesis, the expressions of common anabolic markers (COL2","[600, 1098, 1087, 1436]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,0,header,Xu et al.,"[122, 80, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,number,207,"[1077, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,2,text,"ACAN (P < 0.01), and SOX9 (P < 0.01) mRNA expressions. Also, compared with PEMF at 15 and 45 Hz, the 75-Hz PEMF-exposed AMSC-derived exosomes upregulated the expression of COL2A1 (P < 0.05), ACAN (P <","[120, 139, 603, 260]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,3,text,"In addition, ELISA (Fig. 3D) also demonstrated that AMSC-derived exosomes (1 × 10⁸ particles/ml) significantly attenuated IL-1β-induced low expression of COL2A1 proteins (P < 0.01). Meanwhile, ELISA (","[119, 261, 605, 478]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,4,paragraph_title,PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Damage in ACLT-Induced Experimental OA Rats,"[119, 508, 529, 593]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Da""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
8,5,text,"Given that OA was always accompanied by cartilage defects, we hypothesized that AMSC-derived exosomes exposed to PEMF could alleviate the progression of OA via inducing chondrocyte matrix synthesis. I","[119, 604, 605, 916]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,6,text,"Eight weeks after the model was established, the knee joint specimens of animals were collected for micro-CT imaging studies (Fig. 4A) and H&E staining (Fig. 4B). The micro-CT images displayed that in","[117, 916, 607, 1469]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,7,text,,"[629, 134, 1114, 349]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
8,8,text,"To further clarify the relationship between COL2A1, ACAN, and extracellular matrix (ECM), IHC staining of COL2A1 and ACAN was performed in the knee cartilage layer of the in vivo knee joint OA model. ","[628, 350, 1115, 593]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,9,paragraph_title,Discussion,"[630, 629, 757, 655]",section_heading,0.9,"[""explicit scholarly heading: Discussion""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
8,10,text,"In the present study, we investigated the regulatory effect of PEMF with different frequencies on osteoarthritic cartilage regeneration of AMSC-derived exosomes. The in vitro study showed that the PEM","[628, 668, 1115, 932]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,11,text,Previously it has been shown that PEMF could affect biological functions via the production of coherent or interfering fields that modify fundamental electromagnetic fields generated by living organis,"[628, 933, 1115, 1463]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,0,number,208,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,1,header,CARTILAGE 13(4),"[940, 80, 1082, 104]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,2,image,,"[109, 149, 1058, 891]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
9,3,figure_title,Figure 4. PEMF-regulated AMSC-derived exosomes alleviate cartilage damage in ACLT-induced experimental osteoarthritis rats. (A) The micro-CT image of the transverse section of the epiphyseal proximal ,"[92, 920, 1077, 1048]",figure_caption,0.92,"[""figure_title label: Figure 4. PEMF-regulated AMSC-derived exosomes alleviate car""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,4,figure_title,PEMF = pulsed electromagnetic field; AMSC = adipose tissue derived MSC; ACLT = anterior cruciate ligament transaction; OARSI = Osteoarthritis Research Society International; OA = osteoarthritis.,"[91, 1046, 1073, 1086]",figure_caption_candidate,0.85,"[""figure_title label: PEMF = pulsed electromagnetic field; AMSC = adipose tissue d""]",figure_caption,0.85,,legend_like,none,False,False
9,5,text,"the 3D culture of rat bone marrow MSCs. $ ^{16,23,38} $ In addition, PEMF could potentiate MSCs' anti-inflammatory responses. $ ^{31} $ In this study, the enhanced effect of PEMF on AMSC-derived exoso","[89, 1121, 574, 1289]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
9,6,text,"Cytokines secreted by immune cells are the main players of OA. IL-1β drives the inflammatory cascade independently or in collaboration with other cytokines, and has been used to trigger inflammation i","[88, 1290, 574, 1434]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
9,7,text,,"[598, 1120, 1087, 1435]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
10,0,header,Xu et al.,"[122, 80, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,1,number,209,"[1076, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,2,text,"low-frequency PEMF in ameliorating the deterioration of bone microarchitecture in ovariectomized (OVX) mice, and the inhibitory effect of PEMF may be associated with IL-1β inhibition. $ ^{[31,50]} $ T","[119, 134, 605, 422]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,3,text,"Moreover, IL-1β interferes with the production of essential structural proteins, including SOX9, collagen type II, and aggrecan, by influencing the activity of chondrocytes in the joint. $ ^{[51,52]} ","[119, 423, 605, 806]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,4,text,"Previously it has been shown that the inflammatory progression of OA could be alleviated by MSCs, which is associated with the multiple miRNAs and long non-coding RNAs (lncRNAs) capsulated in exosomes","[118, 807, 606, 1408]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,5,text,,"[628, 133, 1114, 302]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
10,6,text,"In particular, as demonstrated by Brighton et al.,⁶⁷ PEMF determines signal transduction through the intracellular release of Ca²⁺, leading to an increase in cytosolic Ca²⁺ and an increase in activate","[628, 301, 1115, 854]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,7,text,"There are still some limitations to this study. First, on the basis of in vitro experiments, 75-Hz PEMF stimulation was found to have superior effect on AMSC-derived exosomes. Thus, in the in vivo stu","[628, 856, 1115, 1168]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,8,paragraph_title,Conclusion,"[630, 1199, 765, 1225]",section_heading,0.9,"[""explicit scholarly heading: Conclusion""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
10,9,text,"In the present study, PEMF-exposed AMSC-derived exosomes could significantly inhibit the degeneration and inflammation of osteoarthritic cartilage. Compared with other frequency parameters, the PEMF a","[628, 1238, 1115, 1408]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
11,0,number,210,"[93, 80, 129, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,1,header,CARTILAGE 13(4),"[941, 80, 1082, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,2,text,osteoarthritic cartilage degeneration. These findings laid a foundation for the regulatory mechanism of PEMF stimulation on MSC-derived exosomes and opened up a new direction for enhancing the therape,"[91, 134, 573, 254]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,3,paragraph_title,Author Contributions,"[92, 279, 304, 300]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Author Contributions""]",subsection_heading,0.6,body_zone,support_like,none,True,True
11,4,text,"Yang Xu: Conceptualization, Methodology, Data curation, Formal analysis, Writing—original draft, Writing—review & editing. Qian Wang: Conceptualization, Methodology, Data curation, Formal analysis, Fu","[90, 309, 573, 554]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,5,paragraph_title,Acknowledgments and Funding,"[92, 577, 395, 600]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Acknowledgments and Funding""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
11,6,text,"The author(s) disclosed receipt of the following financial support for the research, authorship, and/or publication of this article: This work was supported by grants from the National Natural Science","[91, 608, 573, 697]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,7,paragraph_title,Declaration of Conflicting Interests,"[92, 721, 428, 744]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Declaration of Conflicting Interests""]",backmatter_boundary_candidate,0.5,body_zone,heading_like,none,True,True
11,8,text,"The author(s) declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.","[91, 752, 572, 817]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,9,paragraph_title,Ethical Approval,"[93, 852, 254, 876]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Ethical Approval""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
11,10,text,"This study protocol was approved by the Animal Ethics Committee of the West China Hospital of Sichuan University (Sichuan, China; approval no. 2020350A).","[91, 884, 572, 950]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,11,paragraph_title,ORCID iDs,"[92, 976, 203, 998]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: ORCID iDs""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
11,12,text,Cheng-Qi He https://orcid.org/0000-0002-5349-0571 Hong-Chen He https://orcid.org/0000-0003-4635-6769,"[90, 1007, 523, 1061]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,13,paragraph_title,References,"[93, 1091, 204, 1113]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
11,14,reference_content,"1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiology, risk factors and disease outcomes of osteoarthritis. Best Pract Res Clin Rheumatol. 2018;32(2):312-26.","[103, 1123, 571, 1186]",reference_item,0.85,"[""reference content label: 1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiolo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,15,reference_content,"2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literature update. Curr Opin Rheumatol. 2018;30(2):160-7.","[102, 1189, 570, 1231]",reference_item,0.85,"[""reference content label: 2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,16,reference_content,"3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan YZ, Fauzi MB. Mesenchymal stem cells: current concepts in the management of inflammation in osteoarthritis. Biomedicines. 2021;9(7):785. doi","[103, 1233, 571, 1338]",reference_item,0.85,"[""reference content label: 3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,17,reference_content,"4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State of the art: the immunomodulatory role of MSCs for osteoarthritis. Int J Mol Sci. 2022;23(3):1618. doi:10.3390/ijms23031618.","[102, 1343, 572, 1428]",reference_item,0.85,"[""reference content label: 4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,18,reference_content,"5. Bortoluzzi A, Furini F, Scirè CA. Osteoarthritis and its management: epidemiology, nutritional aspects and environmental factors. Autoimmun Rev. 2018;17(11):1097-104.","[611, 135, 1082, 200]",reference_item,0.85,"[""reference content label: 5. Bortoluzzi A, Furini F, Scir\u00e8 CA. Osteoarthritis and its ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,19,reference_content,"6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of hip and knee osteoarthritis: a review. Jama. 2021;325(6):568-78.","[612, 202, 1083, 245]",reference_item,0.85,"[""reference content label: 6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,20,reference_content,"7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, Block J, et al. 2019 American College of Rheumatology/Arthritis Foundation guideline for the management of osteoarthritis of the hand, hip, a","[613, 247, 1083, 354]",reference_item,0.85,"[""reference content label: 7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,21,reference_content,"8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu E, et al. Alternative and complementary therapies in osteoarthritis and cartilage repair. Aging Clin Exp Res. 2020;32(4):547-60.","[612, 357, 1082, 444]",reference_item,0.85,"[""reference content label: 8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,22,reference_content,"9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strategies for cartilage defects and osteoarthritis. Curr Opin Pharmacol. 2018;40:74-80.","[610, 448, 1081, 510]",reference_item,0.85,"[""reference content label: 9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strate""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,23,reference_content,"10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mesenchymal stem cells in knee osteoarthritis treatment: A systematic review and meta-analysis. J Orthop Transl. 2020;24:p121-30.","[605, 515, 1081, 599]",reference_item,0.85,"[""reference content label: 10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mes""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,24,reference_content,"11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem cell related therapies for cartilage lesions and osteoarthritis. Am J Transl Res. 2019;11(10):6275-89.","[605, 604, 1082, 667]",reference_item,0.85,"[""reference content label: 11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem ce""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,25,reference_content,"12. Bao C, He C. The role and therapeutic potential of MSC-derived exosomes in osteoarthritis. Arch Biochem Biophys. 2021;710:109002.","[605, 671, 1081, 733]",reference_item,0.85,"[""reference content label: 12. Bao C, He C. The role and therapeutic potential of MSC-d""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,26,reference_content,"13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exosomes for effective cartilage tissue repair and treatment of osteoarthritis. Biotechnol J. 2020;15(12):e2000082.","[605, 738, 1083, 801]",reference_item,0.85,"[""reference content label: 13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,27,reference_content,"14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-free MSC therapy for cartilage regeneration: Implications for osteoarthritis treatment. Semin Cell Dev Biol. 2017;67:56-64.","[605, 804, 1083, 868]",reference_item,0.85,"[""reference content label: 14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,28,reference_content,"15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar K, Kumari U, et al. Mesenchymal stem cell-derived extracellular vesicles: regenerative potential and challenges. Biology (Basel). 2021;10(3)","[605, 872, 1082, 957]",reference_item,0.85,"[""reference content label: 15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,29,reference_content,"16. Parate D, Franco-Obregón A, Fröhlich J, Beyer C, Abbas AA, Kamarul T, et al. Enhancement of mesenchymal stem cell chondrogenesis with short-term low intensity pulsed electromagnetic fields. Sci Re","[605, 962, 1082, 1046]",reference_item,0.85,"[""reference content label: 16. Parate D, Franco-Obreg\u00f3n A, Fr\u00f6hlich J, Beyer C, Abbas A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,30,reference_content,"17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP, Herbert BR. Priming adipose-derived mesenchymal stem cells with hyaluronan alters growth kinetics and increases attachment to articular car","[605, 1051, 1082, 1157]",reference_item,0.85,"[""reference content label: 17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,31,reference_content,"18. Rando TA, Ambrosio F. Regenerative rehabilitation: applied biophysics meets stem cell therapeutics. Cell Stem Cell. 2018;22(3):306-9.","[605, 1161, 1081, 1225]",reference_item,0.85,"[""reference content label: 18. Rando TA, Ambrosio F. Regenerative rehabilitation: appli""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,32,reference_content,"19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. Understanding mechanobiology: physical therapists as a force in mechanotherapy and musculoskeletal regenerative rehabilitation. Phys Ther. 20","[605, 1229, 1082, 1313]",reference_item,0.85,"[""reference content label: 19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. U""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,33,reference_content,"20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed electromagnetic field therapy on pain, stiffness, physical function, and quality of life in patients with osteoarthritis: a systematic review ","[604, 1317, 1083, 1426]",reference_item,0.85,"[""reference content label: 20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed el""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,0,header,Xu et al.,"[123, 81, 194, 103]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,1,number,211,"[1077, 81, 1111, 102]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,2,reference_content,"21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Pulsed electromagnetic field at different stages of knee osteoarthritis in rats induced by low-dose monosodium iodoacetate: Effect on subchondra","[123, 134, 602, 263]",reference_item,0.85,"[""reference content label: 21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Puls""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,3,reference_content,"22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al. Magnetic enhancement of chondrogenic differentiation of mesenchymal stem cells. ACS Biomater Sci Eng. 2019;5(5):2200-7.","[124, 267, 601, 352]",reference_item,0.85,"[""reference content label: 22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,4,reference_content,"23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obregón A, et al. Pulsed electromagnetic fields potentiate the paracrine function of mesenchymal stem cells for cartilage regeneration. Stem Ce","[124, 355, 602, 441]",reference_item,0.85,"[""reference content label: 23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,5,reference_content,"24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel T, Park CH, et al. Electromagnetic manipulation enabled calcium alginate Janus microsphere for targeted delivery of mesenchymal stem cells. ","[124, 444, 603, 528]",reference_item,0.85,"[""reference content label: 24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,6,reference_content,"25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shuttled by adipose tissue-derived mesenchymal stem cell-derived extracellular vesicles suppresses myocardial pyroptosis in atrial fibrillation","[125, 531, 603, 638]",reference_item,0.85,"[""reference content label: 25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,7,reference_content,"26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte proliferation, apoptosis and autophagy through the PI3K/AKT/mTOR signaling pathway in rat models with rheumatoid arthritis. Biomed Pharmacothe","[124, 642, 602, 726]",reference_item,0.85,"[""reference content label: 26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte pr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,8,reference_content,"27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI histopathology initiative: recommendations for histological assessments of osteoarthritis in the rat. Osteoarthritis Cartilage. 2010;18(Suppl","[124, 729, 602, 814]",reference_item,0.85,"[""reference content label: 27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI h""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,9,reference_content,"28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Brink P, Christ GJ, et al. The effect of low-frequency electromagnetic field on human bone marrow stem/progenitor cell differentiation. Stem Ce","[124, 818, 602, 902]",reference_item,0.85,"[""reference content label: 28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Bri""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,10,reference_content,29. Trock DH. Electromagnetic fields and magnets. Investigational treatment for musculoskeletal disorders. Rheum Dis Clin North Am. 2000;26(1):51-62.,"[124, 906, 602, 968]",reference_item,0.85,"[""reference content label: 29. Trock DH. Electromagnetic fields and magnets. Investigat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,11,reference_content,"30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, Puvanakrishnan R. Low frequency pulsed electromagnetic field: a viable alternative therapy for arthritis. Indian J Exp Biol. 2009;47(12):939-","[124, 972, 602, 1056]",reference_item,0.85,"[""reference content label: 30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, P""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,12,reference_content,"31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal stromal cells/pericytes (MSCs) with pulsed electromagnetic field (PEMF) has the potential to treat rheumatoid arthritis. Front Immunol. 201","[124, 1059, 602, 1143]",reference_item,0.85,"[""reference content label: 31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,13,reference_content,"32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et al. Electromagnetic fields enhance chondrogenesis of human adipose-derived stem cells in a chondrogenic microenvironment in vitro. J Appl P","[124, 1146, 602, 1253]",reference_item,0.85,"[""reference content label: 32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,14,reference_content,"33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina L, De Angelis MG, et al. A comparative analysis of the in vitro effects of pulsed electromagnetic field treatment on osteogenic differentiat","[124, 1257, 602, 1364]",reference_item,0.85,"[""reference content label: 33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,15,reference_content,"34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldorf K, Fentz A-K, et al. Co-culture with human osteoblasts and exposure to extremely low frequency pulsed electromagnetism.","[124, 1367, 604, 1432]",reference_item,0.85,"[""reference content label: 34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldor""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,16,reference_content,netic fields improve osteogenic differentiation of human adipose-derived mesenchymal stem cells. Int J Mol Sci. 2018;19(4):994.,"[661, 135, 1111, 197]",reference_item,0.85,"[""reference content label: netic fields improve osteogenic differentiation of human adi""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
12,17,reference_content,"35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Giannini A, Riccardi G, et al. Differentiation of human umbilical cord-derived mesenchymal stem cells, WJ-MSCs, into chondrogenic cells in the p","[634, 201, 1112, 307]",reference_item,0.85,"[""reference content label: 35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Gian""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,18,reference_content,"36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect of pulsed electromagnetic fields and dehydroepiandrosterone on viability and osteo-induction of human mesenchymal stem cells. J Tissue Eng ","[634, 310, 1112, 396]",reference_item,0.85,"[""reference content label: 36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,19,reference_content,"37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abdemami B. Extremely low frequency electromagnetic field in mesenchymal stem cells gene regulation: chondrogenic markers evaluation. Artif Orga","[634, 399, 1112, 483]",reference_item,0.85,"[""reference content label: 37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abde""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,20,reference_content,"38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, Boyan BD. Pulsed electromagnetic fields enhance BMP-2 dependent osteoblastic differentiation of human mesenchymal stem cells. J Orthop Res. ","[634, 487, 1112, 572]",reference_item,0.85,"[""reference content label: 38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,21,reference_content,"39. Chow YY, Chin KY. The Role of Inflammation in the Pathogenesis of Osteoarthritis. Mediators Inflamm. 2020;2020:8293921.","[634, 575, 1112, 637]",reference_item,0.85,"[""reference content label: 39. Chow YY, Chin KY. The Role of Inflammation in the Pathog""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,22,reference_content,"40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP, Fahmi H. Role of proinflammatory cytokines in the pathophysiology of osteoarthritis. Nat Rev Rheumatol. 2011;7(1):33-42.","[634, 641, 1112, 705]",reference_item,0.85,"[""reference content label: 40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,23,reference_content,"41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al. [Research of inflammatory factors and signaling pathways in knee osteoarthritis]. Zhongguo Gu Shang. 2020;33(4):388-192.","[634, 707, 1112, 770]",reference_item,0.85,"[""reference content label: 41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,24,reference_content,"42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S, Plener Z, et al. Chondrocyte dedifferentiation and osteoarthritis (OA). Biochem Pharmacol. 2019;165:49-65.","[633, 773, 1112, 836]",reference_item,0.85,"[""reference content label: 42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,25,reference_content,"43. Goldring MB, Otero M. Inflammation in osteoarthritis. Curr Opin Rheumatol. 2011;23(5):471-148.","[633, 840, 1112, 881]",reference_item,0.85,"[""reference content label: 43. Goldring MB, Otero M. Inflammation in osteoarthritis. Cu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,26,reference_content,"44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix metalloproteinases in osteoarthritis pathogenesis: An updated review. Life Sci. 2019;234:116786.","[634, 884, 1112, 946]",reference_item,0.85,"[""reference content label: 44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix m""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,27,reference_content,"45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw T. Role of Caspase-1 in the pathogenesis of inflammatory-associated chronic noncommunicable diseases. J Inflamm Res. 2020;13:749-64.","[633, 949, 1112, 1033]",reference_item,0.85,"[""reference content label: 45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,28,reference_content,"46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, Pellati A, et al. Characterization of adenosine receptors in bovine chondrocytes and fibroblast-like synoviocytes exposed to low frequency lo","[634, 1037, 1112, 1166]",reference_item,0.85,"[""reference content label: 46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, P""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,29,reference_content,"47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Cadossi R, et al. Electromagnetic fields (EMFs) and adenosine receptors modulate prostaglandin E(2) and cytokine release in human osteoarthrit","[633, 1169, 1113, 1276]",reference_item,0.85,"[""reference content label: 47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Ca""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,30,reference_content,"48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA. A pulsing electric field (PEF) increases human chondrocyte proliferation through a transduction pathway involving nitric oxide signaling. ","[634, 1279, 1112, 1385]",reference_item,0.85,"[""reference content label: 48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,31,reference_content,"49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldorff EI, et al. Dynamic imaging demonstrates that pulsed electro-","[633, 1388, 1114, 1431]",reference_item,0.85,"[""reference content label: 49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,0,number,212,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
13,1,header,CARTILAGE 13(4),"[940, 81, 1082, 103]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
13,2,reference_content,magnetic fields (PEMF) suppress IL-6 transcription in bovine nucleus pulposus cells. J Orthop Res. 2018;36(2):778-87. doi:10.1002/jor.23713.,"[123, 135, 572, 198]",reference_item,0.85,"[""reference content label: magnetic fields (PEMF) suppress IL-6 transcription in bovine""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
13,3,reference_content,"50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of pulsed electromagnetic field therapy at different frequencies on bone mass and microarchitecture in osteoporotic mice. Bioelectromagnetics. 2","[93, 201, 576, 307]",reference_item,0.85,"[""reference content label: 50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of p""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,4,reference_content,"51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \beta $ signaling in osteoarthritis: chondrocytes in focus. Cell Signal. 2019;53:212-23.","[94, 311, 570, 373]",reference_item,0.85,"[""reference content label: 51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \\beta""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,5,reference_content,52. Vincent TL. IL-1 in osteoarthritis: time for a critical review of the literature. F1000res. 2019;8:934.,"[94, 377, 573, 418]",reference_item,0.85,"[""reference content label: 52. Vincent TL. IL-1 in osteoarthritis: time for a critical ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,6,reference_content,"53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyte-specific enhancer elements in the Col11a2 gene resemble the Col2a1 tissue-specific enhancer. J Biol Chem. 1998;273(24):14998-5006.","[94, 421, 572, 506]",reference_item,0.85,"[""reference content label: 53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyt""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,7,reference_content,"54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and function of aggrecan. Cell Res. 2002;12(1):19-32.","[93, 509, 571, 551]",reference_item,0.85,"[""reference content label: 54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,8,reference_content,"55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collagen type II suppresses articular chondrocyte hypertrophy and osteoarthritis progression by promoting integrin $ \beta $1-SMAD1 interaction. ","[94, 553, 572, 638]",reference_item,0.85,"[""reference content label: 55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collag""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,9,reference_content,"56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-derived exosomes overexpressing microRNA-26a-5p alleviate osteoarthritis via down-regulation of PTGS2. Int Immunopharmacol. 2020;78:105946.","[93, 641, 572, 727]",reference_item,0.85,"[""reference content label: 56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-de""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,10,reference_content,"57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovial fibroblasts proliferation and inflammatory cytokines secretion through targeting TLR4. Biomed Pharmacother. 2017;96:208-14.","[94, 730, 571, 814]",reference_item,0.85,"[""reference content label: 57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovia""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,11,reference_content,"58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. MicroRNA-193b-3p regulates chondrogenesis and chondrocyte metabolism by targeting HDAC3. Theranostics. 2018;8(10):2862-83.","[94, 817, 571, 902]",reference_item,0.85,"[""reference content label: 58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. Mi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,12,reference_content,"59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exosomes derived from miR-140-5p-overexpressing human synovial mesenchymal stem cells enhance cartilage tissue regeneration and prevent osteoart","[94, 905, 572, 1012]",reference_item,0.85,"[""reference content label: 59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exos""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,13,reference_content,"60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin promotes IL-6 and TNF- $ \alpha $ production in human","[92, 1015, 573, 1057]",reference_item,0.85,"[""reference content label: 60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,14,reference_content,"synovial fibroblasts by repressing miR-199a-5p through ERK, p38 and JNK signaling pathways. Int J Mol Sci. 2018;19(1):190.","[631, 135, 1081, 200]",reference_item,0.85,"[""reference content label: synovial fibroblasts by repressing miR-199a-5p through ERK, ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
13,15,reference_content,"61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone marrow-derived mesenchymal stem cells alleviates osteoarthritis by inhibiting syndecan-1. Cell Tissue Res. 2020;381(1):99-114.","[603, 203, 1082, 290]",reference_item,0.85,"[""reference content label: 61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone m""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,16,reference_content,"62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KLF3-AS1 from hMSCs promoted cartilage repair and chondrocyte proliferation in osteoarthritis. Biochem J. 2018;475(22):3629-38.","[603, 294, 1081, 380]",reference_item,0.85,"[""reference content label: 62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KL""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,17,reference_content,"63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived exosomal microRNAs contribute to wound inflammation. Sci China Life Sci. 2016;59(12):1305-12.","[602, 384, 1082, 448]",reference_item,0.85,"[""reference content label: 63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,18,reference_content,"64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects chondrocyte proliferation, apoptosis, and inflammation by targeting HMGB1 in osteoarthritis. Inflamm Res. 2020;69(1):63-73.","[603, 451, 1081, 538]",reference_item,0.85,"[""reference content label: 64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects c""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,19,reference_content,"65. Yuan J, Xin F, Jiang W. Underlying signaling pathways and therapeutic applications of pulsed electromagnetic fields in bone repair. Cell Physiol Biochem. 2018;46(4):1581-94.","[603, 542, 1082, 607]",reference_item,0.85,"[""reference content label: 65. Yuan J, Xin F, Jiang W. Underlying signaling pathways an""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,20,reference_content,"66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The use of pulsed electromagnetic field to modulate inflammation and improve tissue regeneration: a review. Bioelectricity. 2019;1(4):247-59.","[604, 610, 1082, 696]",reference_item,0.85,"[""reference content label: 66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The us""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,21,reference_content,"67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Signal transduction in electrically stimulated bone cells. J Bone Joint Surg Am. 2001;83(10):1514-23.","[602, 701, 1082, 765]",reference_item,0.85,"[""reference content label: 67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Sign""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,22,reference_content,"68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. Stimulation of growth factor synthesis by electric and electromagnetic fields. Clin Orthop Relat Res. 2004;419:30-7.","[604, 768, 1082, 834]",reference_item,0.85,"[""reference content label: 68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. St""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,23,reference_content,"69. de Girolamo L, Stanco D, Galliera E, Viganò M, Colombini A, Setti S, et al. Low frequency pulsed electromagnetic field affects proliferation, tissue-specific gene expression, and cytokines release","[604, 837, 1082, 945]",reference_item,0.85,"[""reference content label: 69. de Girolamo L, Stanco D, Galliera E, Vigan\u00f2 M, Colombini""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,24,reference_content,"70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, Chang EI, et al. Osteoblasts stimulated with pulsed electromagnetic fields increase HUVEC proliferation via a VEGF-A independent mechanism. B","[603, 949, 1083, 1058]",reference_item,0.85,"[""reference content label: 70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header Exosome Research [93, 76, 240, 99] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 doc_title The Effect of Different Frequencies of Pulsed Electromagnetic Fields on Cartilage Repair of Adipose Mesenchymal Stem Cell-Derived Exosomes in Osteoarthritis [91, 138, 825, 297] paper_title 0.8 ["page-1 zone title_zone: The Effect of Different Frequencies of Pulsed Electromagneti"] paper_title 0.8 frontmatter_main_zone support_like none True True
4 1 2 text CARTILAGE 2022, Vol. 13(4) 200–212 © The Author(s) 2022 DOI: 10.1177/19476035221137726 journals.sagepub.com/home/CAR SAGE [858, 118, 1070, 232] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: CARTILAGE\n2022, Vol. 13(4) 200\u2013212\n\u00a9 The Author(s) 2022\nDOI:"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
5 1 3 text Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wang $ ^{1,2,3} $, Xiao-Na Xiang $ ^{1,2,3} $, Jia-Lei Peng $ ^{1,2,3} $, Cheng-Qi He $ ^{1,2,3} $ $ ^{ID} $, and Hong-Chen He $ ^{1,2,3} $ $ [88, 353, 878, 414] authors 0.8 ["page-1 zone author_zone: Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wa"] authors 0.8 frontmatter_main_zone support_like none True True
6 1 4 paragraph_title Abstract [90, 471, 183, 493] abstract_heading 0.95 ["abstract heading"] abstract_heading 0.95 frontmatter_main_zone heading_like short_fragment True True
7 1 5 abstract Background. The intra-articular injection of mesenchymal stem cell (MSC)-derived exosomes has already been proved to reverse osteoarthritic cartilage degeneration. Pulsed electromagnetic field (PEMF) [87, 496, 1085, 1024] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
8 1 6 paragraph_title Keywords [91, 1057, 193, 1079] structured_insert 0.9 ["frontmatter noise: Keywords"] frontmatter_noise 0.9 frontmatter_main_zone heading_like short_fragment False False
9 1 7 text adipose mesenchymal stem cell, exosomes, pulsed electromagnetic fields, osteoarthritis, cartilage repair [89, 1081, 940, 1106] frontmatter_noise 0.7 ["keyword-like block: adipose mesenchymal stem cell, exosomes, pulsed electromagne"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
10 1 8 paragraph_title Introduction [92, 1143, 240, 1167] section_heading 0.9 ["explicit scholarly heading: Introduction"] section_heading 0.9 body_zone heading_like canonical_section_name True True
11 1 9 text Osteoarthritis (OA) is a prevalent chronic inflammatory disease worldwide, with a strong impact on individual health. $ ^{1-4} $ OA is characterized by pathology involving the whole joint, including c [89, 1181, 575, 1399] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
12 1 10 footnote ¹Rehabilitation Medicine Centre, West China Hospital, Sichuan University, Chengdu, P.R. China ²School of Rehabilitation Sciences, West China School of Medicine, Sichuan University, Chengdu, P.R. China [599, 1164, 1074, 1296] footnote 0.7 ["footnote label: \u00b9Rehabilitation Medicine Centre, West China Hospital, Sichua"] footnote 0.7 body_zone body_like none True True
13 1 11 footnote $ ^{*} $Yang Xu and Qian Wang contributed equally to the work. [601, 1284, 995, 1305] footnote 0.7 ["footnote label: $ ^{*} $Yang Xu and Qian Wang contributed equally to the wor"] footnote 0.7 body_zone body_like affiliation_marker True True
14 1 12 footnote Corresponding Author: Hong-Chen He, Rehabilitation Medicine Centre, West China Hospital, Sichuan University, Chengdu 610041, Sichuan, P.R. China. Email: hxkfhhc@126.com [599, 1316, 1069, 1397] frontmatter_support 0.75 ["page-1 correspondence footnote: Corresponding Author:\nHong-Chen He, Rehabilitation Medicine "] frontmatter_support 0.75 body_zone body_like none True True
15 1 13 footer Creative Commons Non Commercial CC BY-NC: This article is distributed under the terms of the Creative Commons Attribution-NonCommercial 4.0 License (https://creativecommons.org/licenses/by-nc/4.0/) wh [91, 1443, 1072, 1522] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
16 2 0 header Xu et al. [122, 81, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
17 2 1 number 201 [1077, 80, 1110, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
18 2 2 text investigated to overcome the current limitations of cell-based therapies, such as immune responses, deterioration of stem cells' intrinsic activity, or variation by age of cell donors. $ ^{9-11} $ [119, 134, 606, 229] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
19 2 3 text In this case, exosomes could deliver a variety of biological signals including protein, cytokines, and microRNA (miRNA), which are derived from the source stem cells. It could be reasonably expected t [119, 231, 605, 589] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
20 2 4 text Pulsed electromagnetic field (PEMF) has been clinically used in the treatment of OA. $ ^{20} $ Also, PEMF treatment increased bone and cartilage formation, and decreased bone and cartilage resorption [119, 590, 605, 878] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 2 5 text However, the effect of PEMF with different frequencies on MSC-derived exosomes in osteoarthritic cartilage has still been unknown. Therefore, this study aimed to explore the regulatory effect of PEMF [119, 878, 605, 1073] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
22 2 6 paragraph_title Materials and Methods Ethics Statement [121, 1104, 385, 1170] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Materials and Methods Ethics Statement"] subsection_heading 0.6 body_zone support_like none True True
23 2 7 footer [121, 1143, 284, 1170] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
24 2 8 text This study was conducted under the approval of the Animal Ethical Committee of West China Hospital, Sichuan University. All animal care and surgical techniques strictly complied with the Declaration o [120, 1182, 604, 1281] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 2 9 paragraph_title In Vitro Study [121, 1310, 253, 1337] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: In Vitro Study"] subsection_heading 0.6 body_zone heading_like short_fragment True True
26 2 10 text Isolation and characterization of rat adipose mesenchymal stem cells. Adipose mesenchymal stem cells (AMSCs) were isolated from 3-week-old healthy Sprague-Dawley rats' epididymal fat (n = 2, provided [119, 1348, 605, 1422] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
27 2 11 text [628, 140, 1114, 452] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
28 2 12 text For determining the multipotent differentiation capabilities of rat AMSCs, including osteogenic, adipogenic, and chondrogenic differentiation, AMSCs were cultured in the following medium types: (1) os [627, 451, 1115, 1103] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
29 2 13 text PEMF stimulates MSC-derived exosomes. Rat MSCs (P3-P6) were cultured in low-glucose DMEM (Gibco, USA) when cell confluence reached 80% to 90%. The custom-designed PEMF exposure system comprises a wave [628, 1133, 1115, 1425] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 3 0 number 202 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
31 3 1 header CARTILAGE 13(4) [940, 80, 1082, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
32 3 2 image [100, 159, 1049, 912] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
33 3 3 figure_title Figure I. PEMF modulates AMSC-derived exosomes in the incubator. PEMF = pulsed electromagnetic field; AMSC = adipose tissue-derived MSC. [90, 952, 620, 995] figure_caption 0.85 ["figure_title label: Figure I. PEMF modulates AMSC-derived exosomes in the incuba"] figure_caption 0.85 reference_like citation_line True True
34 3 4 text contained inside the cylindrical electromagnetic coil seal, embedded in the middle of the constant temperature incubator. MSC cells were cultured in pure low-glucose DMEM before being exposed to PEMF [89, 1029, 573, 1269] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
35 3 5 text Isolation and characterization of MSC-derived exosomes. MSCs were cultured in pure low-glucose DMEM for 48 hours to collect the conditioned medium. The supernatant was then centrifuged at 120,000g at [89, 1293, 574, 1415] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
36 3 6 text [599, 1029, 1084, 1100] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
37 3 7 text The exosome morphology was observed under 100-kV transmission electron microscopy (TEM; HITACHI H-7000FA, Japan). The particle size distribution of exosomes was analyzed by Zetaview (Particle Metrix, [599, 1101, 1084, 1270] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
38 3 8 text Primary culture of chondrocytes and in vitro model of OA-like chondrocytes. Rat chondrocytes were isolated from 1-week-old Sprague-Dawley rats' ribs (n = 2, provided by the Chengdu Dossy Experimental [598, 1293, 1085, 1415] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
39 4 0 header Xu et al. [122, 81, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
40 4 1 number 203 [1077, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
41 4 2 figure_title Table I. Primer Sequences and Mapleton Sizes for Quantitative Polymerase Chain Reaction. [121, 133, 603, 178] table_caption 0.9 ["table prefix matched: Table I. Primer Sequences and Mapleton Sizes for Quantitativ"] table_caption 0.9 display_zone table_caption_like table_number True True
42 4 3 table <table><tr><td>Genes</td><td>Primer Sequence (5′-3′)</td></tr><tr><td>MMP13</td><td>F: 5′-AGCAGGTTGAGCCTGAACTGT-3′ R: 5′-GCAGCACTGAGCCTTTTCACC-3′</td></tr><tr><td>COL2A1</td><td>F: 5′-GCCCAACTGGCAAACA [120, 184, 592, 495] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
43 4 4 text cultured with DMEM/F-12 medium containing 10% FBS, 100 U/ml penicillin, and 100 U/ml streptomycin (Gibco). The medium was changed every 3 days. For all experiments described, the chondrocytes in monol [120, 537, 603, 658] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
44 4 5 text For the in vitro model of OA-like chondrocytes, chondrocytes were induced to express an OA-like phenotype by interleukin (IL)-1 $ \beta $ treatment (Cyagen Biosciences Inc.). Briefly, IL-1 $ \beta $ ( [120, 658, 603, 779] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
45 4 6 text MSC-derived exosome uptake in vitro. Exosomes were labeled using the red fluorescent dye 3,3'-dioctadecyloxacarbocyanine perchlorate (DiO) according to the manufacturer's instructions (Cyagen Bioscien [120, 802, 605, 1117] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
46 4 7 text Real-time RT-qPCR. Total RNA was extracted from cells using the Total Exosome Isolation Reagent (Invitrogen, USA), followed by reverse transcription to generate the first-strand cDNA using the PrimeSc [119, 1138, 604, 1429] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
47 4 8 text [628, 134, 1115, 471] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
48 4 9 text Western blot. Passage 2-4 chondrocytes were used for protein extraction. Briefly, chondrocytes were washed with PBS 3 times and lysed with radioimmunoprecipitation assay (RIPA) lysis buffer (Beyotime, [628, 495, 1115, 1001] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
49 4 10 paragraph_title In Vivo Study [631, 1032, 764, 1058] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: In Vivo Study"] subsection_heading 0.6 body_zone heading_like short_fragment True True
50 4 11 text The rat model of OA and experimental design. Thirty-nine 8-week-old male SD rats (provided by the Chengdu Dossy Experimental Animals Company) were anesthetized with 2.5% to 3% isoflurane. Twenty-seven [629, 1070, 1115, 1433] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 5 0 number 204 [93, 80, 130, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
52 5 1 header CARTILAGE 13(4) [940, 79, 1083, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
53 5 2 text EXO group; n = 7, OA + 75 Hz EXO group) (AMSC-derived exosomes exposed to PEMF were injected with the same concentration), while intra-articular injection of 10 μl of normal PBS was performed in the O [88, 138, 575, 334] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
54 5 3 text Micro-CT imaging study. At 8 weeks of treatment, rats were sacrificed and the distal part of the femur and the proximal part of the tibia were cut with a blunt scissor to acquire knee joint tissues. M [88, 360, 575, 627] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
55 5 4 text Histological staining and immunohistochemistry. At 8 weeks of treatment, the rats were sacrificed and articular cartilage samples were collected. After fixation with paraformaldehyde for 24 hours and [89, 650, 575, 1156] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
56 5 5 text For immunohistochemistry (IHC), the deparaffinized sections were soaked in EDTA (pH 9.0) for antigen retrieval by a microwave method. The sections were placed in a 3% hydrogen peroxide solution and in [89, 1156, 574, 1446] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
57 5 6 paragraph_title Statistical Analysis [601, 133, 774, 161] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis"] subsection_heading 0.6 body_zone heading_like none True True
58 5 7 text Data are expressed as mean ± standard deviation (SD). Repeated measures were analyzed by repeated-measures analysis of variance (ANOVA) with Bonferroni post hoc analysis. The other data were analyzed [599, 171, 1085, 366] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
59 5 8 paragraph_title Results Characterization of AMSCs and AMSC-Derived Exosomes [600, 396, 1034, 492] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Results Characterization of AMSCs and AMSC-Derived Exosomes"] subsection_heading 0.6 body_zone heading_like none True True
60 5 9 footer [600, 436, 1034, 492] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
61 5 10 text The AMSCs were extracted from the rat adipose tissue. Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and CD45 (Fig. 2A) [599, 503, 1084, 672] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
62 5 11 text For exosome preparation, 200 ml of AMSC-conditioned medium was centrifuged, and 50 µg of exosomes can be purified. The dynamic light-scattering measurement indicated that the mean size of AMSC-derived [597, 672, 1085, 939] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
63 5 12 paragraph_title PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes [599, 964, 1036, 1021] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes"] subsection_heading 0.6 body_zone heading_like none True True
64 5 13 text To investigate whether PEMF-exposed AMSC-derived exosomes could enter chondrocytes through co-culture, exosomes stained with DiO were co-cultured with chondrocytes, and 24 hours later chondrocytes wer [598, 1031, 1085, 1273] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 5 14 paragraph_title PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Inflammation [599, 1301, 999, 1386] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes"] subsection_heading 0.6 body_zone heading_like none True True
66 5 15 text Next, to evaluate whether PEMF at different frequencies could modulate the effect of AMSC-derived exosomes on [598, 1395, 1085, 1446] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 6 0 header Xu et al. [123, 81, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
68 6 1 number 205 [1077, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
69 6 2 figure_title A [164, 165, 189, 190] figure_inner_text 0.9 ["panel label / figure inner text: A"] figure_inner_text 0.9 display_zone legend_like panel_label True True
70 6 3 chart [164, 194, 603, 369] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
71 6 4 chart [616, 195, 1056, 369] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
72 6 5 chart [166, 384, 601, 558] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
73 6 6 chart [617, 382, 1057, 558] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
74 6 7 figure_title B [166, 573, 187, 596] figure_inner_text 0.9 ["panel label / figure inner text: B"] figure_inner_text 0.9 display_zone legend_like panel_label True True
75 6 8 image [167, 600, 1062, 827] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
76 6 9 figure_title C [165, 843, 190, 869] figure_inner_text 0.9 ["panel label / figure inner text: C"] figure_inner_text 0.9 display_zone legend_like panel_label True True
77 6 10 chart [161, 859, 481, 1102] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
78 6 11 figure_title D [500, 843, 523, 869] figure_inner_text 0.9 ["panel label / figure inner text: D"] figure_inner_text 0.9 display_zone legend_like panel_label True True
79 6 12 image [498, 869, 805, 1096] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
80 6 13 figure_title E [838, 842, 861, 869] figure_inner_text 0.9 ["panel label / figure inner text: E"] figure_inner_text 0.9 display_zone legend_like panel_label True True
81 6 14 image [816, 842, 1094, 1119] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
82 6 15 figure_title Figure 2. Characterization of AMSCs and AMSC-derived exosomes. (A) Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and C [119, 1146, 1108, 1292] figure_caption 0.92 ["figure_title label: Figure 2. Characterization of AMSCs and AMSC-derived exosome"] figure_caption 0.92 display_zone legend_like figure_number True True
83 6 16 text IL-1β-induced chondrocyte inflammation, the expressions of common inflammation factors in OA (matrix metalloproteinase 13 [MMP13], caspase-1, and IL-1) were assessed in IL-1β-treated chondrocytes. As [120, 1328, 604, 1426] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
84 6 17 text [628, 1333, 1116, 1432] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
85 7 0 number 206 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
86 7 1 header CARTILAGE 13(4) [940, 80, 1083, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
87 7 2 image [132, 162, 300, 351] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
88 7 3 image [302, 166, 467, 351] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
89 7 4 image [470, 165, 637, 350] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
90 7 5 figure_title C [653, 164, 675, 188] figure_inner_text 0.9 ["panel label / figure inner text: C"] figure_inner_text 0.9 display_zone legend_like panel_label True True
91 7 6 chart [659, 203, 833, 329] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
92 7 7 figure_title B [135, 358, 154, 380] figure_inner_text 0.9 ["panel label / figure inner text: B"] figure_inner_text 0.9 display_zone legend_like panel_label True True
93 7 8 chart [842, 206, 1012, 327] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
94 7 9 chart [137, 380, 302, 559] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
95 7 10 chart [313, 380, 473, 558] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
96 7 11 chart [484, 380, 642, 560] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
97 7 12 chart [661, 404, 832, 529] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
98 7 13 chart [840, 380, 1046, 516] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
99 7 14 chart [153, 579, 309, 755] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
100 7 15 figure_title D [652, 547, 673, 571] figure_inner_text 0.9 ["panel label / figure inner text: D"] figure_inner_text 0.9 display_zone legend_like panel_label True True
101 7 16 chart [318, 579, 472, 753] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
102 7 17 chart [658, 583, 1046, 749] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
103 7 18 figure_title Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL-1β-induced downregulation of anabolic markers and upregulation of catabolic markers in cartilage degradation. (A) Immunofluorescence staini [90, 802, 1078, 969] figure_caption 0.92 ["figure_title label: Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL"] figure_caption 0.92 display_zone legend_like figure_number True True
104 7 19 text attenuated IL-1 $ \beta $-induced changes in the expression of these genes (P < 0.01 except for MMP13 in OA + EXO group). And PEMF-exposed AMSC-derived exosomes had a substantially better attenuation [89, 1003, 575, 1218] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
105 7 20 text Western blot (Fig. 3C) also demonstrated that IL-1β induction significantly upregulated the expression of IL-1 (P < 0.01) and caspase-1 (P < 0.01) proteins. And the treatment of AMSC-derived exosomes [89, 1220, 575, 1437] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
106 7 21 paragraph_title PEMF Promoted the Suppression Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Matrix Degeneration [599, 1003, 998, 1087] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF Promoted the Suppression Effect of AMSC-Derived Exosome"] subsection_heading 0.6 body_zone heading_like none True True
107 7 22 text In addition, to investigate whether PEMF could modulate the effect of AMSC-derived exosomes on IL-1β-induced reduction in chondrocyte matrix synthesis, the expressions of common anabolic markers (COL2 [600, 1098, 1087, 1436] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
108 8 0 header Xu et al. [122, 80, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
109 8 1 number 207 [1077, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
110 8 2 text ACAN (P < 0.01), and SOX9 (P < 0.01) mRNA expressions. Also, compared with PEMF at 15 and 45 Hz, the 75-Hz PEMF-exposed AMSC-derived exosomes upregulated the expression of COL2A1 (P < 0.05), ACAN (P < [120, 139, 603, 260] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
111 8 3 text In addition, ELISA (Fig. 3D) also demonstrated that AMSC-derived exosomes (1 × 10⁸ particles/ml) significantly attenuated IL-1β-induced low expression of COL2A1 proteins (P < 0.01). Meanwhile, ELISA ( [119, 261, 605, 478] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
112 8 4 paragraph_title PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Damage in ACLT-Induced Experimental OA Rats [119, 508, 529, 593] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Da"] subsection_heading 0.6 body_zone heading_like none True True
113 8 5 text Given that OA was always accompanied by cartilage defects, we hypothesized that AMSC-derived exosomes exposed to PEMF could alleviate the progression of OA via inducing chondrocyte matrix synthesis. I [119, 604, 605, 916] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
114 8 6 text Eight weeks after the model was established, the knee joint specimens of animals were collected for micro-CT imaging studies (Fig. 4A) and H&E staining (Fig. 4B). The micro-CT images displayed that in [117, 916, 607, 1469] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
115 8 7 text [629, 134, 1114, 349] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
116 8 8 text To further clarify the relationship between COL2A1, ACAN, and extracellular matrix (ECM), IHC staining of COL2A1 and ACAN was performed in the knee cartilage layer of the in vivo knee joint OA model. [628, 350, 1115, 593] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
117 8 9 paragraph_title Discussion [630, 629, 757, 655] section_heading 0.9 ["explicit scholarly heading: Discussion"] section_heading 0.9 body_zone heading_like canonical_section_name True True
118 8 10 text In the present study, we investigated the regulatory effect of PEMF with different frequencies on osteoarthritic cartilage regeneration of AMSC-derived exosomes. The in vitro study showed that the PEM [628, 668, 1115, 932] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
119 8 11 text Previously it has been shown that PEMF could affect biological functions via the production of coherent or interfering fields that modify fundamental electromagnetic fields generated by living organis [628, 933, 1115, 1463] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
120 9 0 number 208 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
121 9 1 header CARTILAGE 13(4) [940, 80, 1082, 104] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
122 9 2 image [109, 149, 1058, 891] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
123 9 3 figure_title Figure 4. PEMF-regulated AMSC-derived exosomes alleviate cartilage damage in ACLT-induced experimental osteoarthritis rats. (A) The micro-CT image of the transverse section of the epiphyseal proximal [92, 920, 1077, 1048] figure_caption 0.92 ["figure_title label: Figure 4. PEMF-regulated AMSC-derived exosomes alleviate car"] figure_caption 0.92 display_zone legend_like figure_number True True
124 9 4 figure_title PEMF = pulsed electromagnetic field; AMSC = adipose tissue derived MSC; ACLT = anterior cruciate ligament transaction; OARSI = Osteoarthritis Research Society International; OA = osteoarthritis. [91, 1046, 1073, 1086] figure_caption_candidate 0.85 ["figure_title label: PEMF = pulsed electromagnetic field; AMSC = adipose tissue d"] figure_caption 0.85 legend_like none False False
125 9 5 text the 3D culture of rat bone marrow MSCs. $ ^{16,23,38} $ In addition, PEMF could potentiate MSCs' anti-inflammatory responses. $ ^{31} $ In this study, the enhanced effect of PEMF on AMSC-derived exoso [89, 1121, 574, 1289] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
126 9 6 text Cytokines secreted by immune cells are the main players of OA. IL-1β drives the inflammatory cascade independently or in collaboration with other cytokines, and has been used to trigger inflammation i [88, 1290, 574, 1434] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
127 9 7 text [598, 1120, 1087, 1435] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
128 10 0 header Xu et al. [122, 80, 195, 103] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
129 10 1 number 209 [1076, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
130 10 2 text low-frequency PEMF in ameliorating the deterioration of bone microarchitecture in ovariectomized (OVX) mice, and the inhibitory effect of PEMF may be associated with IL-1β inhibition. $ ^{[31,50]} $ T [119, 134, 605, 422] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
131 10 3 text Moreover, IL-1β interferes with the production of essential structural proteins, including SOX9, collagen type II, and aggrecan, by influencing the activity of chondrocytes in the joint. $ ^{[51,52]} [119, 423, 605, 806] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
132 10 4 text Previously it has been shown that the inflammatory progression of OA could be alleviated by MSCs, which is associated with the multiple miRNAs and long non-coding RNAs (lncRNAs) capsulated in exosomes [118, 807, 606, 1408] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
133 10 5 text [628, 133, 1114, 302] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
134 10 6 text In particular, as demonstrated by Brighton et al.,⁶⁷ PEMF determines signal transduction through the intracellular release of Ca²⁺, leading to an increase in cytosolic Ca²⁺ and an increase in activate [628, 301, 1115, 854] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
135 10 7 text There are still some limitations to this study. First, on the basis of in vitro experiments, 75-Hz PEMF stimulation was found to have superior effect on AMSC-derived exosomes. Thus, in the in vivo stu [628, 856, 1115, 1168] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
136 10 8 paragraph_title Conclusion [630, 1199, 765, 1225] section_heading 0.9 ["explicit scholarly heading: Conclusion"] section_heading 0.9 body_zone heading_like canonical_section_name True True
137 10 9 text In the present study, PEMF-exposed AMSC-derived exosomes could significantly inhibit the degeneration and inflammation of osteoarthritic cartilage. Compared with other frequency parameters, the PEMF a [628, 1238, 1115, 1408] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
138 11 0 number 210 [93, 80, 129, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
139 11 1 header CARTILAGE 13(4) [941, 80, 1082, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
140 11 2 text osteoarthritic cartilage degeneration. These findings laid a foundation for the regulatory mechanism of PEMF stimulation on MSC-derived exosomes and opened up a new direction for enhancing the therape [91, 134, 573, 254] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
141 11 3 paragraph_title Author Contributions [92, 279, 304, 300] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Author Contributions"] subsection_heading 0.6 body_zone support_like none True True
142 11 4 text Yang Xu: Conceptualization, Methodology, Data curation, Formal analysis, Writing—original draft, Writing—review & editing. Qian Wang: Conceptualization, Methodology, Data curation, Formal analysis, Fu [90, 309, 573, 554] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
143 11 5 paragraph_title Acknowledgments and Funding [92, 577, 395, 600] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Acknowledgments and Funding"] subsection_heading 0.6 body_zone heading_like none True True
144 11 6 text The author(s) disclosed receipt of the following financial support for the research, authorship, and/or publication of this article: This work was supported by grants from the National Natural Science [91, 608, 573, 697] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
145 11 7 paragraph_title Declaration of Conflicting Interests [92, 721, 428, 744] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Declaration of Conflicting Interests"] backmatter_boundary_candidate 0.5 body_zone heading_like none True True
146 11 8 text The author(s) declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article. [91, 752, 572, 817] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
147 11 9 paragraph_title Ethical Approval [93, 852, 254, 876] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Ethical Approval"] subsection_heading 0.6 body_zone heading_like short_fragment True True
148 11 10 text This study protocol was approved by the Animal Ethics Committee of the West China Hospital of Sichuan University (Sichuan, China; approval no. 2020350A). [91, 884, 572, 950] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
149 11 11 paragraph_title ORCID iDs [92, 976, 203, 998] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: ORCID iDs"] subsection_heading 0.6 body_zone heading_like short_fragment True True
150 11 12 text Cheng-Qi He https://orcid.org/0000-0002-5349-0571 Hong-Chen He https://orcid.org/0000-0003-4635-6769 [90, 1007, 523, 1061] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 11 13 paragraph_title References [93, 1091, 204, 1113] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone heading_like short_fragment True True
152 11 14 reference_content 1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiology, risk factors and disease outcomes of osteoarthritis. Best Pract Res Clin Rheumatol. 2018;32(2):312-26. [103, 1123, 571, 1186] reference_item 0.85 ["reference content label: 1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiolo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
153 11 15 reference_content 2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literature update. Curr Opin Rheumatol. 2018;30(2):160-7. [102, 1189, 570, 1231] reference_item 0.85 ["reference content label: 2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
154 11 16 reference_content 3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan YZ, Fauzi MB. Mesenchymal stem cells: current concepts in the management of inflammation in osteoarthritis. Biomedicines. 2021;9(7):785. doi [103, 1233, 571, 1338] reference_item 0.85 ["reference content label: 3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
155 11 17 reference_content 4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State of the art: the immunomodulatory role of MSCs for osteoarthritis. Int J Mol Sci. 2022;23(3):1618. doi:10.3390/ijms23031618. [102, 1343, 572, 1428] reference_item 0.85 ["reference content label: 4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
156 11 18 reference_content 5. Bortoluzzi A, Furini F, Scirè CA. Osteoarthritis and its management: epidemiology, nutritional aspects and environmental factors. Autoimmun Rev. 2018;17(11):1097-104. [611, 135, 1082, 200] reference_item 0.85 ["reference content label: 5. Bortoluzzi A, Furini F, Scir\u00e8 CA. Osteoarthritis and its "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
157 11 19 reference_content 6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of hip and knee osteoarthritis: a review. Jama. 2021;325(6):568-78. [612, 202, 1083, 245] reference_item 0.85 ["reference content label: 6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
158 11 20 reference_content 7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, Block J, et al. 2019 American College of Rheumatology/Arthritis Foundation guideline for the management of osteoarthritis of the hand, hip, a [613, 247, 1083, 354] reference_item 0.85 ["reference content label: 7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, B"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
159 11 21 reference_content 8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu E, et al. Alternative and complementary therapies in osteoarthritis and cartilage repair. Aging Clin Exp Res. 2020;32(4):547-60. [612, 357, 1082, 444] reference_item 0.85 ["reference content label: 8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
160 11 22 reference_content 9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strategies for cartilage defects and osteoarthritis. Curr Opin Pharmacol. 2018;40:74-80. [610, 448, 1081, 510] reference_item 0.85 ["reference content label: 9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strate"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
161 11 23 reference_content 10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mesenchymal stem cells in knee osteoarthritis treatment: A systematic review and meta-analysis. J Orthop Transl. 2020;24:p121-30. [605, 515, 1081, 599] reference_item 0.85 ["reference content label: 10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mes"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
162 11 24 reference_content 11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem cell related therapies for cartilage lesions and osteoarthritis. Am J Transl Res. 2019;11(10):6275-89. [605, 604, 1082, 667] reference_item 0.85 ["reference content label: 11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem ce"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
163 11 25 reference_content 12. Bao C, He C. The role and therapeutic potential of MSC-derived exosomes in osteoarthritis. Arch Biochem Biophys. 2021;710:109002. [605, 671, 1081, 733] reference_item 0.85 ["reference content label: 12. Bao C, He C. The role and therapeutic potential of MSC-d"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
164 11 26 reference_content 13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exosomes for effective cartilage tissue repair and treatment of osteoarthritis. Biotechnol J. 2020;15(12):e2000082. [605, 738, 1083, 801] reference_item 0.85 ["reference content label: 13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
165 11 27 reference_content 14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-free MSC therapy for cartilage regeneration: Implications for osteoarthritis treatment. Semin Cell Dev Biol. 2017;67:56-64. [605, 804, 1083, 868] reference_item 0.85 ["reference content label: 14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
166 11 28 reference_content 15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar K, Kumari U, et al. Mesenchymal stem cell-derived extracellular vesicles: regenerative potential and challenges. Biology (Basel). 2021;10(3) [605, 872, 1082, 957] reference_item 0.85 ["reference content label: 15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
167 11 29 reference_content 16. Parate D, Franco-Obregón A, Fröhlich J, Beyer C, Abbas AA, Kamarul T, et al. Enhancement of mesenchymal stem cell chondrogenesis with short-term low intensity pulsed electromagnetic fields. Sci Re [605, 962, 1082, 1046] reference_item 0.85 ["reference content label: 16. Parate D, Franco-Obreg\u00f3n A, Fr\u00f6hlich J, Beyer C, Abbas A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
168 11 30 reference_content 17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP, Herbert BR. Priming adipose-derived mesenchymal stem cells with hyaluronan alters growth kinetics and increases attachment to articular car [605, 1051, 1082, 1157] reference_item 0.85 ["reference content label: 17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
169 11 31 reference_content 18. Rando TA, Ambrosio F. Regenerative rehabilitation: applied biophysics meets stem cell therapeutics. Cell Stem Cell. 2018;22(3):306-9. [605, 1161, 1081, 1225] reference_item 0.85 ["reference content label: 18. Rando TA, Ambrosio F. Regenerative rehabilitation: appli"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
170 11 32 reference_content 19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. Understanding mechanobiology: physical therapists as a force in mechanotherapy and musculoskeletal regenerative rehabilitation. Phys Ther. 20 [605, 1229, 1082, 1313] reference_item 0.85 ["reference content label: 19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. U"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
171 11 33 reference_content 20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed electromagnetic field therapy on pain, stiffness, physical function, and quality of life in patients with osteoarthritis: a systematic review [604, 1317, 1083, 1426] reference_item 0.85 ["reference content label: 20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed el"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
172 12 0 header Xu et al. [123, 81, 194, 103] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
173 12 1 number 211 [1077, 81, 1111, 102] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
174 12 2 reference_content 21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Pulsed electromagnetic field at different stages of knee osteoarthritis in rats induced by low-dose monosodium iodoacetate: Effect on subchondra [123, 134, 602, 263] reference_item 0.85 ["reference content label: 21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Puls"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
175 12 3 reference_content 22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al. Magnetic enhancement of chondrogenic differentiation of mesenchymal stem cells. ACS Biomater Sci Eng. 2019;5(5):2200-7. [124, 267, 601, 352] reference_item 0.85 ["reference content label: 22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
176 12 4 reference_content 23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obregón A, et al. Pulsed electromagnetic fields potentiate the paracrine function of mesenchymal stem cells for cartilage regeneration. Stem Ce [124, 355, 602, 441] reference_item 0.85 ["reference content label: 23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
177 12 5 reference_content 24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel T, Park CH, et al. Electromagnetic manipulation enabled calcium alginate Janus microsphere for targeted delivery of mesenchymal stem cells. [124, 444, 603, 528] reference_item 0.85 ["reference content label: 24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
178 12 6 reference_content 25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shuttled by adipose tissue-derived mesenchymal stem cell-derived extracellular vesicles suppresses myocardial pyroptosis in atrial fibrillation [125, 531, 603, 638] reference_item 0.85 ["reference content label: 25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
179 12 7 reference_content 26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte proliferation, apoptosis and autophagy through the PI3K/AKT/mTOR signaling pathway in rat models with rheumatoid arthritis. Biomed Pharmacothe [124, 642, 602, 726] reference_item 0.85 ["reference content label: 26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte pr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
180 12 8 reference_content 27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI histopathology initiative: recommendations for histological assessments of osteoarthritis in the rat. Osteoarthritis Cartilage. 2010;18(Suppl [124, 729, 602, 814] reference_item 0.85 ["reference content label: 27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI h"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
181 12 9 reference_content 28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Brink P, Christ GJ, et al. The effect of low-frequency electromagnetic field on human bone marrow stem/progenitor cell differentiation. Stem Ce [124, 818, 602, 902] reference_item 0.85 ["reference content label: 28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Bri"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
182 12 10 reference_content 29. Trock DH. Electromagnetic fields and magnets. Investigational treatment for musculoskeletal disorders. Rheum Dis Clin North Am. 2000;26(1):51-62. [124, 906, 602, 968] reference_item 0.85 ["reference content label: 29. Trock DH. Electromagnetic fields and magnets. Investigat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
183 12 11 reference_content 30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, Puvanakrishnan R. Low frequency pulsed electromagnetic field: a viable alternative therapy for arthritis. Indian J Exp Biol. 2009;47(12):939- [124, 972, 602, 1056] reference_item 0.85 ["reference content label: 30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, P"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
184 12 12 reference_content 31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal stromal cells/pericytes (MSCs) with pulsed electromagnetic field (PEMF) has the potential to treat rheumatoid arthritis. Front Immunol. 201 [124, 1059, 602, 1143] reference_item 0.85 ["reference content label: 31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
185 12 13 reference_content 32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et al. Electromagnetic fields enhance chondrogenesis of human adipose-derived stem cells in a chondrogenic microenvironment in vitro. J Appl P [124, 1146, 602, 1253] reference_item 0.85 ["reference content label: 32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
186 12 14 reference_content 33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina L, De Angelis MG, et al. A comparative analysis of the in vitro effects of pulsed electromagnetic field treatment on osteogenic differentiat [124, 1257, 602, 1364] reference_item 0.85 ["reference content label: 33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
187 12 15 reference_content 34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldorf K, Fentz A-K, et al. Co-culture with human osteoblasts and exposure to extremely low frequency pulsed electromagnetism. [124, 1367, 604, 1432] reference_item 0.85 ["reference content label: 34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldor"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
188 12 16 reference_content netic fields improve osteogenic differentiation of human adipose-derived mesenchymal stem cells. Int J Mol Sci. 2018;19(4):994. [661, 135, 1111, 197] reference_item 0.85 ["reference content label: netic fields improve osteogenic differentiation of human adi"] reference_item 0.85 reference_zone unknown_like none True True
189 12 17 reference_content 35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Giannini A, Riccardi G, et al. Differentiation of human umbilical cord-derived mesenchymal stem cells, WJ-MSCs, into chondrogenic cells in the p [634, 201, 1112, 307] reference_item 0.85 ["reference content label: 35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Gian"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
190 12 18 reference_content 36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect of pulsed electromagnetic fields and dehydroepiandrosterone on viability and osteo-induction of human mesenchymal stem cells. J Tissue Eng [634, 310, 1112, 396] reference_item 0.85 ["reference content label: 36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
191 12 19 reference_content 37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abdemami B. Extremely low frequency electromagnetic field in mesenchymal stem cells gene regulation: chondrogenic markers evaluation. Artif Orga [634, 399, 1112, 483] reference_item 0.85 ["reference content label: 37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abde"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
192 12 20 reference_content 38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, Boyan BD. Pulsed electromagnetic fields enhance BMP-2 dependent osteoblastic differentiation of human mesenchymal stem cells. J Orthop Res. [634, 487, 1112, 572] reference_item 0.85 ["reference content label: 38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
193 12 21 reference_content 39. Chow YY, Chin KY. The Role of Inflammation in the Pathogenesis of Osteoarthritis. Mediators Inflamm. 2020;2020:8293921. [634, 575, 1112, 637] reference_item 0.85 ["reference content label: 39. Chow YY, Chin KY. The Role of Inflammation in the Pathog"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
194 12 22 reference_content 40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP, Fahmi H. Role of proinflammatory cytokines in the pathophysiology of osteoarthritis. Nat Rev Rheumatol. 2011;7(1):33-42. [634, 641, 1112, 705] reference_item 0.85 ["reference content label: 40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
195 12 23 reference_content 41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al. [Research of inflammatory factors and signaling pathways in knee osteoarthritis]. Zhongguo Gu Shang. 2020;33(4):388-192. [634, 707, 1112, 770] reference_item 0.85 ["reference content label: 41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
196 12 24 reference_content 42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S, Plener Z, et al. Chondrocyte dedifferentiation and osteoarthritis (OA). Biochem Pharmacol. 2019;165:49-65. [633, 773, 1112, 836] reference_item 0.85 ["reference content label: 42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
197 12 25 reference_content 43. Goldring MB, Otero M. Inflammation in osteoarthritis. Curr Opin Rheumatol. 2011;23(5):471-148. [633, 840, 1112, 881] reference_item 0.85 ["reference content label: 43. Goldring MB, Otero M. Inflammation in osteoarthritis. Cu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
198 12 26 reference_content 44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix metalloproteinases in osteoarthritis pathogenesis: An updated review. Life Sci. 2019;234:116786. [634, 884, 1112, 946] reference_item 0.85 ["reference content label: 44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix m"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
199 12 27 reference_content 45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw T. Role of Caspase-1 in the pathogenesis of inflammatory-associated chronic noncommunicable diseases. J Inflamm Res. 2020;13:749-64. [633, 949, 1112, 1033] reference_item 0.85 ["reference content label: 45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
200 12 28 reference_content 46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, Pellati A, et al. Characterization of adenosine receptors in bovine chondrocytes and fibroblast-like synoviocytes exposed to low frequency lo [634, 1037, 1112, 1166] reference_item 0.85 ["reference content label: 46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, P"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
201 12 29 reference_content 47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Cadossi R, et al. Electromagnetic fields (EMFs) and adenosine receptors modulate prostaglandin E(2) and cytokine release in human osteoarthrit [633, 1169, 1113, 1276] reference_item 0.85 ["reference content label: 47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Ca"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
202 12 30 reference_content 48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA. A pulsing electric field (PEF) increases human chondrocyte proliferation through a transduction pathway involving nitric oxide signaling. [634, 1279, 1112, 1385] reference_item 0.85 ["reference content label: 48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
203 12 31 reference_content 49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldorff EI, et al. Dynamic imaging demonstrates that pulsed electro- [633, 1388, 1114, 1431] reference_item 0.85 ["reference content label: 49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
204 13 0 number 212 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
205 13 1 header CARTILAGE 13(4) [940, 81, 1082, 103] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
206 13 2 reference_content magnetic fields (PEMF) suppress IL-6 transcription in bovine nucleus pulposus cells. J Orthop Res. 2018;36(2):778-87. doi:10.1002/jor.23713. [123, 135, 572, 198] reference_item 0.85 ["reference content label: magnetic fields (PEMF) suppress IL-6 transcription in bovine"] reference_item 0.85 reference_zone unknown_like none True True
207 13 3 reference_content 50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of pulsed electromagnetic field therapy at different frequencies on bone mass and microarchitecture in osteoporotic mice. Bioelectromagnetics. 2 [93, 201, 576, 307] reference_item 0.85 ["reference content label: 50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of p"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
208 13 4 reference_content 51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \beta $ signaling in osteoarthritis: chondrocytes in focus. Cell Signal. 2019;53:212-23. [94, 311, 570, 373] reference_item 0.85 ["reference content label: 51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \\beta"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
209 13 5 reference_content 52. Vincent TL. IL-1 in osteoarthritis: time for a critical review of the literature. F1000res. 2019;8:934. [94, 377, 573, 418] reference_item 0.85 ["reference content label: 52. Vincent TL. IL-1 in osteoarthritis: time for a critical "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
210 13 6 reference_content 53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyte-specific enhancer elements in the Col11a2 gene resemble the Col2a1 tissue-specific enhancer. J Biol Chem. 1998;273(24):14998-5006. [94, 421, 572, 506] reference_item 0.85 ["reference content label: 53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyt"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
211 13 7 reference_content 54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and function of aggrecan. Cell Res. 2002;12(1):19-32. [93, 509, 571, 551] reference_item 0.85 ["reference content label: 54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
212 13 8 reference_content 55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collagen type II suppresses articular chondrocyte hypertrophy and osteoarthritis progression by promoting integrin $ \beta $1-SMAD1 interaction. [94, 553, 572, 638] reference_item 0.85 ["reference content label: 55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collag"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
213 13 9 reference_content 56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-derived exosomes overexpressing microRNA-26a-5p alleviate osteoarthritis via down-regulation of PTGS2. Int Immunopharmacol. 2020;78:105946. [93, 641, 572, 727] reference_item 0.85 ["reference content label: 56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-de"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
214 13 10 reference_content 57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovial fibroblasts proliferation and inflammatory cytokines secretion through targeting TLR4. Biomed Pharmacother. 2017;96:208-14. [94, 730, 571, 814] reference_item 0.85 ["reference content label: 57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovia"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
215 13 11 reference_content 58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. MicroRNA-193b-3p regulates chondrogenesis and chondrocyte metabolism by targeting HDAC3. Theranostics. 2018;8(10):2862-83. [94, 817, 571, 902] reference_item 0.85 ["reference content label: 58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. Mi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
216 13 12 reference_content 59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exosomes derived from miR-140-5p-overexpressing human synovial mesenchymal stem cells enhance cartilage tissue regeneration and prevent osteoart [94, 905, 572, 1012] reference_item 0.85 ["reference content label: 59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exos"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
217 13 13 reference_content 60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin promotes IL-6 and TNF- $ \alpha $ production in human [92, 1015, 573, 1057] reference_item 0.85 ["reference content label: 60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
218 13 14 reference_content synovial fibroblasts by repressing miR-199a-5p through ERK, p38 and JNK signaling pathways. Int J Mol Sci. 2018;19(1):190. [631, 135, 1081, 200] reference_item 0.85 ["reference content label: synovial fibroblasts by repressing miR-199a-5p through ERK, "] reference_item 0.85 reference_zone unknown_like none True True
219 13 15 reference_content 61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone marrow-derived mesenchymal stem cells alleviates osteoarthritis by inhibiting syndecan-1. Cell Tissue Res. 2020;381(1):99-114. [603, 203, 1082, 290] reference_item 0.85 ["reference content label: 61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone m"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
220 13 16 reference_content 62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KLF3-AS1 from hMSCs promoted cartilage repair and chondrocyte proliferation in osteoarthritis. Biochem J. 2018;475(22):3629-38. [603, 294, 1081, 380] reference_item 0.85 ["reference content label: 62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KL"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
221 13 17 reference_content 63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived exosomal microRNAs contribute to wound inflammation. Sci China Life Sci. 2016;59(12):1305-12. [602, 384, 1082, 448] reference_item 0.85 ["reference content label: 63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
222 13 18 reference_content 64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects chondrocyte proliferation, apoptosis, and inflammation by targeting HMGB1 in osteoarthritis. Inflamm Res. 2020;69(1):63-73. [603, 451, 1081, 538] reference_item 0.85 ["reference content label: 64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects c"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
223 13 19 reference_content 65. Yuan J, Xin F, Jiang W. Underlying signaling pathways and therapeutic applications of pulsed electromagnetic fields in bone repair. Cell Physiol Biochem. 2018;46(4):1581-94. [603, 542, 1082, 607] reference_item 0.85 ["reference content label: 65. Yuan J, Xin F, Jiang W. Underlying signaling pathways an"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
224 13 20 reference_content 66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The use of pulsed electromagnetic field to modulate inflammation and improve tissue regeneration: a review. Bioelectricity. 2019;1(4):247-59. [604, 610, 1082, 696] reference_item 0.85 ["reference content label: 66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The us"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
225 13 21 reference_content 67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Signal transduction in electrically stimulated bone cells. J Bone Joint Surg Am. 2001;83(10):1514-23. [602, 701, 1082, 765] reference_item 0.85 ["reference content label: 67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Sign"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
226 13 22 reference_content 68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. Stimulation of growth factor synthesis by electric and electromagnetic fields. Clin Orthop Relat Res. 2004;419:30-7. [604, 768, 1082, 834] reference_item 0.85 ["reference content label: 68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. St"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
227 13 23 reference_content 69. de Girolamo L, Stanco D, Galliera E, Viganò M, Colombini A, Setti S, et al. Low frequency pulsed electromagnetic field affects proliferation, tissue-specific gene expression, and cytokines release [604, 837, 1082, 945] reference_item 0.85 ["reference content label: 69. de Girolamo L, Stanco D, Galliera E, Vigan\u00f2 M, Colombini"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
228 13 24 reference_content 70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, Chang EI, et al. Osteoblasts stimulated with pulsed electromagnetic fields increase HUVEC proliferation via a VEGF-A independent mechanism. B [603, 949, 1083, 1058] reference_item 0.85 ["reference content label: 70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True

View file

@ -0,0 +1,302 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,RESEARCH ARTICLE,"[97, 53, 358, 82]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,header_image,,"[1037, 1, 1191, 28]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,True
1,2,header,"ADVANCED FUNCTIONAL MATERIALS
w.afm-journal.de","[969, 41, 1098, 117]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
1,3,doc_title,Integrated Electrostimulation Cell Culture Systems Driven by Chemically Modified Twistron Mechanical Energy Harvesting Electrodes,"[96, 147, 1057, 283]",paper_title,0.8,"[""page-1 zone title_zone: Integrated Electrostimulation Cell Culture Systems Driven by""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,4,text,"Seongjae Oh, Keon Jung Kim, Chae Hwa Kim, Jun Hyuk Lee, Hyunsoo Kim, Beomsu Kim, Chae-Lin Park, Junho Oh, Eun Sung Kim, Hyun Kim, Sang Young Yeo, Doyong Kim, Xinghao Hu, Joonmyung Choi, Dongseok Suh, ","[95, 315, 1095, 457]",authors,0.8,"[""page-1 zone author_zone: Seongjae Oh, Keon Jung Kim, Chae Hwa Kim, Jun Hyuk Lee, Hyun""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,5,abstract,Developing mechanical energy harvesters for electrical stimulation (ES) needed to augment cell behavior is a burgeoning area of interest. Mechanical energy harvesters that can generate electrical ener,"[96, 517, 738, 1044]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,body_zone,body_like,none,True,True
1,6,paragraph_title,1. Introduction,"[766, 502, 914, 528]",section_heading,0.85,"[""paragraph_title label with numbering: 1. Introduction""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
1,7,text,"Electrical stimulation (ES) has garnered significant attention with its potential to impact a myriad of biomedical applications, such as neuromodulation and neuroprosthetics, wound healing, cardiac pa","[763, 541, 1099, 848]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,8,text,"When delivering electricity to target biomaterials, conventional power supplies like batteries, electromagnetic field generators, or direct connections to the electrical grid present several challenge","[763, 848, 1099, 1071]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,9,footnote,"S. Oh, S. C. Lim
Department of Energy Science
Sungkyunkwan University
Suwon-si, Gyeonggi-do 16419, Republic of Korea
S. Oh, C. H. Kim, J. H. Lee, H. Kim, S. Y. Yeo, T. H. Kim, S. H. Kim
Department of ","[95, 1115, 543, 1286]",footnote,0.7,"[""footnote label: S. Oh, S. C. Lim\nDepartment of Energy Science\nSungkyunkwan U""]",footnote,0.7,body_zone,body_like,none,True,True
1,10,footnote,The ORCID identification number(s) for the author(s) of this article can be found under https://doi.org/10.1002/adfm.202315279,"[96, 1374, 588, 1414]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: The ORCID identification number(s) for the author(s) of this""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,11,footnote,"K. J. Kim
Semiconductor R&D Center
Samsung Electronics
Hwaseong 18448, Republic of Korea
C. H. Kim, C. H. Park
Department of Bionanosystem Engineering
Graduate School
Jeonbuk National University
Jeonj","[606, 1111, 905, 1393]",footnote,0.7,"[""footnote label: K. J. Kim\nSemiconductor R&D Center\nSamsung Electronics\nHwase""]",footnote,0.7,body_zone,body_like,none,True,True
1,12,footer,DOI: 10.1002/adfm.202315279,"[97, 1420, 337, 1443]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
1,13,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[98, 1487, 316, 1505]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
1,14,footer,2315279 (1 of 10),"[530, 1484, 664, 1507]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,reference_like,reference_numeric_dot,False,False
1,15,footer,© 2024 Wiley-VCH GmbH,"[937, 1486, 1096, 1506]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[92, 46, 340, 117]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,1,header,"ADVANCED FUNCTIONAL MATERIALS
w.afm-journal.de","[968, 42, 1091, 116]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,2,text,"and user-friendly ES systems. Harnessing mechanical energy is especially attractive, since it can convert abundant natural sources (i.e., motion, pressure, flow, or vibration) into electrical energy.","[89, 148, 582, 237]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,3,text,"ES systems employing mechanical energy harvesters, such as piezoelectrics and triboelectric nanogenerators, have been recently reported.[13-17] To enhance cell proliferation and differentiation, two i","[89, 237, 582, 546]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,algorithm,"B. Kim, J. Oh, J. Choi
Department of Mechanical Design Engineering
Hanyang University
Seoul 04763, Republic of Korea
C.-L. Park, S. H. Kim
HYU-KITECH Joint Department
Hanyang University
Seoul 04763, R","[89, 589, 559, 1446]",unknown_structural,0.2,"[""unrecognized label 'algorithm'""]",unknown_structural,0.2,body_zone,body_like,none,False,True
2,5,text,"while lower values (0.15 μA cm⁻²) may be more suitable for neural stem cells.[16,20,21] In the case of fibroblasts, a slightly wider current range (0.117 μA cm⁻²) may be required to stimulate prolif","[600, 148, 1092, 280]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,text,"We here present a novel approach for ES in cell culture systems, called a fully integrated ES assembly (FESA), which exploits twistron mechanical energy harvesters $ ^{[25-28]} $ to deliver a broad ES","[600, 281, 1093, 745]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,7,paragraph_title,2. Results and Discussion,"[601, 790, 854, 816]",section_heading,0.85,"[""paragraph_title label with numbering: 2. Results and Discussion""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
2,8,paragraph_title,2.1. Design of the FESA,"[601, 828, 786, 852]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.1. Design of the FESA""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
2,9,text,Scheme 1a and Figure S1 (Supporting Information) present a complete FESA designed for enhancing cell proliferation and differentiation. The FESA comprises four primary components: i) a chemically modi,"[599, 872, 1093, 1447]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,10,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[93, 1487, 310, 1505]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,11,number,2315279 (2 of 10),"[525, 1484, 658, 1507]",noise,0.9,"[""page number label""]",noise,0.9,frontmatter_main_zone,reference_like,reference_numeric_dot,False,False
2,12,footer,© 2024 Wiley-VCH GmbH,"[931, 1486, 1090, 1506]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,13,aside_text,"16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio","[1154, 28, 1172, 1532]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,body_zone,body_like,none,False,False
3,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[97, 45, 346, 117]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,1,header,"ADVANCED FUNCTIONAL MATERIALS
/w.afm-journal.de","[966, 42, 1097, 117]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,2,figure_title,(a),"[242, 153, 267, 175]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,3,image,,"[238, 153, 564, 318]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,4,figure_title,(b),"[585, 155, 610, 177]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,5,image,,"[257, 325, 551, 474]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,6,image,,"[582, 155, 960, 461]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,7,figure_title,"Scheme 1. Structure and components diagram of FESA. Schematic illustration showing a) overall structure and conceptual illustration of FESA for the proliferation and differentiation of cells, includin","[96, 485, 1100, 544]",figure_caption_candidate,0.85,"[""figure_title label: Scheme 1. Structure and components diagram of FESA. Schemati""]",figure_caption,0.85,body_zone,legend_like,none,False,False
3,8,paragraph_title,2.2. Fabrication and Harvesting Performances of CPCY,"[95, 588, 509, 610]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.2. Fabrication and Harvesting Performances of CPCY""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,9,text,Figure 1a and Figure S2 (Supporting Information) show the fabrication process for the coiled PDA/CNT yarn (CPCY) that is the stretchable energy harvesting electrode in the CM-twistron harvester (Schem,"[96, 627, 588, 1379]",figure_caption,0.9,"[""figure prefix matched: Figure 1a and Figure S2 (Supporting Information) show the fa"", ""long text, reduced confidence"", ""near figure media assets""]",figure_caption,0.9,display_zone,legend_like,figure_number,True,True
3,10,text,"Figure 1d illustrates mechanical energy harvesting during stretch and release of the twistron harvester that consists of CPCY as a CM-twistron electrode, a Pt mesh as a non-deformed counter electrode,","[95, 1378, 588, 1443]",body_paragraph,0.9,"[""figure caption candidate (body narrative): Figure 1d illustrates mechanical energy harvesting during st""]",figure_caption_candidate,0.9,display_zone,legend_like,figure_number,True,True
3,11,text,,"[604, 587, 1098, 959]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,12,text,"To clarify the energy harvesting mechanism for the CM-twistron harvester as shown in Figure 1d, it is necessary to verify the physical absorption of ions in CPCY. The physical absorption of ions as a ","[604, 962, 1099, 1445]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,13,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[98, 1487, 315, 1505]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,14,number,2315279 (3 of 10),"[530, 1484, 665, 1507]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
3,15,footer,© 2024 Wiley-VCH GmbH,"[937, 1487, 1096, 1506]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,16,aside_text,"16163028, 2024, 33, Downloaded from https://advancedonlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Condition","[1155, 30, 1172, 1533]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,body_zone,body_like,none,False,False
4,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[92, 46, 340, 117]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,1,header,"ADVANCED FUNCTIONAL MATERIALS
ww.afm-journal.de","[957, 42, 1092, 117]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,2,figure_title,(a),"[108, 151, 140, 179]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,3,image,,"[127, 203, 302, 329]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,4,figure_title,(b),"[423, 150, 453, 178]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,5,vision_footnote,CNT yarn in dopamine solution,"[102, 339, 232, 370]",footnote,0.7,"[""vision_footnote label: CNT yarn in dopamine solution""]",footnote,0.7,body_zone,unknown_like,none,True,True
4,6,image,,"[310, 202, 439, 332]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,7,vision_footnote,PDA/CNT yarn,"[303, 346, 392, 364]",footnote,0.7,"[""vision_footnote label: PDA/CNT yarn""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
4,8,chart,,"[442, 176, 684, 391]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,9,figure_title,(d),"[107, 391, 139, 418]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,10,figure_title,(c),"[707, 150, 735, 178]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,11,figure_title,(i),"[127, 423, 147, 447]",figure_inner_text,0.9,"[""panel label / figure inner text: (i)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,12,figure_title,(ii),"[275, 422, 303, 446]",figure_caption_candidate,0.85,"[""figure_title label: (ii)""]",figure_caption,0.85,body_zone,unknown_like,short_fragment,False,False
4,13,image,,"[727, 178, 1021, 375]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,14,figure_title,(e),"[425, 392, 456, 419]",figure_inner_text,0.9,"[""panel label / figure inner text: (e)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,15,image,,"[119, 413, 426, 609]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,16,chart,,"[430, 415, 687, 630]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,17,figure_title,(g),"[108, 619, 138, 647]",figure_inner_text,0.9,"[""panel label / figure inner text: (g)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,18,figure_title,(h),"[405, 617, 438, 644]",figure_inner_text,0.9,"[""panel label / figure inner text: (h)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,19,figure_title,(f),"[715, 383, 742, 411]",figure_inner_text,0.9,"[""panel label / figure inner text: (f)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,20,chart,,"[728, 412, 989, 630]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,21,chart,,"[122, 645, 398, 868]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,22,chart,,"[421, 644, 714, 861]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,23,figure_title,(i),"[717, 618, 741, 647]",figure_inner_text,0.9,"[""panel label / figure inner text: (i)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,24,chart,,"[726, 640, 1085, 861]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,25,figure_title,Figure 1. Performance characterization of CPCY within DMEM as stretching to 30% at 1 Hz. a) Illustration of the process for incorporating PDA into a CNT yarn. b) Fourier-transform infrared (FT-IR) spe,"[90, 873, 1094, 1046]",figure_caption,0.92,"[""figure_title label: Figure 1. Performance characterization of CPCY within DMEM a""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
4,26,text,"at 0.4 V, respectively. This result indicates that both coiled CNT yarn and CPCY dominantly store charge from the capacitive effect, without involving redox processes between both electrodes and DMEM.","[90, 1092, 582, 1267]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,27,text,The harvesting performance of CPCY within DMEM was investigated for the above-mentioned operation mechanism. Since hydrophilic CPCY provides the larger electrochemical accessible area within an aqueou,"[90, 1267, 582, 1444]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,28,text,,"[600, 1091, 1093, 1445]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,29,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[93, 1487, 310, 1505]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,30,number,2315279 (4 of 10),"[524, 1484, 658, 1507]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
4,31,footer,© 2024 Wiley-VCH GmbH,"[931, 1487, 1090, 1506]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,32,aside_text,"16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio","[1155, 30, 1171, 1534]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,body_zone,body_like,none,False,False
5,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[98, 45, 346, 117]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,1,header,"ADVANCED FUNCTIONAL MATERIALS
/w.afm-journal.de","[966, 43, 1098, 116]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,2,figure_title,(a),"[103, 153, 133, 180]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,3,image,,"[147, 175, 407, 358]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,4,figure_title,(b),"[442, 153, 472, 180]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,5,chart,,"[444, 170, 713, 380]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,6,image,,"[772, 179, 906, 285]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,7,figure_title,(c),"[728, 153, 756, 180]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,8,image,,"[924, 185, 1020, 275]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,9,figure_title,(d),"[104, 390, 133, 418]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,10,image,,"[772, 293, 906, 371]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,11,chart,,"[126, 391, 428, 623]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,12,figure_title,(e),"[442, 391, 474, 418]",figure_inner_text,0.9,"[""panel label / figure inner text: (e)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,13,vision_footnote,"PEDOT/CNT
$ \theta_{a}^{app}=41.33^{\circ} $
$ \theta_{r}^{app}=40.42^{\circ} $","[925, 299, 1012, 375]",footnote,0.7,"[""vision_footnote label: PEDOT/CNT\n $ \\theta_{a}^{app}=41.33^{\\circ} $\n $ \\theta_{r}^""]",footnote,0.7,body_zone,unknown_like,none,True,True
5,14,chart,,"[464, 413, 723, 623]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,15,figure_title,(f),"[731, 390, 756, 417]",figure_inner_text,0.9,"[""panel label / figure inner text: (f)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,16,chart,,"[749, 404, 1090, 622]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,17,figure_title,Figure 2. Optimization for PEDOT/CNT sheets. a) SEM and EDS mapping images of PEDOT/CNT sheets (scale bar: 100 μm). b) Surface roughness ratio of PEDOT/CNT sheets dependent on the weight % of PEDOT/CN,"[95, 632, 1097, 748]",figure_caption,0.92,"[""figure_title label: Figure 2. Optimization for PEDOT/CNT sheets. a) SEM and EDS ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,18,text,"and hole-injecting within DMEM, respectively. CPCY and pristine coiled CNT yarn absorbed the ions with opposite charges for energy harvesting, generating an inverse phase of $ I_{SC} $ and $ V_{OC} ","[95, 784, 588, 1026]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,19,text,"The stability for CPCY was investigated by monitoring output performances and comparing morphologies under cyclic test. The CPCY maintains stable $ I_{SC} $ performance for 2 h, even with higher stre","[95, 1026, 587, 1375]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,20,text,"Among the harvesting performance of CPCY, the decrement of matching impedance is a meaningful result in FESA. The low matching impedance (Figure 1h) indicates the enhancement of electricity transfer e","[95, 1377, 589, 1444]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,21,text,,"[605, 784, 1098, 895]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
5,22,paragraph_title,2.3. Characterizations for PEDOT/CNT Sheets,"[607, 939, 957, 961]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.3. Characterizations for PEDOT/CNT Sheets""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
5,23,text,"The conductive scaffold of PEDOT/CNT with 181.7 nm height (Figure S10, Supporting Information) was fabricated with two objectives: i) enhancing cell adhesion, and ii) effectively delivering ES to cell","[606, 982, 1098, 1201]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,24,text,"To enhance cell adhesion on the scaffold, it is essential to optimize both the surface roughness ratio ( $ S_{dr} $) and make the scaffold surface hydrophilic. $ S_{dr} $, which is the ratio of the a","[605, 1203, 1099, 1445]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,25,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[98, 1487, 315, 1505]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
5,26,number,2315279 (5 of 10),"[530, 1484, 664, 1507]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
5,27,footer,© 2024 Wiley-VCH GmbH,"[937, 1487, 1096, 1506]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
5,28,aside_text,"2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditions (https:","[1147, 58, 1171, 1498]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,body_zone,body_like,none,False,False
6,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[92, 46, 339, 116]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
6,1,header,"ADVANCED FUNCTIONAL MATERIALS
w.afm-journal.de","[968, 42, 1091, 114]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
6,2,text,"apparent advancing ( $ \theta_{a}^{app} $) and receding contact angle ( $ \theta_{r}^{app} $) were measured with small volume of droplets ( $ V_{drop} = 100 $ nL), as shown in Figure 2c. The contact a","[89, 149, 582, 331]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,3,text,"In addition, reducing the contact resistance of PEDOT/CNT is crucial for achieving efficient delivery of ES. Figure 2d shows the PEDOT content-dependent sheet resistance ( $ R_s $) measured parallel a","[89, 333, 581, 683]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,4,text,"The optimized PEDOT/CNT is connected between CPCY and Pt mesh to form the complete assembly. In FESA, the PEDOT/CNT can play two roles, which are as 1) a capacitor that is a part of the counter electr","[90, 683, 583, 1232]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,5,paragraph_title,2.4. Scale-Up Process of CPCY for Enhancing ES,"[90, 1268, 456, 1290]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.4. Scale-Up Process of CPCY for Enhancing ES""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
6,6,text,"An investigation of the ideal circuit model for CPCY aimed to enhance the $ E_{Sp} $ density. Figure 3a shows the sequentially deployed circuit model for CPCY, starting from the CNT unit (Figure 3a(i","[88, 1311, 581, 1444]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,7,text,,"[599, 150, 1094, 716]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
6,8,text,"Figure 3b shows real-time $ I_{SC} $ profiles for the pristine CPCY with diameters of 140 $ \mu $m and lengths of 2 cm, width expanded CPCY with diameters of 207 $ \mu $m and lengths of 2 cm (Figur","[600, 719, 1094, 1373]",body_paragraph,0.9,"[""figure caption candidate (body narrative): Figure 3b shows real-time $ I_{SC} $ profiles for the prist""]",figure_caption_candidate,0.9,display_zone,legend_like,figure_number,True,True
6,9,text,The pristine CPCY and the upscaled CPCYs along the width and length directions were investigated to confirm the increased range of $ ES_{PP} $ density. Figure 3c shows the $ ES_{PP} $,"[600, 1377, 1091, 1445]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,10,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[93, 1487, 310, 1505]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
6,11,footer,2315279 (6 of 10),"[524, 1484, 658, 1507]",noise,0.9,"[""footer label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
6,12,footer,© 2024 Wiley-VCH GmbH,"[931, 1487, 1090, 1506]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
6,13,aside_text,"16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio","[1155, 29, 1171, 1532]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,body_zone,body_like,none,False,False
7,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[98, 45, 345, 117]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
7,1,header,"ADVANCED FUNCTIONAL MATERIALS
w.afm-journal.de","[971, 43, 1097, 116]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
7,2,figure_title,(a),"[104, 152, 138, 181]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,3,figure_title,(i) Ideal circuit for CNT unit,"[169, 180, 340, 200]",figure_caption_candidate,0.85,"[""figure_title label: (i) Ideal circuit for CNT unit""]",figure_caption,0.85,,unknown_like,none,False,False
7,4,figure_title,(ii) Circuit for expanded CPCY,"[460, 180, 645, 200]",figure_caption_candidate,0.85,"[""figure_title label: (ii) Circuit for expanded CPCY""]",figure_caption,0.85,,unknown_like,none,False,False
7,5,image,,"[170, 181, 1096, 403]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
7,6,figure_title,(b),"[104, 418, 137, 446]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,7,chart,,"[113, 420, 408, 683]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
7,8,chart,,"[444, 416, 783, 681]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
7,9,figure_title,(d),"[790, 416, 824, 447]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,10,chart,,"[801, 441, 1091, 681]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
7,11,figure_title,Figure 3. Scale-up strategy for CPCY and comparison with other mechanical energy harvesters. a) Schematic illustration showing i) the electrochemical double-layer of CNT units and corresponding electr,"[95, 691, 1097, 808]",figure_caption,0.92,"[""figure_title label: Figure 3. Scale-up strategy for CPCY and comparison with oth""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
7,12,text,density and absolute $ ES_{pp} $ values for all CPCY when they are stretched to 30%. The conductive scaffolds receive the $ ES_{pp} $ values of 103.9137.1 $ \mu $A from upscaled CPCY. Compared to ,"[96, 850, 586, 1002]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
7,13,text,"Frequency-dependent peak-to-peak ESs in FESA are shown in Figure 3d, and Figure S14 (Supporting Information) to compare to other types of mechanical energy harvesters harnessed for the proliferation a","[95, 1002, 587, 1443]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
7,14,paragraph_title,2.5. Cell Culture Capability of FESA,"[607, 850, 874, 872]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.5. Cell Culture Capability of FESA""]",subsection_heading,0.85,body_zone,unknown_like,heading_numbered,True,True
7,15,text,"Prior to investigating the effect of ES from FESA, the cytotoxicity for all components of FESA was evaluated by ISO 109935 guidelines. $ ^{[44,45]} $ As shown in Figure 4a,b, the cell viability remai","[606, 894, 1098, 1070]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,16,text,"The FESA provides ES to the cells by the stretching/releasing of the energy harvesting units (Video S1, Supporting Information). To demonstrate the valid application capability of FESA for cell cultur","[604, 1071, 1098, 1354]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,17,text,"To elucidate the effect of ES generated by FESA, we here investigate the proliferation and differentiation of meniscal primary cells. Particularly, among various cells, meniscal primary cells, with it","[606, 1355, 1098, 1445]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,18,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[98, 1487, 315, 1505]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
7,19,footer,2315279 (7 of 10),"[530, 1484, 664, 1507]",reference_item,0.9,"[""footer label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
7,20,footer,© 2024 Wiley-VCH GmbH,"[937, 1487, 1096, 1506]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
7,21,aside_text,"16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio","[1155, 30, 1171, 1534]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,,unknown_like,none,False,False
8,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[92, 45, 339, 117]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
8,1,header,"ADVANCED FUNCTIONAL MATERIALS
www.afm-journal.de","[946, 42, 1092, 117]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
8,2,figure_title,(a),"[99, 154, 132, 185]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,3,chart,,"[110, 155, 485, 384]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
8,4,figure_title,(b),"[487, 154, 522, 184]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,5,image,,"[495, 180, 1083, 374]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
8,6,figure_title,(c),"[102, 389, 134, 421]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,7,image,,"[105, 397, 566, 612]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
8,8,figure_title,(d),"[587, 392, 620, 422]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,9,image,,"[590, 398, 1083, 611]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
8,10,figure_title,(e),"[101, 625, 135, 656]",figure_inner_text,0.9,"[""panel label / figure inner text: (e)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,11,figure_title,(f),"[307, 625, 337, 656]",figure_inner_text,0.9,"[""panel label / figure inner text: (f)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,12,chart,,"[129, 627, 303, 859]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
8,13,chart,,"[312, 626, 567, 851]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
8,14,figure_title,(g),"[568, 625, 601, 656]",figure_inner_text,0.9,"[""panel label / figure inner text: (g)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,15,chart,,"[573, 626, 831, 846]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
8,16,figure_title,(h),"[833, 625, 867, 655]",figure_inner_text,0.9,"[""panel label / figure inner text: (h)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,17,chart,,"[837, 638, 1085, 845]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
8,18,figure_title,"Figure 4. Evaluation of the biocompatibility and cell culture capability of FESA a) Cytotoxicity study of the materials comprising FESA using L-929 fibroblast cells, b) Morphology of L-929 cells after","[90, 867, 1091, 964]",figure_caption,0.92,"[""figure_title label: Figure 4. Evaluation of the biocompatibility and cell cultur""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,19,text,"recovery is exceedingly challenging once damaged. As shown in Figure 4c, electrical stimulation is known to elicit augmentation in the synthesis of type I and type II collagen (Col I and Col II) as we","[90, 1003, 581, 1179]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
8,20,text,"Figure 4dh shows the biological response of meniscal primary cells to ES from FESA, which is after 4 and 7 days of stretching FESA to 10% at 1 Hz to provide ES on the 1 cm x 1 cm PEDOT/CNT sheets (13","[89, 1180, 581, 1398]",body_paragraph,0.9,"[""figure caption candidate (body narrative): Figure 4d\u2013h shows the biological response of meniscal primar""]",figure_caption_candidate,0.9,display_zone,legend_like,figure_number,True,True
8,21,text,"As one of the common methods to demonstrate meniscal primary cell differentiation, we quantified key components of the extracellular matrix (ECM), including type I collagen (Col I), type II collagen (","[90, 1399, 582, 1444]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
8,22,text,,"[598, 1003, 1093, 1445]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
8,23,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[93, 1487, 310, 1505]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
8,24,number,2315279 (8 of 10),"[524, 1484, 658, 1508]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
8,25,footer,© 2024 Wiley-VCH GmbH,"[931, 1486, 1090, 1506]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
8,26,aside_text,"16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio","[1155, 29, 1171, 1533]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,,unknown_like,none,False,False
9,0,header,"ADVANCED
SCIENCE NEWS
www.advancedsciencenews.com","[98, 46, 345, 117]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
9,1,header,"ADVANCED FUNCTIONAL MATERIALS
w.afm-journal.de","[973, 42, 1096, 116]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
9,2,paragraph_title,3. Conclusion,"[97, 150, 234, 174]",section_heading,0.85,"[""paragraph_title label with numbering: 3. Conclusion""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
9,3,text,"In conclusion, we successfully demonstrated the FESA, which consists of the CM-twistron energy harvester unit including the CPCY and the conductive scaffold as the PEDOT/CNT. Incorporating hydrophilic","[96, 188, 588, 584]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
9,4,paragraph_title,Supporting Information,"[97, 622, 328, 648]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Supporting Information""]",backmatter_boundary_candidate,0.5,,heading_like,none,True,True
9,5,text,Supporting Information is available from the Wiley Online Library or from the author.,"[96, 659, 585, 698]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
9,6,paragraph_title,Acknowledgements,"[97, 738, 289, 763]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements""]",sub_subsection_heading,0.6,tail_nonref_hold_zone,heading_like,short_fragment,True,True
9,7,text,This work was partially supported by the Korea Institute of Industrial Technology (KITECH -JE230016); the National Research Foundation of Korea (NRF) grant funded by the Korea government (MSIT) (No. 2,"[95, 774, 588, 1080]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,unknown_like,none,True,True
9,8,paragraph_title,Conflict of Interest,"[97, 1118, 280, 1141]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Conflict of Interest""]",subsection_heading,0.6,tail_nonref_hold_zone,support_like,none,False,True
9,9,text,The authors declare no conflict of interest.,"[97, 1156, 382, 1175]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,support_like,none,True,True
9,10,paragraph_title,Author Contributions,"[97, 1215, 305, 1238]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Author Contributions""]",subsection_heading,0.6,tail_nonref_hold_zone,support_like,none,False,True
9,11,text,"S.O., K.J.K., and C.H.K. contributed equally to this work. S.O., S.H.K., and T.H.K. designed the project. S.J.O., K.J.K., and C.H.K. designed the experiments and characterisation. Under the supervisio","[96, 1252, 587, 1444]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
9,12,paragraph_title,Data Availability Statement,"[607, 150, 872, 175]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Data Availability Statement""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
9,13,paragraph_title,Keywords,"[608, 265, 707, 292]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Keywords""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
9,14,text,"cell culture system, electrical stimulation, mechanical energy harvester, PEDOT-coated carbon nanotube sheets","[606, 302, 1096, 342]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,15,text,"Received: December 1, 2023
Revised: February 8, 2024
Published online: March 4, 2024","[878, 366, 1098, 422]",frontmatter_noise,0.88,"[""default body_paragraph for text label"", ""late role resolution: editorial phrase cross-validates non-body classification"", ""zone=body_zone"", ""style_family=support_like""]",body_paragraph,0.6,,support_like,none,False,False
9,16,reference_content,"[1] R. Luo, J. Dai, J. Zhang, Z. Li, Adv. Healthcare Mater. 2021, 10, 2100557.","[616, 486, 1096, 524]",reference_item,0.85,"[""reference content label: [1] R. Luo, J. Dai, J. Zhang, Z. Li, Adv. Healthcare Mater. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,17,reference_content,"[2] B. Lu, M. Ye, J. Xia, Z. Zhang, Z. Xiong, T. Zhang, Adv. Healthcare Mater. 2023, 12, 2300607.","[617, 526, 1097, 563]",reference_item,0.85,"[""reference content label: [2] B. Lu, M. Ye, J. Xia, Z. Zhang, Z. Xiong, T. Zhang, Adv.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,18,reference_content,"[3] Y. Zhang, S. Chen, Z. Xiao, X. Liu, C. Wu, K. Wu, A. Liu, D. Wei, J. Sun, L. Zhou, Adv. Healthcare Mater. 2021, 10, 2100695.","[618, 566, 1096, 604]",reference_item,0.85,"[""reference content label: [3] Y. Zhang, S. Chen, Z. Xiao, X. Liu, C. Wu, K. Wu, A. Liu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,19,reference_content,"[4] A. Gupta, N. Vardalakis, F. B. Wagner, Communications Biology 2023, 6, 14.","[618, 606, 1096, 643]",reference_item,0.85,"[""reference content label: [4] A. Gupta, N. Vardalakis, F. B. Wagner, Communications Bi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,20,reference_content,"[5] L. Liu, J. Zhang, J. Sun, K. Xu, Biomed. Eng. Online 2022, 21, 58.","[618, 645, 1065, 665]",reference_item,0.85,"[""reference content label: [5] L. Liu, J. Zhang, J. Sun, K. Xu, Biomed. Eng. Online 202""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,21,reference_content,"[6] B. D. Cardoso, E. M. Castanheira, S. Lanceros-Méndez, V. F. Cardoso, Adv. Healthcare Mater. 2023, 12, 2202936.","[618, 667, 1096, 704]",reference_item,0.85,"[""reference content label: [6] B. D. Cardoso, E. M. Castanheira, S. Lanceros-M\u00e9ndez, V.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,22,reference_content,"[7] M. X. Doss, C. I. Koehler, C. Gissel, J. Hescheler, A. Sachinidis, J. Cell. Mol. Med. 2004, 8, 465.","[618, 706, 1095, 743]",reference_item,0.85,"[""reference content label: [7] M. X. Doss, C. I. Koehler, C. Gissel, J. Hescheler, A. S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,23,reference_content,"[8] E. Karbassi, A. Fenix, S. Marchiano, N. Muraoka, K. Nakamura, X. Yang, C. E. Murry, Nat. Rev. Cardiol. 2020, 17, 341.","[616, 746, 1096, 784]",reference_item,0.85,"[""reference content label: [8] E. Karbassi, A. Fenix, S. Marchiano, N. Muraoka, K. Naka""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,24,reference_content,"[9] E. Matsa, P. W. Burridge, J. C. Wu, Sci. Transl. Med. 2014, 6, 239.","[615, 785, 1067, 805]",reference_item,0.85,"[""reference content label: [9] E. Matsa, P. W. Burridge, J. C. Wu, Sci. Transl. Med. 20""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,25,reference_content,"[10] M. Parvez Mahmud, N. Huda, S. H. Farjana, M. Asadnia, C. Lang, Adv. Energy Mater. 2018, 8, 1701210.","[610, 806, 1096, 843]",reference_item,0.85,"[""reference content label: [10] M. Parvez Mahmud, N. Huda, S. H. Farjana, M. Asadnia, C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,26,reference_content,"[11] H. Ryu, H.-M. Park, M.-K. Kim, B. Kim, H. S. Myoung, T. Y. Kim, H.-J. Yoon, S. S. Kwak, J. Kim, T. H. Hwang, Nat. Commun. 2021, 12, 4374.","[610, 845, 1096, 883]",reference_item,0.85,"[""reference content label: [11] H. Ryu, H.-M. Park, M.-K. Kim, B. Kim, H. S. Myoung, T.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,27,reference_content,"[12] R. Hinchet, H.-J. Yoon, H. Ryu, M.-K. Kim, E.-K. Choi, D.-S. Kim, S.-W. Kim, Science 2019, 365, 491.","[610, 885, 1096, 923]",reference_item,0.85,"[""reference content label: [12] R. Hinchet, H.-J. Yoon, H. Ryu, M.-K. Kim, E.-K. Choi, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,28,reference_content,"[13] X. Xiao, X. Xiao, A. Nashalian, A. Libanori, Y. Fang, X. Li, J. Chen, Adv. Healthcare Mater. 2021, 10, 2100975.","[610, 925, 1096, 962]",reference_item,0.85,"[""reference content label: [13] X. Xiao, X. Xiao, A. Nashalian, A. Libanori, Y. Fang, X""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,29,reference_content,"[14] J. Tian, R. Shi, Z. Liu, H. Ouyang, M. Yu, C. Zhao, Y. Zou, D. Jiang, J. Zhang, Z. Li, Nano Energy 2019, 59, 705.","[610, 965, 1096, 1003]",reference_item,0.85,"[""reference content label: [14] J. Tian, R. Shi, Z. Liu, H. Ouyang, M. Yu, C. Zhao, Y. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,30,reference_content,"[15] G. Conta, A. Libanori, T. Tat, G. Chen, J. Chen, Adv. Mater. 2021, 33, 2007502.","[611, 1005, 1096, 1042]",reference_item,0.85,"[""reference content label: [15] G. Conta, A. Libanori, T. Tat, G. Chen, J. Chen, Adv. M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,31,reference_content,"[16] P. Chen, C. Xu, P. Wu, K. Liu, F. Chen, Y. Chen, H. Dai, Z. Luo, ACS Nano 2022, 16, 16513.","[609, 1045, 1097, 1082]",reference_item,0.85,"[""reference content label: [16] P. Chen, C. Xu, P. Wu, K. Liu, F. Chen, Y. Chen, H. Dai""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,32,reference_content,"[17] Y.-H. Lai, Y.-H. Chen, A. Pal, S.-H. Chou, S.-J. Chang, E.-W. Huang, Z.-H. Lin, S.-Y. Chen, Nano Energy 2021, 90, 106545.","[610, 1085, 1096, 1122]",reference_item,0.85,"[""reference content label: [17] Y.-H. Lai, Y.-H. Chen, A. Pal, S.-H. Chou, S.-J. Chang,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,33,reference_content,"[18] O. Yue, X. Wang, M. Hou, M. Zheng, D. Hao, Z. Bai, X. Zou, B. Cui, C. Liu, X. Liu, Nano Energy 2023, 107, 108158.","[609, 1124, 1095, 1162]",reference_item,0.85,"[""reference content label: [18] O. Yue, X. Wang, M. Hou, M. Zheng, D. Hao, Z. Bai, X. Z""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,34,reference_content,"[19] G. Li, Q. Zhu, B. Wang, R. Luo, X. Xiao, Y. Zhang, L. Ma, X. Feng, J. Huang, X. Sun, Adv. Sci. 2021, 8, 2100964.","[610, 1164, 1095, 1202]",reference_item,0.85,"[""reference content label: [19] G. Li, Q. Zhu, B. Wang, R. Luo, X. Xiao, Y. Zhang, L. M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,35,reference_content,"[20] Y. Jin, J. Seo, J. S. Lee, S. Shin, H. J. Park, S. Min, E. Cheong, T. Lee, S. W. Cho, Adv. Mater. 2016, 28, 7365.","[609, 1204, 1096, 1241]",reference_item,0.85,"[""reference content label: [20] Y. Jin, J. Seo, J. S. Lee, S. Shin, H. J. Park, S. Min,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,36,reference_content,"[21] K.-A. Chang, J. W. Kim, J. A. Kim, S. Lee, S. Kim, W. H. Suh, H.-S. Kim, S. Kwon, S. J. Kim, Y.-H. Suh, PLoS One 2011, 6, e18738.","[609, 1244, 1096, 1282]",reference_item,0.85,"[""reference content label: [21] K.-A. Chang, J. W. Kim, J. A. Kim, S. Lee, S. Kim, W. H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,37,reference_content,"[22] X. Meng, X. Xiao, S. Jeon, D. Kim, B. J. Park, Y. J. Kim, N. Rubab, S. Kim, S. W. Kim, Adv. Mater. 2023, 35, 2209054.","[610, 1284, 1095, 1322]",reference_item,0.85,"[""reference content label: [22] X. Meng, X. Xiao, S. Jeon, D. Kim, B. J. Park, Y. J. Ki""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,38,reference_content,"[23] W. Hu, X. Wei, L. Zhu, D. Yin, A. Wei, X. Bi, T. Liu, G. Zhou, Y. Qiang, X. Sun, Nano Energy 2019, 57, 600.","[610, 1324, 1096, 1361]",reference_item,0.85,"[""reference content label: [23] W. Hu, X. Wei, L. Zhu, D. Yin, A. Wei, X. Bi, T. Liu, G""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,39,reference_content,"[24] J. Liang, H. Zeng, L. Qiao, H. Jiang, Q. Ye, Z. Wang, B. Liu, Z. Fan, ACS Appl. Mater. Interfaces 2022, 14, 30507.","[610, 1363, 1096, 1400]",reference_item,0.85,"[""reference content label: [24] J. Liang, H. Zeng, L. Qiao, H. Jiang, Q. Ye, Z. Wang, B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,40,reference_content,"[25] S. H. Kim, C. S. Haines, N. Li, K. J. Kim, T. J. Mun, C. Choi, J. Di, Y. J. Oh, J. P. Oviedo, J. Bykova, Science 2017, 357, 773.","[609, 1403, 1095, 1442]",reference_item,0.85,"[""reference content label: [25] S. H. Kim, C. S. Haines, N. Li, K. J. Kim, T. J. Mun, C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
9,41,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[99, 1488, 315, 1505]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
9,42,footer,2315279 (9 of 10),"[530, 1484, 664, 1506]",reference_item,0.9,"[""footer label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
9,43,footer,© 2024 Wiley-VCH GmbH,"[937, 1487, 1096, 1505]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
9,44,aside_text,"16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio","[1155, 32, 1172, 1535]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,,unknown_like,none,False,False
10,0,header_image,,"[93, 46, 282, 114]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,,unknown_like,empty,False,True
10,1,header,"ADVANCED FUNCTIONAL MATERIALS
w.afm-journal.de","[968, 43, 1090, 113]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
10,2,header,www.advancedsciencenews.com,"[92, 99, 339, 116]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
10,3,header,www.afm-journal.de,"[936, 99, 1090, 116]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,4,reference_content,"[26] S. Oh, K. J. Kim, B. Goh, C. L. Park, G. D. Lee, S. Shin, S. Lim, E. S. Kim, K. R. Yoon, C. Choi, Adv. Sci. 2022, 9, 2203767.","[93, 151, 578, 190]",reference_item,0.85,"[""reference content label: [26] S. Oh, K. J. Kim, B. Goh, C. L. Park, G. D. Lee, S. Shi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,5,reference_content,"[27] Z. Wang, T. J. Mun, F. M. Machado, J. H. Moon, S. Fang, A. E. Aliev, M. Zhang, W. Cai, J. Mu, J. S. Hyeon, Adv. Mater. 2022, 34, 2201826.","[95, 192, 578, 229]",reference_item,0.85,"[""reference content label: [27] Z. Wang, T. J. Mun, F. M. Machado, J. H. Moon, S. Fang,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,6,reference_content,"[28] M. Zhang, W. Cai, Z. Wang, S. Fang, R. Zhang, H. Lu, A. E. Aliev, A. A. Zakhidov, C. Huynh, E. Gao, Nat. Energy 2023, 8, 203.","[94, 231, 577, 269]",reference_item,0.85,"[""reference content label: [28] M. Zhang, W. Cai, Z. Wang, S. Fang, R. Zhang, H. Lu, A.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,7,reference_content,"[29] M. Zhang, K. R. Atkinson, R. H. Baughman, Science 2004, 306, 1358.","[94, 271, 579, 290]",reference_item,0.85,"[""reference content label: [29] M. Zhang, K. R. Atkinson, R. H. Baughman, Science 2004,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,8,reference_content,"[30] M. Zhang, S. Fang, A. A. Zakhidov, S. B. Lee, A. E. Aliev, C. D. Williams, K. R. Atkinson, R. H. Baughman, Science 2005, 309, 1215.","[94, 292, 578, 329]",reference_item,0.85,"[""reference content label: [30] M. Zhang, S. Fang, A. A. Zakhidov, S. B. Lee, A. E. Ali""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,9,reference_content,"[31] S. Zhou, M. Wang, Z. Yang, X. Zhang, ACS Appl. Nano Mater. 2019, 2, 3271.","[95, 331, 579, 368]",reference_item,0.85,"[""reference content label: [31] S. Zhou, M. Wang, Z. Yang, X. Zhang, ACS Appl. Nano Mat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,10,reference_content,"[32] S. Zhou, J. Zhang, Z. Yang, X. Zhang, Langmuir 2021, 37, 4523.","[94, 371, 543, 390]",reference_item,0.85,"[""reference content label: [32] S. Zhou, J. Zhang, Z. Yang, X. Zhang, Langmuir 2021, 37""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,11,reference_content,"[33] B. Fei, B. Qian, Z. Yang, R. Wang, W. Liu, C. Mak, J. H. Xin, Carbon 2008, 46, 1795.","[95, 392, 579, 428]",reference_item,0.85,"[""reference content label: [33] B. Fei, B. Qian, Z. Yang, R. Wang, W. Liu, C. Mak, J. H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,12,reference_content,"[34] J. Oh, R. Zhang, P. P. Shetty, J. A. Krogstad, P. V. Braun, N. Miljkovic, Adv. Funct. Mater. 2018, 28, 1707000.","[95, 430, 579, 468]",reference_item,0.85,"[""reference content label: [34] J. Oh, R. Zhang, P. P. Shetty, J. A. Krogstad, P. V. Br""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,13,reference_content,"[35] R. Dulbecco, G. Freeman, Virology 1959, 8, 396.","[94, 470, 443, 489]",reference_item,0.85,"[""reference content label: [35] R. Dulbecco, G. Freeman, Virology 1959, 8, 396.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,14,reference_content,"[36] D. C. Grahame, Chem. Rev. 1947, 41, 441.","[94, 491, 405, 509]",reference_item,0.85,"[""reference content label: [36] D. C. Grahame, Chem. Rev. 1947, 41, 441.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,15,reference_content,"[37] T. Brezesinski, J. Wang, J. Polleux, B. Dunn, S. H. Tolbert, J. Am. Chem. Soc. 2009, 131, 1802.","[94, 510, 578, 548]",reference_item,0.85,"[""reference content label: [37] T. Brezesinski, J. Wang, J. Polleux, B. Dunn, S. H. Tol""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,16,reference_content,"[38] T. Brezesinski, J. Wang, S. H. Tolbert, B. Dunn, Nat. Mater. 2010, 9, 146.","[95, 550, 579, 586]",reference_item,0.85,"[""reference content label: [38] T. Brezesinski, J. Wang, S. H. Tolbert, B. Dunn, Nat. M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,17,reference_content,"[39] R. Kumar, M. Bag, J. Phys. Chem. C 2021, 125, 16946.","[95, 590, 481, 610]",reference_item,0.85,"[""reference content label: [39] R. Kumar, M. Bag, J. Phys. Chem. C 2021, 125, 16946.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,18,reference_content,"[40] B. Majhy, P. Priyadarshini, A. Sen, RSC Adv. 2021, 11, 15467.","[604, 151, 1038, 170]",reference_item,0.85,"[""reference content label: [40] B. Majhy, P. Priyadarshini, A. Sen, RSC Adv. 2021, 11, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,19,reference_content,"[41] H. Ma, Y. Zhang, M. Shen, J. Energy Storage 2021, 44, 103299.","[604, 171, 1047, 190]",reference_item,0.85,"[""reference content label: [41] H. Ma, Y. Zhang, M. Shen, J. Energy Storage 2021, 44, 1""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,20,reference_content,"[42] S. Fletcher, V. J. Black, I. Kirkpatrick, J. Solid State Electrochem. 2014, 18, 1377.","[606, 192, 1090, 228]",reference_item,0.85,"[""reference content label: [42] S. Fletcher, V. J. Black, I. Kirkpatrick, J. Solid Stat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,21,reference_content,"[43] G. Brug, A. L. van den Eeden, M. Sluyers-Rehbach, J. H. Sluyers, J. Electroanal. Chem. Interfacial Electrochem. 1984, 176, 275.","[605, 231, 1088, 269]",reference_item,0.85,"[""reference content label: [43] G. Brug, A. L. van den Eeden, M. Sluyers-Rehbach, J. H.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,22,reference_content,"[44] R. F. Wallin, E. Arscott, Medical Device and Diagnostic Industry 1998, 20, 96.","[606, 271, 1089, 308]",reference_item,0.85,"[""reference content label: [44] R. F. Wallin, E. Arscott, Medical Device and Diagnostic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,23,reference_content,"[45] J. Gopinathan, M. M. Pillai, S. Shanthakumari, S. Gnanapoongothai, B. K. D. Rai, K. S. Sahanand, R. Selvakumar, A. Bhattacharyya, Nanomedicine: Nanotechnology, Biology and Medicine 2018, 14, 2247","[605, 311, 1090, 370]",reference_item,0.85,"[""reference content label: [45] J. Gopinathan, M. M. Pillai, S. Shanthakumari, S. Gnana""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,24,reference_content,"[46] K.-H. Yoon, J.-Y. Park, J.-Y. Lee, E. Lee, J. Lee, S.-G. Kim, The American Journal of Sports Medicine 2020, 48, 1236.","[605, 371, 1089, 409]",reference_item,0.85,"[""reference content label: [46] K.-H. Yoon, J.-Y. Park, J.-Y. Lee, E. Lee, J. Lee, S.-G""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,25,reference_content,"[47] M. Hagmeijer, L. Vonk, M. Fenu, Y. Van Keep, A. Krych, D. B. F. Saris, Eur. Cells Mater. 2019, 38, 51.","[606, 411, 1090, 448]",reference_item,0.85,"[""reference content label: [47] M. Hagmeijer, L. Vonk, M. Fenu, Y. Van Keep, A. Krych, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,26,reference_content,"[48] X. Yuan, D. E. Arkonac, P.-h. G. Chao, G. Vunjak-Novakovic, Sci. Rep. 2014, 4, 3674.","[605, 450, 1089, 487]",reference_item,0.85,"[""reference content label: [48] X. Yuan, D. E. Arkonac, P.-h. G. Chao, G. Vunjak-Novako""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,27,reference_content,"[49] G. Zhong, J. Yao, X. Huang, Y. Luo, M. Wang, J. Han, F. Chen, Y. Yu, Bioactive Materials 2020, 5, 871.","[605, 490, 1089, 528]",reference_item,0.85,"[""reference content label: [49] G. Zhong, J. Yao, X. Huang, Y. Luo, M. Wang, J. Han, F.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,28,reference_content,"[50] Y. Sun, Y. You, W. Jiang, Q. Wu, B. Wang, K. Dai, Appl. Mater. Today 2020, 18, 100469.","[605, 530, 1090, 567]",reference_item,0.85,"[""reference content label: [50] Y. Sun, Y. You, W. Jiang, Q. Wu, B. Wang, K. Dai, Appl.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,29,reference_content,"[51] M. Chen, Z. Feng, W. Guo, D. Yang, S. Gao, Y. Li, S. Shen, Z. Yuan, B. Huang, Y. Zhang, ACS Appl. Mater. Interfaces 2019, 11, 41626.","[604, 570, 1089, 609]",reference_item,0.85,"[""reference content label: [51] M. Chen, Z. Feng, W. Guo, D. Yang, S. Gao, Y. Li, S. Sh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
10,30,footer,"Adv. Funct. Mater. 2024, 34, 2315279","[93, 1488, 310, 1504]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
10,31,number,2315279 (10 of 10),"[521, 1485, 662, 1507]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
10,32,footer,© 2024 Wiley-VCH GmbH,"[932, 1488, 1089, 1505]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
10,33,aside_text,"16/63028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio","[1156, 34, 1171, 1537]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,,unknown_like,none,False,False
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header RESEARCH ARTICLE [97, 53, 358, 82] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 header_image [1037, 1, 1191, 28] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False True
4 1 2 header ADVANCED FUNCTIONAL MATERIALS w.afm-journal.de [969, 41, 1098, 117] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
5 1 3 doc_title Integrated Electrostimulation Cell Culture Systems Driven by Chemically Modified Twistron Mechanical Energy Harvesting Electrodes [96, 147, 1057, 283] paper_title 0.8 ["page-1 zone title_zone: Integrated Electrostimulation Cell Culture Systems Driven by"] paper_title 0.8 frontmatter_main_zone support_like none True True
6 1 4 text Seongjae Oh, Keon Jung Kim, Chae Hwa Kim, Jun Hyuk Lee, Hyunsoo Kim, Beomsu Kim, Chae-Lin Park, Junho Oh, Eun Sung Kim, Hyun Kim, Sang Young Yeo, Doyong Kim, Xinghao Hu, Joonmyung Choi, Dongseok Suh, [95, 315, 1095, 457] authors 0.8 ["page-1 zone author_zone: Seongjae Oh, Keon Jung Kim, Chae Hwa Kim, Jun Hyuk Lee, Hyun"] authors 0.8 frontmatter_main_zone support_like none True True
7 1 5 abstract Developing mechanical energy harvesters for electrical stimulation (ES) needed to augment cell behavior is a burgeoning area of interest. Mechanical energy harvesters that can generate electrical ener [96, 517, 738, 1044] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 body_zone body_like none True True
8 1 6 paragraph_title 1. Introduction [766, 502, 914, 528] section_heading 0.85 ["paragraph_title label with numbering: 1. Introduction"] section_heading 0.85 body_zone heading_like heading_numbered True True
9 1 7 text Electrical stimulation (ES) has garnered significant attention with its potential to impact a myriad of biomedical applications, such as neuromodulation and neuroprosthetics, wound healing, cardiac pa [763, 541, 1099, 848] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
10 1 8 text When delivering electricity to target biomaterials, conventional power supplies like batteries, electromagnetic field generators, or direct connections to the electrical grid present several challenge [763, 848, 1099, 1071] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
11 1 9 footnote S. Oh, S. C. Lim Department of Energy Science Sungkyunkwan University Suwon-si, Gyeonggi-do 16419, Republic of Korea S. Oh, C. H. Kim, J. H. Lee, H. Kim, S. Y. Yeo, T. H. Kim, S. H. Kim Department of [95, 1115, 543, 1286] footnote 0.7 ["footnote label: S. Oh, S. C. Lim\nDepartment of Energy Science\nSungkyunkwan U"] footnote 0.7 body_zone body_like none True True
12 1 10 footnote The ORCID identification number(s) for the author(s) of this article can be found under https://doi.org/10.1002/adfm.202315279 [96, 1374, 588, 1414] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: The ORCID identification number(s) for the author(s) of this"] frontmatter_noise 0.8 body_zone body_like none False False
13 1 11 footnote K. J. Kim Semiconductor R&D Center Samsung Electronics Hwaseong 18448, Republic of Korea C. H. Kim, C. H. Park Department of Bionanosystem Engineering Graduate School Jeonbuk National University Jeonj [606, 1111, 905, 1393] footnote 0.7 ["footnote label: K. J. Kim\nSemiconductor R&D Center\nSamsung Electronics\nHwase"] footnote 0.7 body_zone body_like none True True
14 1 12 footer DOI: 10.1002/adfm.202315279 [97, 1420, 337, 1443] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
15 1 13 footer Adv. Funct. Mater. 2024, 34, 2315279 [98, 1487, 316, 1505] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
16 1 14 footer 2315279 (1 of 10) [530, 1484, 664, 1507] noise 0.9 ["footer label"] noise 0.9 body_zone reference_like reference_numeric_dot False False
17 1 15 footer © 2024 Wiley-VCH GmbH [937, 1486, 1096, 1506] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
18 2 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [92, 46, 340, 117] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
19 2 1 header ADVANCED FUNCTIONAL MATERIALS w.afm-journal.de [968, 42, 1091, 116] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
20 2 2 text and user-friendly ES systems. Harnessing mechanical energy is especially attractive, since it can convert abundant natural sources (i.e., motion, pressure, flow, or vibration) into electrical energy. [89, 148, 582, 237] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 2 3 text ES systems employing mechanical energy harvesters, such as piezoelectrics and triboelectric nanogenerators, have been recently reported.[13-17] To enhance cell proliferation and differentiation, two i [89, 237, 582, 546] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
22 2 4 algorithm B. Kim, J. Oh, J. Choi Department of Mechanical Design Engineering Hanyang University Seoul 04763, Republic of Korea C.-L. Park, S. H. Kim HYU-KITECH Joint Department Hanyang University Seoul 04763, R [89, 589, 559, 1446] unknown_structural 0.2 ["unrecognized label 'algorithm'"] unknown_structural 0.2 body_zone body_like none False True
23 2 5 text while lower values (0.1–5 μA cm⁻²) may be more suitable for neural stem cells.[16,20,21] In the case of fibroblasts, a slightly wider current range (0.1–17 μA cm⁻²) may be required to stimulate prolif [600, 148, 1092, 280] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
24 2 6 text We here present a novel approach for ES in cell culture systems, called a fully integrated ES assembly (FESA), which exploits twistron mechanical energy harvesters $ ^{[25-28]} $ to deliver a broad ES [600, 281, 1093, 745] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 2 7 paragraph_title 2. Results and Discussion [601, 790, 854, 816] section_heading 0.85 ["paragraph_title label with numbering: 2. Results and Discussion"] section_heading 0.85 body_zone heading_like heading_numbered True True
26 2 8 paragraph_title 2.1. Design of the FESA [601, 828, 786, 852] subsection_heading 0.85 ["paragraph_title label with numbering: 2.1. Design of the FESA"] subsection_heading 0.85 body_zone body_like heading_numbered True True
27 2 9 text Scheme 1a and Figure S1 (Supporting Information) present a complete FESA designed for enhancing cell proliferation and differentiation. The FESA comprises four primary components: i) a chemically modi [599, 872, 1093, 1447] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
28 2 10 footer Adv. Funct. Mater. 2024, 34, 2315279 [93, 1487, 310, 1505] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
29 2 11 number 2315279 (2 of 10) [525, 1484, 658, 1507] noise 0.9 ["page number label"] noise 0.9 frontmatter_main_zone reference_like reference_numeric_dot False False
30 2 12 footer © 2024 Wiley-VCH GmbH [931, 1486, 1090, 1506] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
31 2 13 aside_text 16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio [1154, 28, 1172, 1532] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 body_zone body_like none False False
32 3 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [97, 45, 346, 117] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
33 3 1 header ADVANCED FUNCTIONAL MATERIALS /w.afm-journal.de [966, 42, 1097, 117] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
34 3 2 figure_title (a) [242, 153, 267, 175] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
35 3 3 image [238, 153, 564, 318] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
36 3 4 figure_title (b) [585, 155, 610, 177] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
37 3 5 image [257, 325, 551, 474] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
38 3 6 image [582, 155, 960, 461] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
39 3 7 figure_title Scheme 1. Structure and components diagram of FESA. Schematic illustration showing a) overall structure and conceptual illustration of FESA for the proliferation and differentiation of cells, includin [96, 485, 1100, 544] figure_caption_candidate 0.85 ["figure_title label: Scheme 1. Structure and components diagram of FESA. Schemati"] figure_caption 0.85 body_zone legend_like none False False
40 3 8 paragraph_title 2.2. Fabrication and Harvesting Performances of CPCY [95, 588, 509, 610] subsection_heading 0.85 ["paragraph_title label with numbering: 2.2. Fabrication and Harvesting Performances of CPCY"] subsection_heading 0.85 body_zone body_like heading_numbered True True
41 3 9 text Figure 1a and Figure S2 (Supporting Information) show the fabrication process for the coiled PDA/CNT yarn (CPCY) that is the stretchable energy harvesting electrode in the CM-twistron harvester (Schem [96, 627, 588, 1379] figure_caption 0.9 ["figure prefix matched: Figure 1a and Figure S2 (Supporting Information) show the fa", "long text, reduced confidence", "near figure media assets"] figure_caption 0.9 display_zone legend_like figure_number True True
42 3 10 text Figure 1d illustrates mechanical energy harvesting during stretch and release of the twistron harvester that consists of CPCY as a CM-twistron electrode, a Pt mesh as a non-deformed counter electrode, [95, 1378, 588, 1443] body_paragraph 0.9 ["figure caption candidate (body narrative): Figure 1d illustrates mechanical energy harvesting during st"] figure_caption_candidate 0.9 display_zone legend_like figure_number True True
43 3 11 text [604, 587, 1098, 959] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
44 3 12 text To clarify the energy harvesting mechanism for the CM-twistron harvester as shown in Figure 1d, it is necessary to verify the physical absorption of ions in CPCY. The physical absorption of ions as a [604, 962, 1099, 1445] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
45 3 13 footer Adv. Funct. Mater. 2024, 34, 2315279 [98, 1487, 315, 1505] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
46 3 14 number 2315279 (3 of 10) [530, 1484, 665, 1507] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
47 3 15 footer © 2024 Wiley-VCH GmbH [937, 1487, 1096, 1506] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
48 3 16 aside_text 16163028, 2024, 33, Downloaded from https://advancedonlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Condition [1155, 30, 1172, 1533] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 body_zone body_like none False False
49 4 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [92, 46, 340, 117] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
50 4 1 header ADVANCED FUNCTIONAL MATERIALS ww.afm-journal.de [957, 42, 1092, 117] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
51 4 2 figure_title (a) [108, 151, 140, 179] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
52 4 3 image [127, 203, 302, 329] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
53 4 4 figure_title (b) [423, 150, 453, 178] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
54 4 5 vision_footnote CNT yarn in dopamine solution [102, 339, 232, 370] footnote 0.7 ["vision_footnote label: CNT yarn in dopamine solution"] footnote 0.7 body_zone unknown_like none True True
55 4 6 image [310, 202, 439, 332] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
56 4 7 vision_footnote PDA/CNT yarn [303, 346, 392, 364] footnote 0.7 ["vision_footnote label: PDA/CNT yarn"] footnote 0.7 body_zone unknown_like short_fragment True True
57 4 8 chart [442, 176, 684, 391] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
58 4 9 figure_title (d) [107, 391, 139, 418] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
59 4 10 figure_title (c) [707, 150, 735, 178] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
60 4 11 figure_title (i) [127, 423, 147, 447] figure_inner_text 0.9 ["panel label / figure inner text: (i)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
61 4 12 figure_title (ii) [275, 422, 303, 446] figure_caption_candidate 0.85 ["figure_title label: (ii)"] figure_caption 0.85 body_zone unknown_like short_fragment False False
62 4 13 image [727, 178, 1021, 375] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
63 4 14 figure_title (e) [425, 392, 456, 419] figure_inner_text 0.9 ["panel label / figure inner text: (e)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
64 4 15 image [119, 413, 426, 609] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
65 4 16 chart [430, 415, 687, 630] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
66 4 17 figure_title (g) [108, 619, 138, 647] figure_inner_text 0.9 ["panel label / figure inner text: (g)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
67 4 18 figure_title (h) [405, 617, 438, 644] figure_inner_text 0.9 ["panel label / figure inner text: (h)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
68 4 19 figure_title (f) [715, 383, 742, 411] figure_inner_text 0.9 ["panel label / figure inner text: (f)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
69 4 20 chart [728, 412, 989, 630] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
70 4 21 chart [122, 645, 398, 868] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
71 4 22 chart [421, 644, 714, 861] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
72 4 23 figure_title (i) [717, 618, 741, 647] figure_inner_text 0.9 ["panel label / figure inner text: (i)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
73 4 24 chart [726, 640, 1085, 861] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
74 4 25 figure_title Figure 1. Performance characterization of CPCY within DMEM as stretching to 30% at 1 Hz. a) Illustration of the process for incorporating PDA into a CNT yarn. b) Fourier-transform infrared (FT-IR) spe [90, 873, 1094, 1046] figure_caption 0.92 ["figure_title label: Figure 1. Performance characterization of CPCY within DMEM a"] figure_caption 0.92 display_zone legend_like figure_number True True
75 4 26 text at 0.4 V, respectively. This result indicates that both coiled CNT yarn and CPCY dominantly store charge from the capacitive effect, without involving redox processes between both electrodes and DMEM. [90, 1092, 582, 1267] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
76 4 27 text The harvesting performance of CPCY within DMEM was investigated for the above-mentioned operation mechanism. Since hydrophilic CPCY provides the larger electrochemical accessible area within an aqueou [90, 1267, 582, 1444] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
77 4 28 text [600, 1091, 1093, 1445] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
78 4 29 footer Adv. Funct. Mater. 2024, 34, 2315279 [93, 1487, 310, 1505] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
79 4 30 number 2315279 (4 of 10) [524, 1484, 658, 1507] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
80 4 31 footer © 2024 Wiley-VCH GmbH [931, 1487, 1090, 1506] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
81 4 32 aside_text 16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio [1155, 30, 1171, 1534] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 body_zone body_like none False False
82 5 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [98, 45, 346, 117] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
83 5 1 header ADVANCED FUNCTIONAL MATERIALS /w.afm-journal.de [966, 43, 1098, 116] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
84 5 2 figure_title (a) [103, 153, 133, 180] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
85 5 3 image [147, 175, 407, 358] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
86 5 4 figure_title (b) [442, 153, 472, 180] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
87 5 5 chart [444, 170, 713, 380] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
88 5 6 image [772, 179, 906, 285] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
89 5 7 figure_title (c) [728, 153, 756, 180] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
90 5 8 image [924, 185, 1020, 275] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
91 5 9 figure_title (d) [104, 390, 133, 418] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
92 5 10 image [772, 293, 906, 371] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
93 5 11 chart [126, 391, 428, 623] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
94 5 12 figure_title (e) [442, 391, 474, 418] figure_inner_text 0.9 ["panel label / figure inner text: (e)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
95 5 13 vision_footnote PEDOT/CNT $ \theta_{a}^{app}=41.33^{\circ} $ $ \theta_{r}^{app}=40.42^{\circ} $ [925, 299, 1012, 375] footnote 0.7 ["vision_footnote label: PEDOT/CNT\n $ \\theta_{a}^{app}=41.33^{\\circ} $\n $ \\theta_{r}^"] footnote 0.7 body_zone unknown_like none True True
96 5 14 chart [464, 413, 723, 623] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
97 5 15 figure_title (f) [731, 390, 756, 417] figure_inner_text 0.9 ["panel label / figure inner text: (f)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
98 5 16 chart [749, 404, 1090, 622] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
99 5 17 figure_title Figure 2. Optimization for PEDOT/CNT sheets. a) SEM and EDS mapping images of PEDOT/CNT sheets (scale bar: 100 μm). b) Surface roughness ratio of PEDOT/CNT sheets dependent on the weight % of PEDOT/CN [95, 632, 1097, 748] figure_caption 0.92 ["figure_title label: Figure 2. Optimization for PEDOT/CNT sheets. a) SEM and EDS "] figure_caption 0.92 display_zone legend_like figure_number True True
100 5 18 text and hole-injecting within DMEM, respectively. CPCY and pristine coiled CNT yarn absorbed the ions with opposite charges for energy harvesting, generating an inverse phase of $ I_{SC} $ and $ V_{OC} [95, 784, 588, 1026] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
101 5 19 text The stability for CPCY was investigated by monitoring output performances and comparing morphologies under cyclic test. The CPCY maintains stable $ I_{SC} $ performance for 2 h, even with higher stre [95, 1026, 587, 1375] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
102 5 20 text Among the harvesting performance of CPCY, the decrement of matching impedance is a meaningful result in FESA. The low matching impedance (Figure 1h) indicates the enhancement of electricity transfer e [95, 1377, 589, 1444] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
103 5 21 text [605, 784, 1098, 895] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
104 5 22 paragraph_title 2.3. Characterizations for PEDOT/CNT Sheets [607, 939, 957, 961] subsection_heading 0.85 ["paragraph_title label with numbering: 2.3. Characterizations for PEDOT/CNT Sheets"] subsection_heading 0.85 body_zone body_like heading_numbered True True
105 5 23 text The conductive scaffold of PEDOT/CNT with 181.7 nm height (Figure S10, Supporting Information) was fabricated with two objectives: i) enhancing cell adhesion, and ii) effectively delivering ES to cell [606, 982, 1098, 1201] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
106 5 24 text To enhance cell adhesion on the scaffold, it is essential to optimize both the surface roughness ratio ( $ S_{dr} $) and make the scaffold surface hydrophilic. $ S_{dr} $, which is the ratio of the a [605, 1203, 1099, 1445] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
107 5 25 footer Adv. Funct. Mater. 2024, 34, 2315279 [98, 1487, 315, 1505] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
108 5 26 number 2315279 (5 of 10) [530, 1484, 664, 1507] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
109 5 27 footer © 2024 Wiley-VCH GmbH [937, 1487, 1096, 1506] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
110 5 28 aside_text 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditions (https: [1147, 58, 1171, 1498] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 body_zone body_like none False False
111 6 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [92, 46, 339, 116] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
112 6 1 header ADVANCED FUNCTIONAL MATERIALS w.afm-journal.de [968, 42, 1091, 114] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
113 6 2 text apparent advancing ( $ \theta_{a}^{app} $) and receding contact angle ( $ \theta_{r}^{app} $) were measured with small volume of droplets ( $ V_{drop} = 100 $ nL), as shown in Figure 2c. The contact a [89, 149, 582, 331] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
114 6 3 text In addition, reducing the contact resistance of PEDOT/CNT is crucial for achieving efficient delivery of ES. Figure 2d shows the PEDOT content-dependent sheet resistance ( $ R_s $) measured parallel a [89, 333, 581, 683] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
115 6 4 text The optimized PEDOT/CNT is connected between CPCY and Pt mesh to form the complete assembly. In FESA, the PEDOT/CNT can play two roles, which are as 1) a capacitor that is a part of the counter electr [90, 683, 583, 1232] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
116 6 5 paragraph_title 2.4. Scale-Up Process of CPCY for Enhancing ES [90, 1268, 456, 1290] subsection_heading 0.85 ["paragraph_title label with numbering: 2.4. Scale-Up Process of CPCY for Enhancing ES"] subsection_heading 0.85 body_zone body_like heading_numbered True True
117 6 6 text An investigation of the ideal circuit model for CPCY aimed to enhance the $ E_{Sp} $ density. Figure 3a shows the sequentially deployed circuit model for CPCY, starting from the CNT unit (Figure 3a(i [88, 1311, 581, 1444] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
118 6 7 text [599, 150, 1094, 716] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
119 6 8 text Figure 3b shows real-time $ I_{SC} $ profiles for the pristine CPCY with diameters of 140 $ \mu $m and lengths of 2 cm, width expanded CPCY with diameters of 207 $ \mu $m and lengths of 2 cm (Figur [600, 719, 1094, 1373] body_paragraph 0.9 ["figure caption candidate (body narrative): Figure 3b shows real-time $ I_{SC} $ profiles for the prist"] figure_caption_candidate 0.9 display_zone legend_like figure_number True True
120 6 9 text The pristine CPCY and the upscaled CPCYs along the width and length directions were investigated to confirm the increased range of $ ES_{PP} $ density. Figure 3c shows the $ ES_{PP} $ [600, 1377, 1091, 1445] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
121 6 10 footer Adv. Funct. Mater. 2024, 34, 2315279 [93, 1487, 310, 1505] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
122 6 11 footer 2315279 (6 of 10) [524, 1484, 658, 1507] noise 0.9 ["footer label"] noise 0.9 reference_like reference_numeric_dot False False
123 6 12 footer © 2024 Wiley-VCH GmbH [931, 1487, 1090, 1506] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
124 6 13 aside_text 16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio [1155, 29, 1171, 1532] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 body_zone body_like none False False
125 7 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [98, 45, 345, 117] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
126 7 1 header ADVANCED FUNCTIONAL MATERIALS w.afm-journal.de [971, 43, 1097, 116] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
127 7 2 figure_title (a) [104, 152, 138, 181] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
128 7 3 figure_title (i) Ideal circuit for CNT unit [169, 180, 340, 200] figure_caption_candidate 0.85 ["figure_title label: (i) Ideal circuit for CNT unit"] figure_caption 0.85 unknown_like none False False
129 7 4 figure_title (ii) Circuit for expanded CPCY [460, 180, 645, 200] figure_caption_candidate 0.85 ["figure_title label: (ii) Circuit for expanded CPCY"] figure_caption 0.85 unknown_like none False False
130 7 5 image [170, 181, 1096, 403] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
131 7 6 figure_title (b) [104, 418, 137, 446] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
132 7 7 chart [113, 420, 408, 683] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
133 7 8 chart [444, 416, 783, 681] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
134 7 9 figure_title (d) [790, 416, 824, 447] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
135 7 10 chart [801, 441, 1091, 681] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
136 7 11 figure_title Figure 3. Scale-up strategy for CPCY and comparison with other mechanical energy harvesters. a) Schematic illustration showing i) the electrochemical double-layer of CNT units and corresponding electr [95, 691, 1097, 808] figure_caption 0.92 ["figure_title label: Figure 3. Scale-up strategy for CPCY and comparison with oth"] figure_caption 0.92 display_zone legend_like figure_number True True
137 7 12 text density and absolute $ ES_{pp} $ values for all CPCY when they are stretched to 30%. The conductive scaffolds receive the $ ES_{pp} $ values of 103.9–137.1 $ \mu $A from upscaled CPCY. Compared to [96, 850, 586, 1002] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
138 7 13 text Frequency-dependent peak-to-peak ESs in FESA are shown in Figure 3d, and Figure S14 (Supporting Information) to compare to other types of mechanical energy harvesters harnessed for the proliferation a [95, 1002, 587, 1443] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
139 7 14 paragraph_title 2.5. Cell Culture Capability of FESA [607, 850, 874, 872] subsection_heading 0.85 ["paragraph_title label with numbering: 2.5. Cell Culture Capability of FESA"] subsection_heading 0.85 body_zone unknown_like heading_numbered True True
140 7 15 text Prior to investigating the effect of ES from FESA, the cytotoxicity for all components of FESA was evaluated by ISO 10993–5 guidelines. $ ^{[44,45]} $ As shown in Figure 4a,b, the cell viability remai [606, 894, 1098, 1070] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
141 7 16 text The FESA provides ES to the cells by the stretching/releasing of the energy harvesting units (Video S1, Supporting Information). To demonstrate the valid application capability of FESA for cell cultur [604, 1071, 1098, 1354] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
142 7 17 text To elucidate the effect of ES generated by FESA, we here investigate the proliferation and differentiation of meniscal primary cells. Particularly, among various cells, meniscal primary cells, with it [606, 1355, 1098, 1445] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
143 7 18 footer Adv. Funct. Mater. 2024, 34, 2315279 [98, 1487, 315, 1505] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
144 7 19 footer 2315279 (7 of 10) [530, 1484, 664, 1507] reference_item 0.9 ["footer label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
145 7 20 footer © 2024 Wiley-VCH GmbH [937, 1487, 1096, 1506] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
146 7 21 aside_text 16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio [1155, 30, 1171, 1534] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 unknown_like none False False
147 8 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [92, 45, 339, 117] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
148 8 1 header ADVANCED FUNCTIONAL MATERIALS www.afm-journal.de [946, 42, 1092, 117] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
149 8 2 figure_title (a) [99, 154, 132, 185] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
150 8 3 chart [110, 155, 485, 384] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
151 8 4 figure_title (b) [487, 154, 522, 184] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
152 8 5 image [495, 180, 1083, 374] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
153 8 6 figure_title (c) [102, 389, 134, 421] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
154 8 7 image [105, 397, 566, 612] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
155 8 8 figure_title (d) [587, 392, 620, 422] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
156 8 9 image [590, 398, 1083, 611] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
157 8 10 figure_title (e) [101, 625, 135, 656] figure_inner_text 0.9 ["panel label / figure inner text: (e)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
158 8 11 figure_title (f) [307, 625, 337, 656] figure_inner_text 0.9 ["panel label / figure inner text: (f)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
159 8 12 chart [129, 627, 303, 859] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
160 8 13 chart [312, 626, 567, 851] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
161 8 14 figure_title (g) [568, 625, 601, 656] figure_inner_text 0.9 ["panel label / figure inner text: (g)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
162 8 15 chart [573, 626, 831, 846] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
163 8 16 figure_title (h) [833, 625, 867, 655] figure_inner_text 0.9 ["panel label / figure inner text: (h)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
164 8 17 chart [837, 638, 1085, 845] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
165 8 18 figure_title Figure 4. Evaluation of the biocompatibility and cell culture capability of FESA a) Cytotoxicity study of the materials comprising FESA using L-929 fibroblast cells, b) Morphology of L-929 cells after [90, 867, 1091, 964] figure_caption 0.92 ["figure_title label: Figure 4. Evaluation of the biocompatibility and cell cultur"] figure_caption 0.92 display_zone legend_like figure_number True True
166 8 19 text recovery is exceedingly challenging once damaged. As shown in Figure 4c, electrical stimulation is known to elicit augmentation in the synthesis of type I and type II collagen (Col I and Col II) as we [90, 1003, 581, 1179] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
167 8 20 text Figure 4d–h shows the biological response of meniscal primary cells to ES from FESA, which is after 4 and 7 days of stretching FESA to 10% at 1 Hz to provide ES on the 1 cm x 1 cm PEDOT/CNT sheets (13 [89, 1180, 581, 1398] body_paragraph 0.9 ["figure caption candidate (body narrative): Figure 4d\u2013h shows the biological response of meniscal primar"] figure_caption_candidate 0.9 display_zone legend_like figure_number True True
168 8 21 text As one of the common methods to demonstrate meniscal primary cell differentiation, we quantified key components of the extracellular matrix (ECM), including type I collagen (Col I), type II collagen ( [90, 1399, 582, 1444] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
169 8 22 text [598, 1003, 1093, 1445] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
170 8 23 footer Adv. Funct. Mater. 2024, 34, 2315279 [93, 1487, 310, 1505] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
171 8 24 number 2315279 (8 of 10) [524, 1484, 658, 1508] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
172 8 25 footer © 2024 Wiley-VCH GmbH [931, 1486, 1090, 1506] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
173 8 26 aside_text 16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio [1155, 29, 1171, 1533] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 unknown_like none False False
174 9 0 header ADVANCED SCIENCE NEWS www.advancedsciencenews.com [98, 46, 345, 117] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
175 9 1 header ADVANCED FUNCTIONAL MATERIALS w.afm-journal.de [973, 42, 1096, 116] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
176 9 2 paragraph_title 3. Conclusion [97, 150, 234, 174] section_heading 0.85 ["paragraph_title label with numbering: 3. Conclusion"] section_heading 0.85 body_zone heading_like heading_numbered True True
177 9 3 text In conclusion, we successfully demonstrated the FESA, which consists of the CM-twistron energy harvester unit including the CPCY and the conductive scaffold as the PEDOT/CNT. Incorporating hydrophilic [96, 188, 588, 584] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
178 9 4 paragraph_title Supporting Information [97, 622, 328, 648] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Supporting Information"] backmatter_boundary_candidate 0.5 heading_like none True True
179 9 5 text Supporting Information is available from the Wiley Online Library or from the author. [96, 659, 585, 698] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
180 9 6 paragraph_title Acknowledgements [97, 738, 289, 763] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements"] sub_subsection_heading 0.6 tail_nonref_hold_zone heading_like short_fragment True True
181 9 7 text This work was partially supported by the Korea Institute of Industrial Technology (KITECH -JE230016); the National Research Foundation of Korea (NRF) grant funded by the Korea government (MSIT) (No. 2 [95, 774, 588, 1080] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 unknown_like none True True
182 9 8 paragraph_title Conflict of Interest [97, 1118, 280, 1141] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Conflict of Interest"] subsection_heading 0.6 tail_nonref_hold_zone support_like none False True
183 9 9 text The authors declare no conflict of interest. [97, 1156, 382, 1175] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 support_like none True True
184 9 10 paragraph_title Author Contributions [97, 1215, 305, 1238] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Author Contributions"] subsection_heading 0.6 tail_nonref_hold_zone support_like none False True
185 9 11 text S.O., K.J.K., and C.H.K. contributed equally to this work. S.O., S.H.K., and T.H.K. designed the project. S.J.O., K.J.K., and C.H.K. designed the experiments and characterisation. Under the supervisio [96, 1252, 587, 1444] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
186 9 12 paragraph_title Data Availability Statement [607, 150, 872, 175] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Data Availability Statement"] subsection_heading 0.6 body_zone heading_like none True True
187 9 13 paragraph_title Keywords [608, 265, 707, 292] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Keywords"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
188 9 14 text cell culture system, electrical stimulation, mechanical energy harvester, PEDOT-coated carbon nanotube sheets [606, 302, 1096, 342] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
189 9 15 text Received: December 1, 2023 Revised: February 8, 2024 Published online: March 4, 2024 [878, 366, 1098, 422] frontmatter_noise 0.88 ["default body_paragraph for text label", "late role resolution: editorial phrase cross-validates non-body classification", "zone=body_zone", "style_family=support_like"] body_paragraph 0.6 support_like none False False
190 9 16 reference_content [1] R. Luo, J. Dai, J. Zhang, Z. Li, Adv. Healthcare Mater. 2021, 10, 2100557. [616, 486, 1096, 524] reference_item 0.85 ["reference content label: [1] R. Luo, J. Dai, J. Zhang, Z. Li, Adv. Healthcare Mater. "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
191 9 17 reference_content [2] B. Lu, M. Ye, J. Xia, Z. Zhang, Z. Xiong, T. Zhang, Adv. Healthcare Mater. 2023, 12, 2300607. [617, 526, 1097, 563] reference_item 0.85 ["reference content label: [2] B. Lu, M. Ye, J. Xia, Z. Zhang, Z. Xiong, T. Zhang, Adv."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
192 9 18 reference_content [3] Y. Zhang, S. Chen, Z. Xiao, X. Liu, C. Wu, K. Wu, A. Liu, D. Wei, J. Sun, L. Zhou, Adv. Healthcare Mater. 2021, 10, 2100695. [618, 566, 1096, 604] reference_item 0.85 ["reference content label: [3] Y. Zhang, S. Chen, Z. Xiao, X. Liu, C. Wu, K. Wu, A. Liu"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
193 9 19 reference_content [4] A. Gupta, N. Vardalakis, F. B. Wagner, Communications Biology 2023, 6, 14. [618, 606, 1096, 643] reference_item 0.85 ["reference content label: [4] A. Gupta, N. Vardalakis, F. B. Wagner, Communications Bi"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
194 9 20 reference_content [5] L. Liu, J. Zhang, J. Sun, K. Xu, Biomed. Eng. Online 2022, 21, 58. [618, 645, 1065, 665] reference_item 0.85 ["reference content label: [5] L. Liu, J. Zhang, J. Sun, K. Xu, Biomed. Eng. Online 202"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
195 9 21 reference_content [6] B. D. Cardoso, E. M. Castanheira, S. Lanceros-Méndez, V. F. Cardoso, Adv. Healthcare Mater. 2023, 12, 2202936. [618, 667, 1096, 704] reference_item 0.85 ["reference content label: [6] B. D. Cardoso, E. M. Castanheira, S. Lanceros-M\u00e9ndez, V."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
196 9 22 reference_content [7] M. X. Doss, C. I. Koehler, C. Gissel, J. Hescheler, A. Sachinidis, J. Cell. Mol. Med. 2004, 8, 465. [618, 706, 1095, 743] reference_item 0.85 ["reference content label: [7] M. X. Doss, C. I. Koehler, C. Gissel, J. Hescheler, A. S"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
197 9 23 reference_content [8] E. Karbassi, A. Fenix, S. Marchiano, N. Muraoka, K. Nakamura, X. Yang, C. E. Murry, Nat. Rev. Cardiol. 2020, 17, 341. [616, 746, 1096, 784] reference_item 0.85 ["reference content label: [8] E. Karbassi, A. Fenix, S. Marchiano, N. Muraoka, K. Naka"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
198 9 24 reference_content [9] E. Matsa, P. W. Burridge, J. C. Wu, Sci. Transl. Med. 2014, 6, 239. [615, 785, 1067, 805] reference_item 0.85 ["reference content label: [9] E. Matsa, P. W. Burridge, J. C. Wu, Sci. Transl. Med. 20"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
199 9 25 reference_content [10] M. Parvez Mahmud, N. Huda, S. H. Farjana, M. Asadnia, C. Lang, Adv. Energy Mater. 2018, 8, 1701210. [610, 806, 1096, 843] reference_item 0.85 ["reference content label: [10] M. Parvez Mahmud, N. Huda, S. H. Farjana, M. Asadnia, C"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
200 9 26 reference_content [11] H. Ryu, H.-M. Park, M.-K. Kim, B. Kim, H. S. Myoung, T. Y. Kim, H.-J. Yoon, S. S. Kwak, J. Kim, T. H. Hwang, Nat. Commun. 2021, 12, 4374. [610, 845, 1096, 883] reference_item 0.85 ["reference content label: [11] H. Ryu, H.-M. Park, M.-K. Kim, B. Kim, H. S. Myoung, T."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
201 9 27 reference_content [12] R. Hinchet, H.-J. Yoon, H. Ryu, M.-K. Kim, E.-K. Choi, D.-S. Kim, S.-W. Kim, Science 2019, 365, 491. [610, 885, 1096, 923] reference_item 0.85 ["reference content label: [12] R. Hinchet, H.-J. Yoon, H. Ryu, M.-K. Kim, E.-K. Choi, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
202 9 28 reference_content [13] X. Xiao, X. Xiao, A. Nashalian, A. Libanori, Y. Fang, X. Li, J. Chen, Adv. Healthcare Mater. 2021, 10, 2100975. [610, 925, 1096, 962] reference_item 0.85 ["reference content label: [13] X. Xiao, X. Xiao, A. Nashalian, A. Libanori, Y. Fang, X"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
203 9 29 reference_content [14] J. Tian, R. Shi, Z. Liu, H. Ouyang, M. Yu, C. Zhao, Y. Zou, D. Jiang, J. Zhang, Z. Li, Nano Energy 2019, 59, 705. [610, 965, 1096, 1003] reference_item 0.85 ["reference content label: [14] J. Tian, R. Shi, Z. Liu, H. Ouyang, M. Yu, C. Zhao, Y. "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
204 9 30 reference_content [15] G. Conta, A. Libanori, T. Tat, G. Chen, J. Chen, Adv. Mater. 2021, 33, 2007502. [611, 1005, 1096, 1042] reference_item 0.85 ["reference content label: [15] G. Conta, A. Libanori, T. Tat, G. Chen, J. Chen, Adv. M"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
205 9 31 reference_content [16] P. Chen, C. Xu, P. Wu, K. Liu, F. Chen, Y. Chen, H. Dai, Z. Luo, ACS Nano 2022, 16, 16513. [609, 1045, 1097, 1082] reference_item 0.85 ["reference content label: [16] P. Chen, C. Xu, P. Wu, K. Liu, F. Chen, Y. Chen, H. Dai"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
206 9 32 reference_content [17] Y.-H. Lai, Y.-H. Chen, A. Pal, S.-H. Chou, S.-J. Chang, E.-W. Huang, Z.-H. Lin, S.-Y. Chen, Nano Energy 2021, 90, 106545. [610, 1085, 1096, 1122] reference_item 0.85 ["reference content label: [17] Y.-H. Lai, Y.-H. Chen, A. Pal, S.-H. Chou, S.-J. Chang,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
207 9 33 reference_content [18] O. Yue, X. Wang, M. Hou, M. Zheng, D. Hao, Z. Bai, X. Zou, B. Cui, C. Liu, X. Liu, Nano Energy 2023, 107, 108158. [609, 1124, 1095, 1162] reference_item 0.85 ["reference content label: [18] O. Yue, X. Wang, M. Hou, M. Zheng, D. Hao, Z. Bai, X. Z"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
208 9 34 reference_content [19] G. Li, Q. Zhu, B. Wang, R. Luo, X. Xiao, Y. Zhang, L. Ma, X. Feng, J. Huang, X. Sun, Adv. Sci. 2021, 8, 2100964. [610, 1164, 1095, 1202] reference_item 0.85 ["reference content label: [19] G. Li, Q. Zhu, B. Wang, R. Luo, X. Xiao, Y. Zhang, L. M"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
209 9 35 reference_content [20] Y. Jin, J. Seo, J. S. Lee, S. Shin, H. J. Park, S. Min, E. Cheong, T. Lee, S. W. Cho, Adv. Mater. 2016, 28, 7365. [609, 1204, 1096, 1241] reference_item 0.85 ["reference content label: [20] Y. Jin, J. Seo, J. S. Lee, S. Shin, H. J. Park, S. Min,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
210 9 36 reference_content [21] K.-A. Chang, J. W. Kim, J. A. Kim, S. Lee, S. Kim, W. H. Suh, H.-S. Kim, S. Kwon, S. J. Kim, Y.-H. Suh, PLoS One 2011, 6, e18738. [609, 1244, 1096, 1282] reference_item 0.85 ["reference content label: [21] K.-A. Chang, J. W. Kim, J. A. Kim, S. Lee, S. Kim, W. H"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
211 9 37 reference_content [22] X. Meng, X. Xiao, S. Jeon, D. Kim, B. J. Park, Y. J. Kim, N. Rubab, S. Kim, S. W. Kim, Adv. Mater. 2023, 35, 2209054. [610, 1284, 1095, 1322] reference_item 0.85 ["reference content label: [22] X. Meng, X. Xiao, S. Jeon, D. Kim, B. J. Park, Y. J. Ki"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
212 9 38 reference_content [23] W. Hu, X. Wei, L. Zhu, D. Yin, A. Wei, X. Bi, T. Liu, G. Zhou, Y. Qiang, X. Sun, Nano Energy 2019, 57, 600. [610, 1324, 1096, 1361] reference_item 0.85 ["reference content label: [23] W. Hu, X. Wei, L. Zhu, D. Yin, A. Wei, X. Bi, T. Liu, G"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
213 9 39 reference_content [24] J. Liang, H. Zeng, L. Qiao, H. Jiang, Q. Ye, Z. Wang, B. Liu, Z. Fan, ACS Appl. Mater. Interfaces 2022, 14, 30507. [610, 1363, 1096, 1400] reference_item 0.85 ["reference content label: [24] J. Liang, H. Zeng, L. Qiao, H. Jiang, Q. Ye, Z. Wang, B"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
214 9 40 reference_content [25] S. H. Kim, C. S. Haines, N. Li, K. J. Kim, T. J. Mun, C. Choi, J. Di, Y. J. Oh, J. P. Oviedo, J. Bykova, Science 2017, 357, 773. [609, 1403, 1095, 1442] reference_item 0.85 ["reference content label: [25] S. H. Kim, C. S. Haines, N. Li, K. J. Kim, T. J. Mun, C"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
215 9 41 footer Adv. Funct. Mater. 2024, 34, 2315279 [99, 1488, 315, 1505] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
216 9 42 footer 2315279 (9 of 10) [530, 1484, 664, 1506] reference_item 0.9 ["footer label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
217 9 43 footer © 2024 Wiley-VCH GmbH [937, 1487, 1096, 1505] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
218 9 44 aside_text 16163028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio [1155, 32, 1172, 1535] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 unknown_like none False False
219 10 0 header_image [93, 46, 282, 114] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 unknown_like empty False True
220 10 1 header ADVANCED FUNCTIONAL MATERIALS w.afm-journal.de [968, 43, 1090, 113] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
221 10 2 header www.advancedsciencenews.com [92, 99, 339, 116] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
222 10 3 header www.afm-journal.de [936, 99, 1090, 116] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
223 10 4 reference_content [26] S. Oh, K. J. Kim, B. Goh, C. L. Park, G. D. Lee, S. Shin, S. Lim, E. S. Kim, K. R. Yoon, C. Choi, Adv. Sci. 2022, 9, 2203767. [93, 151, 578, 190] reference_item 0.85 ["reference content label: [26] S. Oh, K. J. Kim, B. Goh, C. L. Park, G. D. Lee, S. Shi"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
224 10 5 reference_content [27] Z. Wang, T. J. Mun, F. M. Machado, J. H. Moon, S. Fang, A. E. Aliev, M. Zhang, W. Cai, J. Mu, J. S. Hyeon, Adv. Mater. 2022, 34, 2201826. [95, 192, 578, 229] reference_item 0.85 ["reference content label: [27] Z. Wang, T. J. Mun, F. M. Machado, J. H. Moon, S. Fang,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
225 10 6 reference_content [28] M. Zhang, W. Cai, Z. Wang, S. Fang, R. Zhang, H. Lu, A. E. Aliev, A. A. Zakhidov, C. Huynh, E. Gao, Nat. Energy 2023, 8, 203. [94, 231, 577, 269] reference_item 0.85 ["reference content label: [28] M. Zhang, W. Cai, Z. Wang, S. Fang, R. Zhang, H. Lu, A."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
226 10 7 reference_content [29] M. Zhang, K. R. Atkinson, R. H. Baughman, Science 2004, 306, 1358. [94, 271, 579, 290] reference_item 0.85 ["reference content label: [29] M. Zhang, K. R. Atkinson, R. H. Baughman, Science 2004,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
227 10 8 reference_content [30] M. Zhang, S. Fang, A. A. Zakhidov, S. B. Lee, A. E. Aliev, C. D. Williams, K. R. Atkinson, R. H. Baughman, Science 2005, 309, 1215. [94, 292, 578, 329] reference_item 0.85 ["reference content label: [30] M. Zhang, S. Fang, A. A. Zakhidov, S. B. Lee, A. E. Ali"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
228 10 9 reference_content [31] S. Zhou, M. Wang, Z. Yang, X. Zhang, ACS Appl. Nano Mater. 2019, 2, 3271. [95, 331, 579, 368] reference_item 0.85 ["reference content label: [31] S. Zhou, M. Wang, Z. Yang, X. Zhang, ACS Appl. Nano Mat"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
229 10 10 reference_content [32] S. Zhou, J. Zhang, Z. Yang, X. Zhang, Langmuir 2021, 37, 4523. [94, 371, 543, 390] reference_item 0.85 ["reference content label: [32] S. Zhou, J. Zhang, Z. Yang, X. Zhang, Langmuir 2021, 37"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
230 10 11 reference_content [33] B. Fei, B. Qian, Z. Yang, R. Wang, W. Liu, C. Mak, J. H. Xin, Carbon 2008, 46, 1795. [95, 392, 579, 428] reference_item 0.85 ["reference content label: [33] B. Fei, B. Qian, Z. Yang, R. Wang, W. Liu, C. Mak, J. H"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
231 10 12 reference_content [34] J. Oh, R. Zhang, P. P. Shetty, J. A. Krogstad, P. V. Braun, N. Miljkovic, Adv. Funct. Mater. 2018, 28, 1707000. [95, 430, 579, 468] reference_item 0.85 ["reference content label: [34] J. Oh, R. Zhang, P. P. Shetty, J. A. Krogstad, P. V. Br"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
232 10 13 reference_content [35] R. Dulbecco, G. Freeman, Virology 1959, 8, 396. [94, 470, 443, 489] reference_item 0.85 ["reference content label: [35] R. Dulbecco, G. Freeman, Virology 1959, 8, 396."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
233 10 14 reference_content [36] D. C. Grahame, Chem. Rev. 1947, 41, 441. [94, 491, 405, 509] reference_item 0.85 ["reference content label: [36] D. C. Grahame, Chem. Rev. 1947, 41, 441."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
234 10 15 reference_content [37] T. Brezesinski, J. Wang, J. Polleux, B. Dunn, S. H. Tolbert, J. Am. Chem. Soc. 2009, 131, 1802. [94, 510, 578, 548] reference_item 0.85 ["reference content label: [37] T. Brezesinski, J. Wang, J. Polleux, B. Dunn, S. H. Tol"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
235 10 16 reference_content [38] T. Brezesinski, J. Wang, S. H. Tolbert, B. Dunn, Nat. Mater. 2010, 9, 146. [95, 550, 579, 586] reference_item 0.85 ["reference content label: [38] T. Brezesinski, J. Wang, S. H. Tolbert, B. Dunn, Nat. M"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
236 10 17 reference_content [39] R. Kumar, M. Bag, J. Phys. Chem. C 2021, 125, 16946. [95, 590, 481, 610] reference_item 0.85 ["reference content label: [39] R. Kumar, M. Bag, J. Phys. Chem. C 2021, 125, 16946."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
237 10 18 reference_content [40] B. Majhy, P. Priyadarshini, A. Sen, RSC Adv. 2021, 11, 15467. [604, 151, 1038, 170] reference_item 0.85 ["reference content label: [40] B. Majhy, P. Priyadarshini, A. Sen, RSC Adv. 2021, 11, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
238 10 19 reference_content [41] H. Ma, Y. Zhang, M. Shen, J. Energy Storage 2021, 44, 103299. [604, 171, 1047, 190] reference_item 0.85 ["reference content label: [41] H. Ma, Y. Zhang, M. Shen, J. Energy Storage 2021, 44, 1"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
239 10 20 reference_content [42] S. Fletcher, V. J. Black, I. Kirkpatrick, J. Solid State Electrochem. 2014, 18, 1377. [606, 192, 1090, 228] reference_item 0.85 ["reference content label: [42] S. Fletcher, V. J. Black, I. Kirkpatrick, J. Solid Stat"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
240 10 21 reference_content [43] G. Brug, A. L. van den Eeden, M. Sluyers-Rehbach, J. H. Sluyers, J. Electroanal. Chem. Interfacial Electrochem. 1984, 176, 275. [605, 231, 1088, 269] reference_item 0.85 ["reference content label: [43] G. Brug, A. L. van den Eeden, M. Sluyers-Rehbach, J. H."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
241 10 22 reference_content [44] R. F. Wallin, E. Arscott, Medical Device and Diagnostic Industry 1998, 20, 96. [606, 271, 1089, 308] reference_item 0.85 ["reference content label: [44] R. F. Wallin, E. Arscott, Medical Device and Diagnostic"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
242 10 23 reference_content [45] J. Gopinathan, M. M. Pillai, S. Shanthakumari, S. Gnanapoongothai, B. K. D. Rai, K. S. Sahanand, R. Selvakumar, A. Bhattacharyya, Nanomedicine: Nanotechnology, Biology and Medicine 2018, 14, 2247 [605, 311, 1090, 370] reference_item 0.85 ["reference content label: [45] J. Gopinathan, M. M. Pillai, S. Shanthakumari, S. Gnana"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
243 10 24 reference_content [46] K.-H. Yoon, J.-Y. Park, J.-Y. Lee, E. Lee, J. Lee, S.-G. Kim, The American Journal of Sports Medicine 2020, 48, 1236. [605, 371, 1089, 409] reference_item 0.85 ["reference content label: [46] K.-H. Yoon, J.-Y. Park, J.-Y. Lee, E. Lee, J. Lee, S.-G"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
244 10 25 reference_content [47] M. Hagmeijer, L. Vonk, M. Fenu, Y. Van Keep, A. Krych, D. B. F. Saris, Eur. Cells Mater. 2019, 38, 51. [606, 411, 1090, 448] reference_item 0.85 ["reference content label: [47] M. Hagmeijer, L. Vonk, M. Fenu, Y. Van Keep, A. Krych, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
245 10 26 reference_content [48] X. Yuan, D. E. Arkonac, P.-h. G. Chao, G. Vunjak-Novakovic, Sci. Rep. 2014, 4, 3674. [605, 450, 1089, 487] reference_item 0.85 ["reference content label: [48] X. Yuan, D. E. Arkonac, P.-h. G. Chao, G. Vunjak-Novako"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
246 10 27 reference_content [49] G. Zhong, J. Yao, X. Huang, Y. Luo, M. Wang, J. Han, F. Chen, Y. Yu, Bioactive Materials 2020, 5, 871. [605, 490, 1089, 528] reference_item 0.85 ["reference content label: [49] G. Zhong, J. Yao, X. Huang, Y. Luo, M. Wang, J. Han, F."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
247 10 28 reference_content [50] Y. Sun, Y. You, W. Jiang, Q. Wu, B. Wang, K. Dai, Appl. Mater. Today 2020, 18, 100469. [605, 530, 1090, 567] reference_item 0.85 ["reference content label: [50] Y. Sun, Y. You, W. Jiang, Q. Wu, B. Wang, K. Dai, Appl."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
248 10 29 reference_content [51] M. Chen, Z. Feng, W. Guo, D. Yang, S. Gao, Y. Li, S. Shen, Z. Yuan, B. Huang, Y. Zhang, ACS Appl. Mater. Interfaces 2019, 11, 41626. [604, 570, 1089, 609] reference_item 0.85 ["reference content label: [51] M. Chen, Z. Feng, W. Guo, D. Yang, S. Gao, Y. Li, S. Sh"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
249 10 30 footer Adv. Funct. Mater. 2024, 34, 2315279 [93, 1488, 310, 1504] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
250 10 31 number 2315279 (10 of 10) [521, 1485, 662, 1507] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
251 10 32 footer © 2024 Wiley-VCH GmbH [932, 1488, 1089, 1505] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
252 10 33 aside_text 16/63028, 2024, 33, Downloaded from https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202315279 by Shandong University Library, Wiley Online Library on [28/02/2026]. See the Terms and Conditio [1156, 34, 1171, 1537] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 unknown_like none False False

View file

@ -0,0 +1,620 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,doc_title,Accepted Manuscript,"[82, 139, 346, 176]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Accepted Manuscript""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,text,Review,"[81, 231, 156, 258]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,frontmatter_main_zone,support_like,short_fragment,False,False
1,2,text,Applications of biosynthesized metallic nanoparticles a review,"[80, 289, 656, 318]",unknown_structural,0.8,"[""page-1 zone title_zone: Applications of biosynthesized metallic nanoparticles \u2013 a re""]",paper_title,0.8,frontmatter_main_zone,support_like,none,False,True
1,3,text,"Adam Schröfel, Gabriela Kratošová, Ivo Šafařík, Mirka Šafaříková, Ivan Raška, Leslie M Shor","[80, 345, 729, 404]",authors,0.8,"[""page-1 zone author_zone: Adam Schr\u00f6fel, Gabriela Krato\u0161ov\u00e1, Ivo \u0160afa\u0159\u00edk, Mirka \u0160afa\u0159\u00ed""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,4,text,PII: S1742-7061(14)00234-7,"[80, 433, 516, 460]",frontmatter_noise,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,False,False
1,5,text,DOI: http://dx.doi.org/10.1016/j.actbio.2014.05.022,"[82, 463, 705, 489]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: DOI: http://dx.doi.org/10.1016/j.actbio.2014.05.022""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,6,text,Reference: ACTBIO 3244,"[82, 493, 431, 520]",frontmatter_noise,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,False,False
1,7,image,,"[802, 139, 1075, 504]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,8,text,To appear in: Acta Biomaterialia,"[81, 551, 467, 578]",frontmatter_noise,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,False,False
1,9,text,Received Date: 16 January 2014,"[81, 607, 445, 635]",frontmatter_noise,0.7,"[""frontmatter noise text: Received Date: 16 January 2014""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,10,text,Revised Date: 13 April 2014,"[81, 638, 423, 665]",frontmatter_noise,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,False,False
1,11,text,Accepted Date: 21 May 2014,"[82, 667, 418, 695]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Accepted Date: 21 May 2014""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,12,text,"Please cite this article as: Schröfel, A., Kratošová, G., Šafařík, I., Šafaříková, M., Raška, I., Shor, L.M., Applications of biosynthesized metallic nanoparticles a review, Acta Biomaterialia (2014","[79, 741, 1090, 829]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Please cite this article as: Schr\u00f6fel, A., Krato\u0161ov\u00e1, G., \u0160a""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,13,text,This is a PDF file of an unedited manuscript that has been accepted for publication. As a service to our customers we are providing this early version of the manuscript. The manuscript will undergo co,"[78, 910, 1093, 1029]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: This is a PDF file of an unedited manuscript that has been a""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
2,0,header,ACCEPTED MANUSCRIPT,"[384, 31, 840, 70]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
2,1,text,Title Page for Acta Biomaterialia,"[446, 183, 778, 214]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,2,doc_title,Applications of biosynthesized metallic nanoparticles a review,"[281, 270, 941, 302]",unknown_structural,0.8,"[""page-1 zone title_zone: Applications of biosynthesized metallic nanoparticles \u2013 a re""]",paper_title,0.8,body_zone,body_like,none,False,True
2,3,text,"Adam Schröfel $ ^{a,b,e} $, Gabriela Kratošová $ ^{c} $, Ivo Šafařík $ ^{a} $, Mirka Šafaříková $ ^{a} $, Ivan Raška $ ^{e} $ and Leslie","[140, 428, 1082, 459]",authors,0.8,"[""page-1 zone author_zone: Adam Schr\u00f6fel $ ^{a,b,e} $, Gabriela Krato\u0161ov\u00e1 $ ^{c} $, Ivo""]",authors,0.8,body_zone,body_like,none,True,True
2,4,text,"M Shor $ ^{b,d} $","[560, 481, 664, 513]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
2,5,text," $ ^{a} $ Department of Nanobiotechnology, Institute of Nanobiology and Structural Biology of GCRC, Academy of Sciences, Ceske Budejovice, Czech Republic","[135, 561, 1068, 621]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{a} $ Department of Nanobiotechnology, Institute of Nanob""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,6,text," $ ^{b} $ Department of Chemical and Biomolecular Engineering, University of Connecticut, Storrs CT, USA","[136, 629, 1070, 687]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{b} $ Department of Chemical and Biomolecular Engineering""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,7,text," $ ^{c} $ Nanotechnology Centre, VSB-Technical University in Ostrava, Ostrava, Czech Republic","[135, 695, 1014, 727]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{c} $ Nanotechnology Centre, VSB-Technical University in ""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,8,text," $ ^{d} $ Center for Environmental Sciences & Engineering, University of Connecticut, Storrs CT, USA","[136, 734, 1072, 766]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{d} $ Center for Environmental Sciences & Engineering, Un""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,9,text," $ ^{e} $ Charles University, Institute of Cellular Biology and Pathology, Prague, Czech Republic","[135, 774, 1008, 807]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{e} $ Charles University, Institute of Cellular Biology a""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,10,paragraph_title,Corresponding Author:,"[136, 913, 389, 944]",frontmatter_support,0.78,"[""first-surviving-page support text: Corresponding Author:""]",frontmatter_support,0.78,body_zone,heading_like,none,True,True
2,11,text,"Adam Schröfel, PhD.","[136, 968, 350, 998]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
2,12,text,"Charles University, Institute of Cellular Biology and Pathology, Prague, Czech Republic","[135, 1023, 996, 1054]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,13,text,Albertov 4,"[138, 1079, 249, 1107]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
2,14,text,"128 00 Praha 2, Czech Republic","[139, 1133, 455, 1163]",body_paragraph,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,,reference_like,reference_numeric_dot,True,True
2,15,text,Tel: +420 777864404,"[139, 1189, 355, 1218]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
2,16,text,Fax: +420 224917418,"[137, 1244, 359, 1274]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
2,17,text,Email: adam.schrofel@gmail.com,"[136, 1299, 475, 1329]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,0,doc_title,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
3,1,text,Running Title: Biosynthesized metallic nanoparticles,"[137, 142, 656, 172]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,2,text,Word Count Abstract: 116,"[137, 197, 403, 225]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,3,text,Word Count Body Text + Figure Legends: 9500,"[137, 252, 608, 282]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,4,text,Number of Tables: 14,"[137, 308, 358, 336]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,text,Number of Figures: 6,"[137, 363, 353, 392]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,Number of References: 184,"[137, 418, 412, 446]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,7,number,2,"[1067, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,0,header,ACCEPTED MANUSCRIPT,"[385, 31, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
4,1,doc_title,Applications of biosynthesized metallic nanoparticles a review,"[137, 143, 906, 178]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,body_like,none,False,True
4,2,text,"Adam Schröfel $ ^{a,b,e,*} $, Gabriela Kratošová $ ^{c} $, Ivo Šafarík $ ^{a} $, Mirka Šafaríková $ ^{a} $, Ivan Raška $ ^{e} $ and Leslie M Shor $ ^{b,d} $","[135, 253, 1083, 339]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,3,text," $ ^{a} $ Department of Nanobiotechnology, Institute of Nanobiology and Structural Biology of GCRC, Academy of Sciences, Ceske Budejovice, Czech Republic","[136, 387, 1068, 446]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
4,4,text," $ ^{b} $ Department of Chemical and Biomolecular Engineering, University of Connecticut, Storrs CT, USA","[136, 453, 1069, 511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
4,5,text," $ ^{c} $ Nanotechnology Centre, VSB-Technical University in Ostrava, Ostrava, Czech Republic","[136, 521, 1013, 551]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
4,6,text," $ ^{d} $ Center for Environmental Sciences & Engineering, University of Connecticut, Storrs CT, USA
$ ^{e} $ Charles University, Institute of Cellular Biology and Pathology, Prague, Czech Republic
*","[134, 560, 1073, 672]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
4,7,paragraph_title,ABSTRACT,"[172, 695, 314, 724]",abstract_heading,0.95,"[""abstract heading""]",abstract_heading,0.95,body_zone,heading_like,short_fragment,True,True
4,8,abstract,"Here we offer a comprehensive review of the applications of biosynthesized metallic nanoparticles (NPs). Biosynthesis of metallic NPs is the subject of recent reviews, which focus on the various ""bott","[136, 747, 1088, 1279]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,body_zone,body_like,none,True,True
4,9,paragraph_title,Keywords,"[138, 1304, 258, 1333]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Keywords""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
4,10,number,3,"[1068, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
5,1,text,Biosynthesis; metallic nanoparticles; nanomedicine; bioimaging; sensors,"[136, 145, 902, 175]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,2,paragraph_title,1. Introduction,"[138, 265, 316, 292]",section_heading,0.85,"[""paragraph_title label with numbering: 1. Introduction""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
5,3,text,"The unique properties of nano-scale materials have given rise to tremendous research activity directed towards nanoparticle (NP) fabrication, characterization, and applications. In order to reveal eve","[135, 341, 1089, 744]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,4,text,Among the key advantages of the biological approach over traditional chemical and physical NP synthesis methods is the biological capacity to catalyze reactions in aqueous media at standard temperatur,"[135, 754, 1088, 1157]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,5,text,"The properties of biosynthesized materials may differ from materials prepared by other methods. Biosynthesis can result in forms that are difficult to make using other techniques, such as alloys and w","[136, 1168, 1088, 1322]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,6,number,4,"[1068, 1394, 1085, 1416]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
6,1,text,"potential range of sizes, shapes, and compositions of biosynthesized NPs translates into a broad domain of existing and new nanomaterial applications.","[135, 145, 1085, 215]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,2,text,"Applications of biosynthesized metal-based NPs range from various biomedical purposes (i.e., antimicrobial coatings, medical imaging, and drug delivery) to catalytic water treatment, and environmental","[135, 228, 1088, 382]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,3,paragraph_title,2. Biomedical applications,"[135, 452, 439, 482]",section_heading,0.85,"[""paragraph_title label with numbering: 2. Biomedical applications""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
6,4,text,"Applications of metallic NPs in the biomedical fields are numerous, and there is a strong potential for continued growth in this area. Metallic NPs are widely used for their antimicrobial functionalit","[135, 530, 1088, 891]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,5,paragraph_title,2.1. Antimicrobial applications,"[172, 949, 513, 978]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.1. Antimicrobial applications""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
6,6,text,"Ongoing development of antimicrobial agents is important due to the continuous selection for antibiotic resistance traits in bacteria and other pathogens. Different metallic NPs including titanium, co","[135, 1029, 1087, 1223]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,7,text,"The following sections describe the key antibacterial, antiviral, and antifungal properties described in the literature for biosynthesized NPs (Tables 1-2). However, due to the large number of papers ","[135, 1236, 1087, 1389]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,8,number,5,"[1068, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,0,doc_title,ACCEPTED MANUSCRIPT,"[385, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
7,1,paragraph_title,2.1.1. Antibacterial activity,"[208, 144, 491, 171]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.1.1. Antibacterial activity""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
7,2,text,"AgNP exposure causes toxicity to bacteria, primarily from Ag ions released into aqueous solution following partial oxidation [5]. Ag ions and small NPs interact with the plasma membrane, disturbing ce","[135, 224, 1088, 417]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,3,text,"The detailed mechanisms of AuNP antibacterial functionality against E. coli is described by Cui et al. [12]. AuNPs were shown to collapse membrane potential, strongly inhibiting ATPase activity and re","[135, 430, 1088, 584]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,4,text,Bacterial susceptibility to antimicrobial agents can depend on the cell wall structure. Bacteria are classified into two categories based on their cell wall structure: Gram-negative (G-) bacteria have,"[135, 595, 1088, 749]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,5,text,"A variety of biological materials have been used for biosynthesis of NPs with demonstrable antibacterial effects. These materials include fungal, bacterial, and algal biomass as well as extracts of bo","[134, 761, 1089, 1205]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,6,text,"Antimicrobial properties of bacteria-biosynthesized NPs were illustrated in two studies by Sadhasivam et al. [15, 16]. Streptomyces hygroscopicus cells were used for biosynthesis of Ag and AuNPs with ","[136, 1216, 1087, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,7,number,6,"[1068, 1395, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,0,doc_title,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
8,1,text,"An example of algae-based NP biosynthesis is described by Merin et al. [17], where AgNPs with antibacterial properties were synthesized by microalgae strains Chaetocerus calcitrans, Chlorella salina, ","[135, 145, 1089, 631]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,2,text,"By far the most abundant studies on biosynthesized antibacterial NPs are those using plant tissues and extracts as reducing agents. As previously mentioned, biosynthesized NPs may require purification","[135, 641, 1088, 961]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,3,text,Other botanical extracts have been used for biosynthesis of antimicrobial AgNPs. Stem callus extract of bitter apple (Citrullus colocynthis) was used for AgNPs synthesis with demonstrated activity aga,"[135, 973, 1088, 1293]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,4,text,Several reports have described synergistic antimicrobial effects of phytosynthesized nanoparticles used in combination with antibiotics. Ghosh et al. synthesized AgNPs prepared,"[136, 1303, 1087, 1374]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,5,number,7,"[1068, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
9,1,text,"with tuber extract of Dioscorea bulbifera [25], then measured synergistic antimicrobial potential using 22 types of commercially-available antibiotics and 7 bacterial strains. For instance, they found","[135, 145, 1087, 299]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,2,text,Plant extracts have also been used for biosynthesis AuNPs with antibacterial activity. Kumar et al. [26] used a deciduous tree (Terminalia chebula) extract for biosynthesis of AuNPs effective against ,"[135, 310, 1087, 505]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,3,text,"Biosynthesized metallic NPs that are immobilized on cotton cloth have many important applications as material for wound dressings. For example, Durán et al. [28] reported the extracellular production ","[135, 518, 1089, 879]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,4,text,Tripathi et al. [31] examined biosynthesis of AgNPs using an aqueous extract of Azadirachta indica leaves and their subsequent immobilization on cotton cloth. These authors observed the bactericidal e,"[135, 890, 1088, 1168]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,5,text,Antibacterial effect against E. coli was also tested with AgNPs prepared by means of the extract and powder of Curcuma longa tubers [33] then immobilized on cotton cloth. AgNPs were resuspended in wat,"[136, 1179, 1088, 1376]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,6,number,8,"[1068, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
10,1,text,into nonwoven fabrics has been demonstrated. Yang and Li [34] prepared AgNPs using mango peel extract and demonstrated antimicrobial effectiveness of these nanoparticles immobilized on a non-woven fab,"[135, 145, 1087, 255]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,2,text,"Sundaramoothi et al. [35] described a wound healing application for biosynthesized AgNPs, prepared extracellularly using the bacteria Aspergillus niger. AgNPs efficiency was demonstrated following exc","[135, 268, 1088, 506]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,3,text,"Finally, biogenic AgNPs derived from Chrysanthemum morifolium have been added to clinical ultrasound gel. In the study, the gel was used on an ultrasound probe, and the bactericidal activity and instr","[135, 517, 1086, 629]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,4,paragraph_title,2.1.2. Antifungal activity,"[208, 687, 469, 716]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.1.2. Antifungal activity""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
10,5,text,"Several studies have described anti-fungal activity of biosynthesized NPs. Gajbhyie et al. described antifungal properties of biosynthesized NPs against Phoma glomerata, Phoma herbarum, Fusarium semit","[135, 769, 1088, 1130]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,6,text,Antifungal activity of biosynthesized AuNPs has also been described. Das et al. [40] synthesized AuNPs on the surface of fungus Rhizopus oryzae and demonstrated growth inhibition of G- and G+ bacteria,"[136, 1141, 1088, 1336]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,7,number,9,"[1068, 1394, 1084, 1416]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,0,doc_title,ACCEPTED MANUSCRIPT,"[385, 32, 839, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
11,1,paragraph_title,2.1.3. Antiviral activity,"[209, 144, 452, 171]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.1.3. Antiviral activity""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
11,2,text,"Although viruses also represent serious problems in medicine or agriculture, there have been relatively few reports of antiviral activity of biosynthesized NPs. Vijayakumar and Prasad [42] described a","[136, 224, 1087, 418]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,3,text,"In another study, De Gusseme et al. [43] described virus inhibition by zero-valent cerium produced by aqueous Ce(III) amended to Leptothrix discophora and Pseudomonas putida cultures. As-prepared ceri","[135, 431, 1088, 874]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,4,paragraph_title,2.1.4. Anti-parasite applications,"[208, 933, 534, 961]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.1.4. Anti-parasite applications""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
11,5,text,Biosynthesized NPs are effective against various disease-causing insects or parasites. Santhoshkumar et al. [46] compared larvicidal activity of AgNPs biosynthesized using different lotus leaf (Nelumb,"[135, 1012, 1087, 1291]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,6,text,"In another study, the larvicidal properties of AgNPs biosynthesized with henna (Lawsonia inermis) leaf extract was determined for human head louse Pediculus humanus capitis and sheep","[137, 1302, 1087, 1373]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,7,number,10,"[1057, 1395, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
12,1,text,"body louse, Bovicola ovis [48]. The study determined lousicidal activity using both a direct contact method (P. humanus) and an impregnated filter paper method (B. ovis). Finally, acaricidal activity ","[135, 145, 1087, 298]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,2,paragraph_title,2.2. Drug delivery and cancer treatment,"[172, 357, 607, 384]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.2. Drug delivery and cancer treatment""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
12,3,text,"Biosynthesized NPs can interact with and alter the function of certain mammalian tissues. For example, metallic NPs can interfere with the antioxidant defense mechanism leading to accumulation of reac","[134, 438, 1088, 1006]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,4,paragraph_title,2.2.1. Biocompatibility,"[208, 1063, 449, 1092]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.2.1. Biocompatibility""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
12,5,text,"Whenever NPs are used for in vivo applications, biocompatibility with normal tissue is an important consideration. Moulton et al. [51] described biosynthesis of AgNPs using tea leaf extract as a reduc","[136, 1145, 1088, 1380]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,6,number,11,"[1057, 1395, 1084, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
13,1,text,biosynthesized AgNPs may be attributed to the antioxidant effect of polyphenol and flavonoid surfactants.,"[136, 144, 1087, 213]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,2,text,"Kumar et al. [20] described the blood compatibility of AuNPs synthesized with ginger (Zingiber officinale) extract. Upon contact with human blood, these AuNPs were shown to be non-platelet activating,","[135, 228, 1088, 423]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,3,paragraph_title,2.2.2. Anti-cancer NPs,"[208, 481, 448, 508]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.2.2. Anti-cancer NPs""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
13,4,text,Cytotoxicology studies against various cancer cell lines have been described for biosynthesized NPs. Amarnath et al. [52] published experiments using AuNPs synthesized using phytochemicals present in ,"[135, 562, 1089, 963]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,5,text,"In contrast, other reports have demonstrated anti-cancer effects from AgNPs. Biosynthesis of anti-tumor AgNPs using Piper longum leaf as a reducing and capping agent was reported by Jacob et al. [55].","[134, 976, 1089, 1377]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,6,number,12,"[1057, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
14,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
14,1,text,performed using stem latex of Euphorbia nivulia [50]. This study concluded that copper NPs are toxic to A549 (human lung carcinoma) cells in a dose-dependent manner.,"[135, 145, 1086, 214]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,2,text,"Recently, the anti-metastatic activity of biologically synthesized AuNPs was reported for the human fibrosarcoma cell line HT-1080 [59]. Although the biosynthesized AuNPs had no toxic effects on HT-10","[135, 228, 1087, 380]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,3,paragraph_title,2.2.3. NP drug carriers,"[208, 439, 447, 467]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.2.3. NP drug carriers""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
14,4,text,"Magnetosomes are naturally-occurring metallic nanoparticles found in some species of magnetotactic bacteria. These chains are membranous prokaryotic structures, and are comprised of approximately 20 m","[135, 519, 1088, 1090]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,5,text,Another drug delivery study employed porphyran from marine algae $ Porphyra\ vietnamensis $ as a reducing and capping agent for biosynthesis of AuNPs [62]. These NPs were used as a carrier for DOX. T,"[135, 1099, 1088, 1293]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,6,paragraph_title,2.3. Medical diagnostics and sensors,"[171, 1354, 567, 1381]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.3. Medical diagnostics and sensors""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
14,7,number,13,"[1057, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
15,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
15,1,text,Biosynthesized NPs are also making important contributions to medicine in the sensing and diagnostics areas (Table 4). These materials have been successfully incorporated into chemical sensors that ca,"[135, 145, 1089, 465]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,2,text,Hydrogen peroxide has been acknowledged as a diagnostic marker of oxidative stress playing an important role in asthma or chronic obstructive pulmonary disease (COPD). Wang et al. [65] constructed a h,"[135, 477, 1088, 877]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,3,text,Other authors also used a GCE modified with biosynthesized nanoparticles for electrochemical sensing. Zheng et al. [66] synthesized Au-Ag alloy NPs using yeast cells and demonstrated an enhanced elect,"[135, 890, 1088, 1125]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,4,text,"Another possible medical application of biogenic AuNPs was proposed and tested by MubarakAli et al. [67], who suggested that conjugation of DNA with biosynthesized nanoparticles can be used for diagno","[135, 1137, 1087, 1250]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,5,paragraph_title,2.4. Medical imaging applications,"[171, 1309, 541, 1338]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.4. Medical imaging applications""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
15,6,number,14,"[1057, 1395, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
16,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
16,1,text,"The optical properties of metallic nanocrystals have been of interest for centuries. Incorporation of biosynthesis methods has made possible the preparation of metal NPs with a range of sizes, shapes ","[135, 145, 1089, 424]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,2,text,AuNPs biosynthesis by silica-encapsulated micro-algae Klebsormidium flaccidum leads to formation of a “living” bio-hybrid material [70]. Researchers have used Raman spectroscopy for in situ imaging of,"[135, 435, 1088, 629]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,3,text,Blue orange light emission from biosynthesized AgNPs was reported by Fayaz et al. [71]. Fungal mediated AgNPs were prepared using a Trichoderma viride filtrate. Photoluminescence measurements after la,"[134, 640, 1088, 836]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,4,text,An important problem of modern laser medicine is the extensive exposure of the vulnerable tissues outside of the operational field. This problem can be solved by placing dyes capable of reversible dar,"[135, 849, 1089, 1375]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,5,number,15,"[1057, 1394, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
17,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
17,1,text,immediate employment as coatings in medicine or industry (e.g. to protect eyes from damage caused by exposure to focused beams and lasers).,"[135, 145, 1086, 214]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,2,text,"Fayaz et al. [76] biosynthesized AuNPs using Maduca longifolia extract and showed strong near infrared (NIR) absorption. Although some applications are not directly medical in nature, such as energy-s","[135, 228, 1087, 381]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,3,text,The same research team published two additional studies describing cadmium telluride quantum dots (CdTeQDs) fabricated via extracellular synthesis using Saccharomyces cerevisiae [78] and Escherichia c,"[135, 393, 1087, 753]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,4,text,"Finally, a study using Brevibacterium casei for the biosynthesis of CdSNPs [80] showed the NPs exhibit fluorescence emission even after immobilization within a polyhydroxybutyrate matrix.","[135, 765, 1087, 875]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,5,paragraph_title,2.5. Other medical applications,"[172, 937, 517, 964]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.5. Other medical applications""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
17,6,text,Several studies have also shown biosynthesized NPs have potential applications for the treatment of other diseases including diabetes and bleeding disorders. Biosynthesized AuNPs have been shown in vi,"[135, 1017, 1088, 1378]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,7,number,16,"[1057, 1394, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
18,0,doc_title,ACCEPTED MANUSCRIPT,"[385, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
18,1,text,Free radical scavenging activity was demonstrated by Muthuvel et al. [83]. Au-NPs biosynthesized by means of Solanum nigrum were tested for the scavenging effect on 101-diphenyl-2-picrylhydrazyl radic,"[135, 145, 1088, 422]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,2,text,"Finally, Gopinath et al. [85] described enhanced mitotic cell division and pollen germination activity caused by AuNPs synthesized using Terminalia arjuna leaf extract. These studies demonstrate the w","[136, 434, 1089, 629]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,3,paragraph_title,3. Environmental remediation applications,"[136, 701, 615, 730]",section_heading,0.85,"[""paragraph_title label with numbering: 3. Environmental remediation applications""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
18,4,paragraph_title,"3.1. Metal biosorption, bioremediation and biorecovery","[171, 793, 762, 821]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.1. Metal biosorption, bioremediation and biorecovery""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
18,5,text,Oxidation-reduction processes are universally used for cellular metabolism; therefore biomolecules with the ability to reduce or oxidize other chemical compounds are abundant in any living cell. Many ,"[135, 874, 1088, 1233]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,6,text,"The biomass of algae, fungi, bacteria, and yeast along with some biopolymers and biowaste materials are known to bind and concentrate precious metals [87]. This so-called biosorption process can repre","[136, 1246, 1087, 1358]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,7,number,17,"[1057, 1394, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
19,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
19,1,text,of various dissolved metals from aqueous solution. The mechanisms involved in binding and concentrating metals by microbes have been extensively studied in natural environments [87].,"[135, 144, 1086, 215]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,2,text,"Chakraborty et al. [88] demonstrated the ability of cyanobacteria and algae to bind and concentrate Au and form AuNPs. The NP formation process is specific to a particular genus, and they described NP","[135, 229, 1088, 463]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,3,text,Dead biomass of the macrofungus Pleurotus platypus was used for biosorption of Ag in a study by Das et al. [90]. Fungal biomass exhibited the highest Ag uptake of 46.7 mg g⁻¹ at pH 6.0 in the presence,"[135, 476, 1088, 755]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,4,text,"An example of platinum recovery by polyethyleneimine (PEI)-modified biomass was described by Won et al. [92]. In this study, PEI was attached to the surface of E. coli biomass and the resulting materi","[135, 766, 1088, 1002]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,5,text,Toxic concentrations of naturally-occurring arsenic in drinking water are a major public health problem in Southeast Asia. Selvakumar et al. [94] described a promising solution to this problem through,"[135, 1014, 1088, 1249]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,6,text,"Hexavalent chromium compounds are dangerous toxins, while Cr(III) ions and compounds are relatively non-toxic. Bare living cells of Shewanella algae, Pseudomonas putida and Desulfovibrio vulgaris have","[136, 1263, 1088, 1375]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,7,number,18,"[1057, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
20,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
20,1,text,on biosynthesized PdNPs to catalytically reduce chromium. (See section 3.4 on catalytic Cr(VI) reduction.),"[135, 144, 1087, 213]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
20,2,paragraph_title,3.2. Coupling biosorption with catalytic contaminant degradation,"[171, 275, 867, 303]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.2. Coupling biosorption with catalytic contaminant degrada""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
20,3,text,"Due to their large surface area per weight, metallic NPs are widely used for catalysis, and in particular, for heterogeneous catalysis. Metallic NPs offer selectivity, high activity and stability. The","[135, 355, 1088, 799]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
20,4,paragraph_title,3.3. Catalytic degradation of organic pollutants,"[171, 857, 681, 885]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3. Catalytic degradation of organic pollutants""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
20,5,paragraph_title,3.3.1. Catalytic dehalogenation,"[209, 961, 525, 989]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.1. Catalytic dehalogenation""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
20,6,text,Palladium-based catalysts are able to dehalogenate aromatic compounds. This reaction is very important for organic synthesis in research and industry and also for contaminant remediation. Halogenated ,"[136, 1040, 1088, 1319]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
20,7,number,19,"[1057, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
21,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
21,1,text,"polychlorinated biphenyls (PCBs), a compound formerly used in electronic devices and as coolants, lubricants, and plasticizers.","[135, 145, 1086, 215]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,2,text,"Baxter-Plant et al. [99, 100] described dehalogenation of chlorophenol (CP) and selected PCB congeners including 4-chlorobiphenyl, 2,4,6-trichlorobiphenyl, 2,3,4,5-tetrachlorobiphenyl and 2,2',4,4',6,","[136, 228, 1089, 506]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,3,text,Shewanella oneidensis is another strain of bacteria that has been used to biosynthesize PdNPs for dehalogenation of PCB and other chlorinated organic compounds. De Windt et al. described PdNPs precipi,"[135, 516, 1088, 795]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,4,text,"In a follow-on report, De Windt et al. [103] performed a detailed assessment of the bioreduction process and its conditions. In particular, these authors investigated the factors influencing the parti","[134, 806, 1088, 1084]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,5,text,"Macaskie et al. [104] extensively studied catalytic dechlorination of 2-chlorophenol, pentachlorophenol, and various PCB congeners by palladized cells of Desulfovibrio and Escherichia coli. Redwood et","[135, 1096, 1088, 1376]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,6,number,20,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
22,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
22,1,text,Other studies have demonstrated the use of palladized cells for dechlorination of the common groundwater contaminant trichlorethylene (TCE). Hennebel et al. described two reactor geometries for cataly,"[135, 146, 1089, 423]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
22,2,text,Other authors used Fe and Fe/Pd NPs biosynthesized with tea extract (Camellia sinensis) then immobilized in polymer membranes for catalytic degradation of TCE [109]. These authors found the reaction r,"[134, 435, 1090, 755]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
22,3,text,Biosynthesized PdNPs can also catalytically dehalogenate brominated organic compounds. Harrad et al. demonstrated that palladized D. desulfuricans are able to catalytically dehalogenate polybrominated,"[135, 765, 1088, 1124]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
22,4,text,"Two studies have demonstrated biosynthesized NPs can remediate diatrizic acid (or diatrizoate), a radiocontrast agent. Hennebel et al. [112] demonstrated PdNPs encapsulated on PVDF membranes effective","[135, 1137, 1088, 1373]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
22,5,number,21,"[1055, 1394, 1084, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
23,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
23,1,text,reduction and by catalytic reduction using the hydrogen produced at the cathode of the microbial electrolysis cell.,"[135, 144, 1086, 213]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,2,paragraph_title,3.3.2. Catalytic 4-nitrophenol degradation,"[208, 275, 630, 303]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.2. Catalytic 4-nitrophenol degradation""]",sub_subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
23,3,text,"The rapid development and use of synthetic pesticides, dyes, explosives and pharmaceuticals in the middle of the last century has resulted in a legacy of toxic nitro-aromatic contamination in soil and","[135, 355, 1088, 632]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,4,text,The first report of PNP reduction employing biosynthesized NPs was published by Sharma et al. [114] Seedlings of the plant Sesbania drummondii were grown in a hydrogen tetrachloroaurate solution and s,"[134, 644, 1088, 797]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,5,text,"Subsequently, others have used plant materials to biosynthesize noble metal NPs for catalytic PNP reduction. Huang et al. [115] carried out an extensive study using 21 species of traditional Chinese m","[134, 810, 1088, 1171]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,6,text,Bacteria have also been used for biosynthesis of bimetallic Pd/AuNPs for PNP reduction. Hosseinkhani et al. [117] formed bio-supported Pd(0) and Au(0) NPs on the surface of Cupriavidus necator cells. ,"[136, 1182, 1088, 1336]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,7,number,22,"[1055, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
24,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
24,1,text,"core-shell structure, they exhibited superior catalytic efficiency in PNP conversion compared with monometallic NPs.","[135, 144, 1087, 214]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
24,2,text,Catalytic PNP reduction has also been done using animal-derived materials for biosynthesis of NPs. Jia et al. [118] described AgNP biosynthesis and immobilization using a cuttlebone-derived organic ma,"[135, 228, 1088, 590]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
24,3,paragraph_title,3.3.3. Catalytic treatment of other aqueous organic compounds,"[208, 647, 831, 675]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.3. Catalytic treatment of other aqueous organic compound""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
24,4,text,"Other organic compounds have been effectively reduced using biosynthesized NPs. Iron and gold NPs have been used to catalytically remove dyes from aqueous solutions. In one study, FeNPs biosynthesized","[134, 725, 1089, 1297]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
24,5,text,"Finally, Forrez et al. [124] used biosynthesized PdNPs in a membrane reactor to remove micropollutants such as ibuprofen (>95%), diclofenac (86%), mecoprop (81%), and triclosan","[136, 1307, 1088, 1378]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
24,6,number,23,"[1055, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
25,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
25,1,text,(>78%) from the secondary effluent of a sewage treatment plant. The authors suggested that the removal mechanisms could include chemical oxidation by PdNPs and/or biological removal by Pseudomonas put,"[135, 144, 1087, 256]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,2,paragraph_title,3.4. Catalytic Cr(VI) reduction,"[171, 357, 514, 384]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.4. Catalytic Cr(VI) reduction""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
25,3,text,Another important environmental application for biosynthesized NPs is the catalytic reduction of the powerful oxidant Cr(VI) to the relatively non-toxic valence state Cr(III). Several recent studies h,"[135, 437, 1089, 1006]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,4,text,"Unlike the previous experiments, all carried out under batch conditions, Humphries et al. [127] reported a continuous flow system for Cr(VI)/Cr(III) reduction. In this study, biosupported PdNPs formed","[134, 1016, 1089, 1337]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,5,number,24,"[1055, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
26,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
26,1,text,Beauregard et al. [130] used a biofilm-forming bacteria species Serratia sp. to mediate adherence of bio-PdNPs to porous polyurethane foam. The foam was used as a scaffold for the catalyst and support,"[135, 145, 1088, 547]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,2,paragraph_title,3.5. Biosynthesized NPs to enhance membrane treatment processes,"[171, 606, 880, 634]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.5. Biosynthesized NPs to enhance membrane treatment proces""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
26,3,text,"Technologies to reduce biofouling can greatly enhance the performance of membrane-based water treatment processes. Zhang et al. [132], showed different amounts of biogenic AgNPs formed by Lactobacillu","[135, 686, 1088, 1004]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,4,paragraph_title,4. Industrially important applications,"[136, 1076, 553, 1106]",section_heading,0.85,"[""paragraph_title label with numbering: 4. Industrially important applications""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
26,5,paragraph_title,4.1. Catalytic organic synthesis,"[174, 1184, 514, 1211]",subsection_heading,0.85,"[""paragraph_title label with numbering: 4.1. Catalytic organic synthesis""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
26,6,text,"Cheap and specific catalysts for commercially-important organic synthesis reactions including hydrogenation, cross-coupling reactions, and epoxidation are extremely important in industry.","[136, 1264, 1085, 1334]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,7,number,25,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
27,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
27,1,text,"Biosynthesized palladium, gold, and platinum catalysts have been used successfully in several different organic synthesis pathways (see Table 10).","[136, 144, 1087, 215]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,2,text,Creamer et al. [133] used palladized cells of bacterial strains D. desulfuricans (G-) and Bacillus sphaericus (G+) for catalytic hydrogenation of itaconic (or methylenesuccinic) acid. Comparisons perf,"[135, 228, 1088, 629]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,3,text,"Creamer et al. [136] demonstrated the use of biosynthesized PdNPs to catalyze non-aqueous hydrogenation. D. desulfuricans and B. sphaericus produced palladium catalyst, which catalyzed hydrogenation o","[135, 641, 1087, 794]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,4,text,"Unlike the aforementioned studies, Jia et al. [137] published a method for PdNPs biosynthesis that does not require the $ H_{2} $ donor. Biosynthetic PdNPs were formed by the reduction of palladium c","[135, 807, 1089, 1043]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,5,text,"Biosynthesized NPs have been used to catalyze cross-coupling reactions (i.e., C-C bond formation). Sobjerg et al. [138] showed palladized bacteria Cupriavidus necator, Pseudomonas putida and Staphyloc","[135, 1056, 1089, 1375]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,6,number,26,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
28,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
28,1,text,"In addition to palladium, biosynthesized gold and platinum NPs have been used to catalyze other organic synthesis reactions. Du et al. [141] used biosynthesized AuNPs to catalyze propylene epoxidation","[135, 145, 1088, 669]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
28,2,text,"Finally, biosynthesized PtNPs have been used to catalyze synthesis of the organic dye antipyrilquinoneimine from aniline and 4-aminoantipyrine in acidic aqueous solution [144]. In this report, honey-m","[135, 682, 1087, 835]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
28,3,paragraph_title,4.2. Energy-related applications,"[171, 894, 525, 923]",subsection_heading,0.85,"[""paragraph_title label with numbering: 4.2. Energy-related applications""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
28,4,text,The ability of different organisms to reduce and absorb precious metal salts and form NPs has been used to enhance several aspects of fuel cell performance. Biogenic NPs have been used to produce $ H,"[134, 976, 1088, 1128]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
28,5,text,"Several investigators have used biosynthesized PdNPs for H₂ production. Bunge et al. [101] used three species of bacteria (Cupriavidus necator, Pseudomonas putida, and Paracoccus denitrificans) to bio","[135, 1141, 1088, 1378]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
28,6,number,27,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
29,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
29,1,text,"precious metal nanocatalyst, and bio-hydrogen production. These authors also described how E. coli with modified hydrogenase and dehydrogenase regulation could be used to further enhance performance.","[135, 145, 1087, 256]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,2,text,Biosynthesized NPs have been incorporated into fuel cells to catalyze chemical reactions and in electrode construction. Yong et al. [147] bioaccumulated Pt and Pd as NPs using Desulfovibrio desulfuric,"[135, 268, 1088, 629]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,3,text,"Orozco et al. [150] studied the ability of PdNPs biosynthesized by two different strains of E. coli to both produce hydrogen via fermentation, and also to convert $ H_{2} $ into energy in a fuel cell","[135, 640, 1088, 918]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,4,text,Yong et al. [151] described the coupling of waste biorefining with fuel cell power generation using biosynthesis to recover precious metals and to form nanocatalysts. Palladium was biorecovered from i,"[136, 930, 1087, 1128]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,5,paragraph_title,4.3. Electrodes and sensors,"[174, 1185, 473, 1212]",subsection_heading,0.85,"[""paragraph_title label with numbering: 4.3. Electrodes and sensors""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
29,6,text,"Fundamental electrochemical phenomena can be better understood through nanoscale science and nanotechnology, and performance of electrodes and sensors can be altered or enhanced using biosynthesized n","[136, 1265, 1087, 1377]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,7,number,28,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
30,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
30,1,text,"studied in detail, including their surface chemistry, biological compatibility, and electrical conductivity. For nanoelectrochemical applications, special attention has been paid to AuNPs because they","[135, 145, 1089, 422]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,2,text,"Several studies have examined the electrical transmission properties of biosynthesized NPs incorporated into electrodes. In one study, dried whole plant extract from Scutellaria barbata was used for b","[134, 435, 1088, 960]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,3,text,Various electrochemical sensing applications can make use of the unique properties of biosynthesized NPs. Jha and Prasad [155] introduced a biosynthetic method to prepare ferroelectric $ BaTiO_{3} $ ,"[134, 974, 1088, 1333]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,4,number,29,"[1056, 1394, 1085, 1416]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
31,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
31,1,text,"electrophoretic mobility, and dispersion of cell conductivity for yeast cells Candida albicans with Ag precipitate prepared using the reducer hydrazine.","[136, 144, 1087, 215]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,2,text,Du et al. [158] introduced the bioreduction of Au by E. coli cells and their application on direct electrochemical sensing of hemoglobin. Biosynthesized AuNPs bound to the surface of the bacterial cel,"[135, 229, 1089, 546]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,3,text,Biosynthesized CdSNPs have also been used to fabricate a heterojunction with asymmetric electronic transfer properties [159]. Semiconducting wurtzite-type structured NPs were prepared using Schizosacc,"[135, 558, 1088, 837]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,4,text,Biogenic AuNPs in polyvinyl alcohol- $ KH_{2}PO_{4} $ films were used by Uddin et al. [160] to ameliorate the percolative behavior of these nanocomposite films and to generate high dielectric permitti,"[135, 849, 1088, 1002]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,5,text,The unique optical properties of metallic nanoparticles can be also used for chemical sensing. AuNPs and AgNPs reduced using the tomato extract (Solanum lycopersicum) were used for detection of metall,"[135, 1014, 1088, 1166]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,6,number,30,"[1057, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
32,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 839, 68]",noise,0.9,"[""header label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
32,1,paragraph_title,5. Applications for magnetically responsive NPs,"[134, 145, 668, 175]",section_heading,0.85,"[""paragraph_title label with numbering: 5. Applications for magnetically responsive NPs""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
32,2,text,Magnetotactic bacteria have a natural ability to synthesize magnetite NPs (MNPs) that are useful for various applications (Table 13). Only certain NP forms are synthesized spontaneously by magnetotact,"[135, 235, 1088, 430]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,3,text,"The yield and properties of MNPs can be manipulated and optimized to suit a particular purpose. Kundu et al. [167] described changes in magnetosome size, number, and alignment with biosynthesis perfor","[134, 443, 1089, 1013]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,4,text,Telling et al. [172] employed MNPs to catalyze Cr(VI) reduction (see also section 3.4). MNPs were biosynthesized by Geobacter sulfurreducens and the reduction of Cr(VI) to Cr(III) at sites within the ,"[134, 1022, 1088, 1343]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,5,number,31,"[1056, 1394, 1084, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
33,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
33,1,text,One key advantage of MNPs is the ease of collection and recovery. Magnetic properties can also ensure particles remain dispersed and distributed throughout a reaction vessel. Coker et al. [174] employ,"[135, 145, 1088, 382]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,2,paragraph_title,6. Biosynthesis of unique formulations and geometries,"[135, 453, 740, 483]",section_heading,0.85,"[""paragraph_title label with numbering: 6. Biosynthesis of unique formulations and geometries""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
33,3,text,"The properties and potential applications of nano-scale materials are determined by their chemical composition, crystal structure, particle size, and particle shape. Several studies have described bio","[135, 545, 1088, 699]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,4,text,NPs with certain chemical compositions have been difficult to synthesize using conventional chemical methods. Ahmad et al. [176] described fungal biosynthesis of transparent p-type conducting oxide $,"[135, 710, 1089, 1070]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,5,text,Creation of metal alloys by casting requires heavy equipment and high temperatures. Bottom-up biosynthesis of AuAgCu alloys by Brassica juncea seed was introduced by Haverkamp et al. [178] Similar s,"[135, 1083, 1087, 1278]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,6,text,NP biosynthesis can also result in NPs with various useful shapes. Ankamwar et al. [182] described the phytosynthesis of Au nanotriangles using tamarind (Tamarindus indica) leaf,"[136, 1289, 1088, 1359]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,7,number,32,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
34,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
34,1,text,"extract. The authors measured the electrical conductivity of these triangular NPs in different organic solvents, and suggested a possible chemical vapor sensor application. The biosynthesis of Ag nano","[136, 145, 1089, 504]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
34,2,text,Sathish Kumar et al. [184] biosynthesized Au NPs by means of yeast Hansenula anomala and its extract. These AuNPs were further stabilized by addition of two different types of poly(amido amine) dendri,"[136, 518, 1088, 669]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
34,3,paragraph_title,7. Future outlook of biosynthesized NPs,"[136, 743, 584, 771]",section_heading,0.85,"[""paragraph_title label with numbering: 7. Future outlook of biosynthesized NPs""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
34,4,text,"This review highlights the key medical, environmental, and industrial applications of biosynthesized NPs. The natural machinery of all biological systems to execute redox reactions with specificity, i","[135, 834, 1089, 1194]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
34,5,text,"Biosynthesized NPs have been used in nearly every field where traditional NPs have been employed. One of the challenges of biogenic NPs is separation of NPs from the biological material. In addition, ","[136, 1206, 1087, 1362]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
34,6,number,33,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
35,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,unknown_like,short_fragment,False,True
35,1,text,"Considering the volume and growth in NP biosynthesis research in recent years, the field appears to be on the threshold of much more widespread and intensive research into applications. Meanwhile, fur","[135, 144, 1086, 298]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
35,2,paragraph_title,Acknowledgements,"[136, 351, 360, 379]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
35,3,text,This book chapter was supported by the Grant Agency of the Czech Republic (grant number P302/12/G157) and by the Charles University in Prague (projects UNCE 204022 and Prvouk/1LF/1). This publication ,"[135, 411, 1088, 646]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
35,4,paragraph_title,REFERENCES,"[173, 707, 369, 736]",reference_heading,0.9,"[""references heading: REFERENCES""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
35,5,reference_content,"[1] Pérez-de-Mora A, Burgos P, Madejón E, Cabrera F, Jaeckel P, Schloter M. Microbial community structure and function in a soil contaminated by heavy metals: effects of plant growth and different ame","[135, 756, 1086, 864]",reference_item,0.85,"[""reference content label: [1] P\u00e9rez-de-Mora A, Burgos P, Madej\u00f3n E, Cabrera F, Jaeckel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
35,6,reference_content,"[2] Ahmad A, Mukherjee P, Senapati S, Mandal D, Khan MI, Kumar R, et al. Extracellular biosynthesis of silver nanoparticles using the fungus Fusarium oxysporum. Colloids Surf B Biointerfaces 2003;28:3","[137, 879, 1086, 989]",reference_item,0.85,"[""reference content label: [2] Ahmad A, Mukherjee P, Senapati S, Mandal D, Khan MI, Kum""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
35,7,reference_content,"[3] Thakkar KN, Mhatre SS, Parikh RY. Biological synthesis of metallic nanoparticles. Nanomedicine-Nanotechnology Biology and Medicine 2010;6:257-62.","[137, 1003, 1082, 1072]",reference_item,0.85,"[""reference content label: [3] Thakkar KN, Mhatre SS, Parikh RY. Biological synthesis o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
35,8,reference_content,"[4] Narayanan KB, Sakthivel N. Biological synthesis of metal nanoparticles by microbes. Adv Colloid Interface Sci 2010;156:1-13.","[138, 1086, 1084, 1155]",reference_item,0.85,"[""reference content label: [4] Narayanan KB, Sakthivel N. Biological synthesis of metal""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
35,9,reference_content,"[5] Chaloupka K, Malam Y, Seifalian AM. Nanosilver as a new generation of nanoproduct in biomedical applications. Trends Biotechnol 2010;28:580-8.","[137, 1169, 1085, 1238]",reference_item,0.85,"[""reference content label: [5] Chaloupka K, Malam Y, Seifalian AM. Nanosilver as a new ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
35,10,reference_content,"[6] Alanazi FK, Radwan AA, Alsarra IA. Biopharmaceutical applications of nanogold. Saudi Pharmaceutical Journal 2010;18:179-93.","[137, 1251, 1084, 1319]",reference_item,0.85,"[""reference content label: [6] Alanazi FK, Radwan AA, Alsarra IA. Biopharmaceutical app""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
35,11,number,34,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
36,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
36,1,reference_content,"[7] Patra CR, Bhattacharya R, Mukhopadhyay D, Mukherjee P. Fabrication of gold nanoparticles for targeted therapy in pancreatic cancer. Adv Drug Del Rev 2010;62:346-61.","[137, 142, 1084, 212]",reference_item,0.85,"[""reference content label: [7] Patra CR, Bhattacharya R, Mukhopadhyay D, Mukherjee P. F""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,2,reference_content,"[8] Pankhurst QA, Connolly J, Jones SK, Dobson J. Applications of magnetic nanoparticles in biomedicine. J Phys D: Appl Phys 2003;36:R167.","[137, 225, 1084, 296]",reference_item,0.85,"[""reference content label: [8] Pankhurst QA, Connolly J, Jones SK, Dobson J. Applicatio""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,3,reference_content,"[9] Pankhurst QA, Thanh NTK, Jones SK, Dobson J. Progress in applications of magnetic nanoparticles in biomedicine. J Phys D: Appl Phys 2009;42:224001.","[137, 308, 1083, 378]",reference_item,0.85,"[""reference content label: [9] Pankhurst QA, Thanh NTK, Jones SK, Dobson J. Progress in""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,4,reference_content,"[10] Rai M, Yadav A, Gade A. Silver nanoparticles as a new generation of antimicrobials. Biotechnol Adv 2009;27:76-83.","[137, 391, 1082, 460]",reference_item,0.85,"[""reference content label: [10] Rai M, Yadav A, Gade A. Silver nanoparticles as a new g""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,5,reference_content,"[11] Marambio-Jones C, Hoek EMV. A review of the antibacterial effects of silver nanomaterials and potential implications for human health and the environment. J Nanopart Res 2010;12:1531-51.","[136, 472, 1085, 582]",reference_item,0.85,"[""reference content label: [11] Marambio-Jones C, Hoek EMV. A review of the antibacteri""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,6,reference_content,"[12] Cui Y, Zhao Y, Tian Y, Zhang W, Lü X, Jiang X. The molecular mechanism of action of bactericidal gold nanoparticles on Escherichia coli. Biomaterials 2012;33:2327-33.","[137, 598, 1087, 668]",reference_item,0.85,"[""reference content label: [12] Cui Y, Zhao Y, Tian Y, Zhang W, L\u00fc X, Jiang X. The mole""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,7,reference_content,"[13] Vigneshwaran N, Kathe AA, Varadarajan PV, Nachane RP, Balasubramanya RH. SilverProtein (CoreShell) Nanoparticle Production Using Spent Mushroom Substrate. Langmuir 2007;23:7113-7.","[136, 680, 1084, 792]",reference_item,0.85,"[""reference content label: [13] Vigneshwaran N, Kathe AA, Varadarajan PV, Nachane RP, B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,8,reference_content,"[14] Raheman F, Deshmukh S, Ingle A, Gade A, Rai M. Silver Nanoparticles: Novel Antimicrobial Agent Synthesized from an Endophytic Fungus Pestalotia sp. Isolated from leaves of Syzygium cumini (L). Na","[136, 805, 1086, 918]",reference_item,0.85,"[""reference content label: [14] Raheman F, Deshmukh S, Ingle A, Gade A, Rai M. Silver N""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,9,reference_content,"[15] Sadhasivam S, Shanmugam P, Yun K. Biosynthesis of silver nanoparticles by Streptomyces hygroscopicus and antimicrobial activity against medically important pathogenic microorganisms. Colloids Sur","[136, 930, 1085, 1041]",reference_item,0.85,"[""reference content label: [15] Sadhasivam S, Shanmugam P, Yun K. Biosynthesis of silve""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,10,reference_content,"[16] Sadhasivam S, Shanmugam P, Veerapandian M, Subbiah R, Yun K. Biogenic synthesis of multidimensional gold nanoparticles assisted by Streptomyces hygroscopicus and its electrochemical and antibacte","[136, 1053, 1086, 1165]",reference_item,0.85,"[""reference content label: [16] Sadhasivam S, Shanmugam P, Veerapandian M, Subbiah R, Y""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,11,reference_content,"[17] Merin DD, Prakash S, Bhimba BV. Antibacterial screening of silver nanoparticles synthesized by marine micro algae. Asian Pac J Trop Med 2010;3:797-9.","[136, 1176, 1086, 1248]",reference_item,0.85,"[""reference content label: [17] Merin DD, Prakash S, Bhimba BV. Antibacterial screening""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,12,reference_content,"[18] Venkatpurwar V, Pokharkar V. Green synthesis of silver nanoparticles using marine polysaccharide: Study of in-vitro antibacterial activity. Mater Lett 2011;65:999-1002.","[137, 1260, 1086, 1330]",reference_item,0.85,"[""reference content label: [18] Venkatpurwar V, Pokharkar V. Green synthesis of silver ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
36,13,number,35,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
37,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
37,1,reference_content,"[19] Abdel-Raouf N, Al-Enazi NM, Ibraheem IBM. Green biosynthesis of gold nanoparticles using Galaxaura elongata and characterization of their antibacterial activity. Arab J Chem.","[137, 142, 1085, 212]",reference_item,0.85,"[""reference content label: [19] Abdel-Raouf N, Al-Enazi NM, Ibraheem IBM. Green biosynt""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,2,reference_content,"[20] Kumar KP, Paul W, Sharma CP. Green synthesis of gold nanoparticles with Zingiber officinale extract: Characterization and blood compatibility. Process Biochem 2011;46:2007-13.","[137, 225, 1086, 296]",reference_item,0.85,"[""reference content label: [20] Kumar KP, Paul W, Sharma CP. Green synthesis of gold na""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,3,reference_content,"[21] Vaseeharan B, Ramasamy P, Chen JC. Antibacterial activity of silver nanoparticles (AgNps) synthesized by tea leaf extracts against pathogenic Vibrio harveyi and its protective efficacy on juvenil","[136, 309, 1086, 420]",reference_item,0.85,"[""reference content label: [21] Vaseeharan B, Ramasamy P, Chen JC. Antibacterial activi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,4,reference_content,"[22] Satyavani K, Ramanathan T, Gurudeeban S. Green Synthesis Of Silver Nanoparticles By Using Stem Derived Callus Extract Of Bitter Apple (Citrullus colocynthis). Digest Journal of Nanomaterials and ","[136, 432, 1087, 543]",reference_item,0.85,"[""reference content label: [22] Satyavani K, Ramanathan T, Gurudeeban S. Green Synthesi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,5,reference_content,"[23] Kaviya S, Santhanalakshmi J, Viswanathan B, Muthumary J, Srinivasan K. Biosynthesis of silver nanoparticles using citrus sinensis peel extract and its antibacterial activity. Spectrochimica Acta ","[137, 555, 1087, 668]",reference_item,0.85,"[""reference content label: [23] Kaviya S, Santhanalakshmi J, Viswanathan B, Muthumary J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,6,reference_content,"[24] Nagajyothi PC, Lee KD. Synthesis of Plant-Mediated Silver Nanoparticles Using Dioscorea batatas Rhizome Extract and Evaluation of Their Antimicrobial Activities. Journal of Nanomaterials 2011;201","[136, 680, 1087, 792]",reference_item,0.85,"[""reference content label: [24] Nagajyothi PC, Lee KD. Synthesis of Plant-Mediated Silv""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,7,reference_content,"[25] Ghosh S, Patil S, Ahire M, Kitture R, Kale S, Pardesi K, et al. Synthesis of silver nanoparticles using Dioscorea bulbifera tuber extract and evaluation of its synergistic potential in combinatio","[135, 805, 1086, 917]",reference_item,0.85,"[""reference content label: [25] Ghosh S, Patil S, Ahire M, Kitture R, Kale S, Pardesi K""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,8,reference_content,"[26] Kumar KM, Mandal BK, Sinha M, Krishnakumar V. Terminalia chebula mediated green and rapid synthesis of gold nanoparticles. Spectrochimica Acta Part A: Molecular and Biomolecular Spectroscopy 2011","[135, 930, 1086, 1040]",reference_item,0.85,"[""reference content label: [26] Kumar KM, Mandal BK, Sinha M, Krishnakumar V. Terminali""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,9,reference_content,"[27] MubarakAli D, Thajuddin N, Jeganathan K, Gunasekaran M. Plant extract mediated synthesis of silver and gold nanoparticles and its antibacterial activity against clinically isolated pathogens. Col","[136, 1053, 1085, 1166]",reference_item,0.85,"[""reference content label: [27] MubarakAli D, Thajuddin N, Jeganathan K, Gunasekaran M.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,10,reference_content,"[28] Durán N, Marcato PD, De Souza GIH, Alves OL, Esposito E. Antibacterial effect of silver nanoparticles produced by fungal process on textile fabrics and their effluent treatment. Journal of Biomed","[137, 1177, 1086, 1288]",reference_item,0.85,"[""reference content label: [28] Dur\u00e1n N, Marcato PD, De Souza GIH, Alves OL, Esposito E""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,11,reference_content,"[29] El-Rafie MH, Mohamed AA, Shaheen TI, Hebeish A. Antimicrobial effect of silver nanoparticles produced by fungal process on cotton fabrics. Carbohydr Polym 2010;80:779-82.","[136, 1301, 1084, 1372]",reference_item,0.85,"[""reference content label: [29] El-Rafie MH, Mohamed AA, Shaheen TI, Hebeish A. Antimic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
37,12,number,36,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
38,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
38,1,reference_content,"[30] El-Rafie MH, Shaheen TI, Mohamed AA, Hebeish A. Bio-synthesis and applications of silver nanoparticles onto cotton fabrics. Carbohydr Polym 2012;90:915-20.","[137, 143, 1087, 211]",reference_item,0.85,"[""reference content label: [30] El-Rafie MH, Shaheen TI, Mohamed AA, Hebeish A. Bio-syn""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,2,reference_content,"[31] Tripathi A, Chandrasekaran N, Raichur AM, Mukherjee A. Antibacterial Applications of Silver Nanoparticles Synthesized by Aqueous Extract of Azadirachta indica (Neem) Leaves. Journal of Biomedical","[137, 225, 1086, 336]",reference_item,0.85,"[""reference content label: [31] Tripathi A, Chandrasekaran N, Raichur AM, Mukherjee A. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,3,reference_content,"[32] Ravindra S, Murali Mohan Y, Narayana Reddy N, Mohana Raju K. Fabrication of antibacterial cotton fibres loaded with silver nanoparticles via ""Green Approach"". Colloids Surf Physicochem Eng Aspect","[137, 349, 1087, 462]",reference_item,0.85,"[""reference content label: [32] Ravindra S, Murali Mohan Y, Narayana Reddy N, Mohana Ra""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,4,reference_content,"[33] Sathishkumar M, Sneha K, Yun Y-S. Immobilization of silver nanoparticles synthesized using Curcuma longa tuber powder and extract on cotton cloth for bactericidal activity. Bioresour Technol 2010","[137, 473, 1086, 584]",reference_item,0.85,"[""reference content label: [33] Sathishkumar M, Sneha K, Yun Y-S. Immobilization of sil""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,5,reference_content,"[34] Yang N, Li WH. Mango peel extract mediated novel route for synthesis of silver nanoparticles and antibacterial application of silver nanoparticles loaded onto non-woven fabrics. Industrial Crops ","[137, 597, 1085, 709]",reference_item,0.85,"[""reference content label: [34] Yang N, Li WH. Mango peel extract mediated novel route ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,6,reference_content,"[35] Sundaramoorthi C, Kalaivani M, Mathews DM, Palanisamy S, Kalaiselvan V, Rajasekaran A. Biosynthesis of silver nanoparticles from Aspergillus niger and evaluation of its wound healing activity in ","[136, 723, 1087, 874]",reference_item,0.85,"[""reference content label: [35] Sundaramoorthi C, Kalaivani M, Mathews DM, Palanisamy S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,7,reference_content,"[36] Arunachalam KD, Annamalai SK, Arunachalam AM, Kennedy S. Green Synthesis of Crystalline Silver Nanoparticles Using Indigofera aspalathoides-Medicinal Plant Extract for Wound Healing Applications.","[136, 889, 1087, 1000]",reference_item,0.85,"[""reference content label: [36] Arunachalam KD, Annamalai SK, Arunachalam AM, Kennedy S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,8,reference_content,"[37] He Y, Du Z, Lv H, Jia Q, Tang Z, Zheng X, et al. Green synthesis of silver nanoparticles by Chrysanthemum morifolium Ramat. extract and their application in clinical ultrasound gel. International","[136, 1011, 1085, 1124]",reference_item,0.85,"[""reference content label: [37] He Y, Du Z, Lv H, Jia Q, Tang Z, Zheng X, et al. Green ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,9,reference_content,"[38] Gajbhiye M, Kesharwani J, Ingle A, Gade A, Rai M. Fungus-mediated synthesis of silver nanoparticles and their activity against pathogenic fungi in combination with fluconazole. Nanomed Nanotechno","[137, 1136, 1085, 1247]",reference_item,0.85,"[""reference content label: [38] Gajbhiye M, Kesharwani J, Ingle A, Gade A, Rai M. Fungu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,10,reference_content,"[39] Musarrat J, Dwivedi S, Singh BR, Al-Khedhairy AA, Azam A, Naqvi A. Production of antimicrobial silver nanoparticles in water extracts of the fungus Amylomyces rouxii strain KSU-09. Bioresour Tech","[136, 1261, 1086, 1370]",reference_item,0.85,"[""reference content label: [39] Musarrat J, Dwivedi S, Singh BR, Al-Khedhairy AA, Azam ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
38,11,number,37,"[1055, 1393, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
39,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
39,1,reference_content,"[40] Das SK, Das AR, Guha AK. Gold nanoparticles: microbial synthesis and application in water hygiene management. Langmuir 2009;25:8192-9.","[137, 142, 1085, 212]",reference_item,0.85,"[""reference content label: [40] Das SK, Das AR, Guha AK. Gold nanoparticles: microbial ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,2,reference_content,"[41] Bankar A, Joshi B, Ravi Kumar A, Zinjarde S. Banana peel extract mediated synthesis of gold nanoparticles. Colloids Surf B Biointerfaces 2010;80:45-50.","[137, 225, 1087, 297]",reference_item,0.85,"[""reference content label: [41] Bankar A, Joshi B, Ravi Kumar A, Zinjarde S. Banana pee""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,3,reference_content,"[42] Vijayakumar PS, Prasad BLV. Intracellular Biogenic Silver Nanoparticles for the Generation of Carbon Supported Antiviral and Sustained Bactericidal Agents. Langmuir 2009;25:11741-7.","[137, 309, 1083, 378]",reference_item,0.85,"[""reference content label: [42] Vijayakumar PS, Prasad BLV. Intracellular Biogenic Silv""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,4,reference_content,"[43] De Gusseme B, Du Laing G, Hennebel T, Renard P, Chidambaram D, Fitts JP, et al. Virus Removal by Biogenic Cerium. Environ Sci Technol 2010;44:6350-6.","[137, 390, 1083, 462]",reference_item,0.85,"[""reference content label: [43] De Gusseme B, Du Laing G, Hennebel T, Renard P, Chidamb""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,5,reference_content,"[44] De Gusseme B, Sintubin L, Baert L, Thibo E, Hennebel T, Vermeulen G, et al. Biogenic Silver for Disinfection of Water Contaminated with Viruses. Appl Environ Microbiol 2010;76:1082-7.","[136, 473, 1086, 583]",reference_item,0.85,"[""reference content label: [44] De Gusseme B, Sintubin L, Baert L, Thibo E, Hennebel T,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,6,reference_content,"[45] De Gusseme B, Hennebel T, Christiaens E, Saveyn H, Verbeken K, Fitts JP, et al. Virus disinfection in water by biogenic silver immobilized in polyvinylidene fluoride membranes. Water Res 2011;45:","[137, 598, 1085, 709]",reference_item,0.85,"[""reference content label: [45] De Gusseme B, Hennebel T, Christiaens E, Saveyn H, Verb""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,7,reference_content,"[46] Santhoshkumar T, Rahuman A, Rajakumar G, Marimuthu S, Bagavan A, Jayaseelan C, et al. Synthesis of silver nanoparticles using Nelumbo nucifera leaf extract and its larvicidal activity against mal","[136, 722, 1085, 833]",reference_item,0.85,"[""reference content label: [46] Santhoshkumar T, Rahuman A, Rajakumar G, Marimuthu S, B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,8,reference_content,"[47] Gnanadesigan M, Anand M, Ravikumar S, Maruthupandy M, Vijayakumar V, Selvam S, et al. Biosynthesis of silver nanoparticles by using mangrove plant extract and their potential mosquito larvicidal ","[136, 847, 1085, 958]",reference_item,0.85,"[""reference content label: [47] Gnanadesigan M, Anand M, Ravikumar S, Maruthupandy M, V""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,9,reference_content,"[48] Marimuthu S, Rahuman A, Santhoshkumar T, Jayaseelan C, Kirthi A, Bagavan A, et al. Lousicidal activity of synthesized silver nanoparticles using Lawsonia inermis leaf aqueous extract against Pedi","[136, 970, 1085, 1082]",reference_item,0.85,"[""reference content label: [48] Marimuthu S, Rahuman A, Santhoshkumar T, Jayaseelan C, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,10,reference_content,"[49] Rajakumar G, Abdul Rahuman A. Acaricidal activity of aqueous extract and synthesized silver nanoparticles from Manilkara zapota against Rhipicephalus (Boophilus) microplus. Res Vet Sci 2012;93:30","[136, 1096, 1086, 1203]",reference_item,0.85,"[""reference content label: [49] Rajakumar G, Abdul Rahuman A. Acaricidal activity of aq""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,11,reference_content,"[50] Valodkar M, Jadeja RN, Thounaojam MC, Devkar RV, Thakore S. Biocompatible synthesis of peptide capped copper nanoparticles and their biological effect on tumor cells. Mater Chem Phys 2011;128:83-","[137, 1219, 1087, 1328]",reference_item,0.85,"[""reference content label: [50] Valodkar M, Jadeja RN, Thounaojam MC, Devkar RV, Thakor""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
39,12,number,38,"[1056, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
40,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
40,1,reference_content,"[51] Moulton MC, Braydich-Stolle LK, Nadagouda MN, Kunzelman S, Hussain SM, Varma RS. Synthesis, characterization and biocompatibility of ""green"" synthesized silver nanoparticles using tea polyphenols","[136, 142, 1084, 254]",reference_item,0.85,"[""reference content label: [51] Moulton MC, Braydich-Stolle LK, Nadagouda MN, Kunzelman""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,2,reference_content,"[52] Amarnath K, Mathew N, Nellore J, Siddarth C, Kumar J. Facile synthesis of biocompatible gold nanoparticles from Vites vinefera and its cellular internalization against HBL-100 cells. Cancer Nanot","[136, 266, 1083, 377]",reference_item,0.85,"[""reference content label: [52] Amarnath K, Mathew N, Nellore J, Siddarth C, Kumar J. F""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,3,reference_content,"[53] Mishra A, Tripathy SK, Wahab R, Jeong SH, Hwang I, Yang YB, et al. Microbial synthesis of gold nanoparticles using the fungus Penicillium brevicompactum and their cytotoxic effects against mouse ","[136, 391, 1086, 503]",reference_item,0.85,"[""reference content label: [53] Mishra A, Tripathy SK, Wahab R, Jeong SH, Hwang I, Yang""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,4,reference_content,"[54] Raghunandan D, Ravishankar B, Sharanbasava G, Mahesh D, Harsoor V, Yalagatti M, et al. Anti-cancer studies of noble metal nanoparticles synthesized using different plant extracts. Cancer Nanotech","[136, 515, 1085, 626]",reference_item,0.85,"[""reference content label: [54] Raghunandan D, Ravishankar B, Sharanbasava G, Mahesh D,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,5,reference_content,"[55] Jacob SJ, Finub JS, Narayanan A. Synthesis of silver nanoparticles using Piper longum leaf extracts and its cytotoxic activity against Hep-2 cell line. Colloids Surf B Biointerfaces 2012;91:212-4","[136, 638, 1087, 749]",reference_item,0.85,"[""reference content label: [55] Jacob SJ, Finub JS, Narayanan A. Synthesis of silver na""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,6,reference_content,"[56] Satyavani K, Gurudeeban S, Ramanathan T, Balasubramanian T. Biomedical potential of silver nanoparticles synthesized from calli cells of $ Citrullus\ colocynthis $ (L.) Schrad. Journal of nanobi","[136, 763, 1088, 875]",reference_item,0.85,"[""reference content label: [56] Satyavani K, Gurudeeban S, Ramanathan T, Balasubramania""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,7,reference_content,"[57] Sukirtha R, Priyanka KM, Antony JJ, Kamalakkannan S, Thangam R, Gunasekaran P, et al. Cytotoxic effect of green synthesized silver nanoparticles using Melia azedarach against in vitro HeLa cell l","[136, 889, 1083, 999]",reference_item,0.85,"[""reference content label: [57] Sukirtha R, Priyanka KM, Antony JJ, Kamalakkannan S, Th""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,8,reference_content,"[58] Jeyaraj M, Sathishkumar G, Sivanandhan G, MubarakAli D, Rajesh M, Arun R, et al. Biogenic silver nanoparticles for cancer treatment: An experimental report. Colloids Surf B Biointerfaces 2013;106","[136, 1011, 1085, 1124]",reference_item,0.85,"[""reference content label: [58] Jeyaraj M, Sathishkumar G, Sivanandhan G, MubarakAli D,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,9,reference_content,"[59] Karuppaiya P, Satheeshkumar E, Chao W-T, Kao L-Y, Chen EC-F, Tsay H-S. Anti-metastatic activity of biologically synthesized gold nanoparticles on human fibrosarcoma cell line HT-1080. Colloids Su","[136, 1135, 1085, 1247]",reference_item,0.85,"[""reference content label: [59] Karuppaiya P, Satheeshkumar E, Chao W-T, Kao L-Y, Chen ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,10,reference_content,"[60] Sun J-B, Duan J-H, Dai S-L, Ren J, Guo L, Jiang W, et al. Preparation and anti-tumor efficiency evaluation of doxorubicin-loaded bacterial magnetosomes: Magnetic nanoparticles as","[136, 1261, 1087, 1331]",reference_item,0.85,"[""reference content label: [60] Sun J-B, Duan J-H, Dai S-L, Ren J, Guo L, Jiang W, et a""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
40,11,number,39,"[1055, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
41,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
41,1,reference_content,drug carriers isolated from Magnetospirillum gryphiswaldense. Biotechnol Bioeng 2008;101:1313-20.,"[137, 143, 1085, 211]",reference_item,0.85,"[""reference content label: drug carriers isolated from Magnetospirillum gryphiswaldense""]",reference_item,0.85,reference_zone,body_like,none,True,True
41,2,reference_content,"[61] Li X, Jiang W, Sun JB, Wang GL, Guan F, Li Y. Purified and sterilized magnetosomes from Magnetospirillum gryphiswaldense MSR-1 were not toxic to mouse fibroblasts in vitro. Lett Appl Microbiol 20","[137, 225, 1086, 336]",reference_item,0.85,"[""reference content label: [61] Li X, Jiang W, Sun JB, Wang GL, Guan F, Li Y. Purified ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,3,reference_content,"[62] Venkatpurwar V, Shiras A, Pokharkar V. Porphyran capped gold nanoparticles as a novel carrier for delivery of anticancer drug: In vitro cytotoxicity study. Int J Pharm 2011;409:314-20.","[136, 350, 1086, 420]",reference_item,0.85,"[""reference content label: [62] Venkatpurwar V, Shiras A, Pokharkar V. Porphyran capped""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,4,reference_content,"[63] Zheng B, Qian L, Yuan H, Xiao D, Yang X, Paau MC, et al. Preparation of gold nanoparticles on eggshell membrane and their biosensing application. Talanta 2010;82:177-83.","[138, 433, 1085, 502]",reference_item,0.85,"[""reference content label: [63] Zheng B, Qian L, Yuan H, Xiao D, Yang X, Paau MC, et al""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,5,reference_content,"[64] Zheng B, Xie S, Qian L, Yuan H, Xiao D, Choi MMF. Gold nanoparticles-coated eggshell membrane with immobilized glucose oxidase for fabrication of glucose biosensor. Sensors Actuators B: Chem 2011","[137, 516, 1086, 626]",reference_item,0.85,"[""reference content label: [64] Zheng B, Xie S, Qian L, Yuan H, Xiao D, Choi MMF. Gold ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,6,reference_content,"[65] Wang T, Yang L, Zhang B, Liu J. Extracellular biosynthesis and transformation of selenium nanoparticles and application in $ H_{2}O_{2} $ biosensor. Colloids Surf B Biointerfaces 2010;80:94-102.","[137, 640, 1085, 710]",reference_item,0.85,"[""reference content label: [65] Wang T, Yang L, Zhang B, Liu J. Extracellular biosynthe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,7,reference_content,"[66] Zheng D, Hu C, Gan T, Dang X, Hu S. Preparation and application of a novel vanillin sensor based on biosynthesis of Au-Ag alloy nanoparticles. Sensors Actuators B: Chem 2010;148:247-52.","[136, 723, 1085, 831]",reference_item,0.85,"[""reference content label: [66] Zheng D, Hu C, Gan T, Dang X, Hu S. Preparation and app""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,8,reference_content,"[67] MubarakAli D, Arunkumar J, Nag KH, SheikSyedIshack KA, Baldev E, Pandiaraj D, et al. Gold nanoparticles from Pro and eukaryotic photosynthetic microorganisms—Comparative studies on synthesis and ","[135, 848, 1086, 999]",reference_item,0.85,"[""reference content label: [67] MubarakAli D, Arunkumar J, Nag KH, SheikSyedIshack KA, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,9,reference_content,[68] Iskandar F. Nanoparticle processing for optical applications - A review. Adv Powder Technol 2009;20:283-92.,"[136, 1011, 1085, 1081]",reference_item,0.85,"[""reference content label: [68] Iskandar F. Nanoparticle processing for optical applica""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,10,reference_content,"[69] Talapin DV, Lee J-S, Kovalenko MV, Shevchenko EV. Prospects of Colloidal Nanocrystals for Electronic and Optoelectronic Applications. Chem Rev 2009;110:389-458.","[137, 1095, 1086, 1165]",reference_item,0.85,"[""reference content label: [69] Talapin DV, Lee J-S, Kovalenko MV, Shevchenko EV. Prosp""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,11,reference_content,"[70] Sicard C, Brayner R, Margueritat J, Hemadi M, Coute A, Yepremian C, et al. Nano-gold biosynthesis by silica-encapsulated micro-algae: a ""living"" bio-hybrid material. J Mater Chem 2010;20:9342-7.","[137, 1177, 1086, 1286]",reference_item,0.85,"[""reference content label: [70] Sicard C, Brayner R, Margueritat J, Hemadi M, Coute A, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
41,12,number,40,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
42,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
42,1,reference_content,"[71] Fayaz M, Tiwary CS, Kalaichelvan PT, Venkatesan R. Blue orange light emission from biogenic synthesized silver nanoparticles using Trichoderma viride. Colloid Surf B-Biointerfaces 2010;75:175-8.","[136, 142, 1086, 251]",reference_item,0.85,"[""reference content label: [71] Fayaz M, Tiwary CS, Kalaichelvan PT, Venkatesan R. Blue""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,2,reference_content,"[72] Sarkar R, Kumbhakar P, MIitra AK. Green synthesis of silver nanoparticles and its optical properties. Digest Journal of Nanomaterials and Biostructures 2010;5:491 - 6.","[136, 266, 1086, 339]",reference_item,0.85,"[""reference content label: [72] Sarkar R, Kumbhakar P, MIitra AK. Green synthesis of si""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,3,reference_content,"[73] Podgaetsky VM, Kopylova TyN, Tereshchenko SA, Rezniechenko AV, Selishchev SV. Laser-limiting materials for medical use. P Soc Photo-Opt Ins 2004;5261:183-91.","[137, 349, 1082, 420]",reference_item,0.85,"[""reference content label: [73] Podgaetsky VM, Kopylova TyN, Tereshchenko SA, Reznieche""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,4,reference_content,"[74] Sathyavathi R, Krishna MB, Rao SV, Saritha R, Rao DN. Biosynthesis of Silver Nanoparticles Using Coriandrum sativum Leaf Extract and Their Application in Nonlinear Optics. Adv Sci Lett 2010;3:138","[136, 432, 1086, 543]",reference_item,0.85,"[""reference content label: [74] Sathyavathi R, Krishna MB, Rao SV, Saritha R, Rao DN. B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,5,reference_content,"[75] Liao K-S, Wang J, Dias S, Dewald J, Alley NJ, Baesman SM, et al. Strong nonlinear photonic responses from microbiologically synthesized tellurium nanocomposites. Chem Phys Lett 2010;484:242-6.","[137, 556, 1086, 667]",reference_item,0.85,"[""reference content label: [75] Liao K-S, Wang J, Dias S, Dewald J, Alley NJ, Baesman S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,6,reference_content,"[76] Fayaz AM, Girilal M, Venkatesan R, Kalaichevan PT. Biosynthesis of anisotropic gold nanoparticles using Maduca longifolia extract and their potential in infrared absorption. Colloids Surf B Bioin","[136, 680, 1086, 791]",reference_item,0.85,"[""reference content label: [76] Fayaz AM, Girilal M, Venkatesan R, Kalaichevan PT. Bios""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,7,reference_content,"[77] Shankar SS, Rai A, Ahmad A, Sastry M. Controlling the Optical Properties of Lemongrass Extract Synthesized Gold Nanotriangles and Potential Application in Infrared-Absorbing Optical Coatings. Che","[136, 805, 1086, 917]",reference_item,0.85,"[""reference content label: [77] Shankar SS, Rai A, Ahmad A, Sastry M. Controlling the O""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,8,reference_content,"[78] Bao H, Hao N, Yang Y, Zhao D. Biosynthesis of biocompatible cadmium telluride quantum dots using yeast cells. Nano Research 2010;3:481-9.","[136, 930, 1087, 999]",reference_item,0.85,"[""reference content label: [78] Bao H, Hao N, Yang Y, Zhao D. Biosynthesis of biocompat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,9,reference_content,"[79] Bao H, Lu Z, Cui X, Qiao Y, Guo J, Anderson JM, et al. Extracellular microbial synthesis of biocompatible CdTe quantum dots. Acta Biomater 2010;6:3534-41.","[137, 1011, 1086, 1082]",reference_item,0.85,"[""reference content label: [79] Bao H, Lu Z, Cui X, Qiao Y, Guo J, Anderson JM, et al. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,10,reference_content,"[80] Pandian SRK, Deepak V, Kalishwaralal K, Gurunathan S. Biologically synthesized fluorescent CdS NPs encapsulated by PHB. Enzyme Microb Technol 2011;48:319-25.","[137, 1095, 1086, 1165]",reference_item,0.85,"[""reference content label: [80] Pandian SRK, Deepak V, Kalishwaralal K, Gurunathan S. B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,11,reference_content,"[81] Basha KS, Govindaraju K, Manikandan R, Ahn JS, Bae EY, Singaravelu G. Phytochemical mediated gold nanoparticles and their PTP 1B inhibitory activity. Colloids Surf B Biointerfaces 2010;75:405-9.","[137, 1177, 1087, 1285]",reference_item,0.85,"[""reference content label: [81] Basha KS, Govindaraju K, Manikandan R, Ahn JS, Bae EY, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
42,12,number,41,"[1055, 1394, 1084, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
43,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
43,1,reference_content,"[82] Kalishwaralal K, Deepak V, Ram Kumar Pandian S, Kottaisamy M, BarathManiKanth S, Kartikeyan B, et al. Biosynthesis of silver and gold nanoparticles using Brevibacterium casei. Colloids Surf B Bio","[137, 142, 1083, 252]",reference_item,0.85,"[""reference content label: [82] Kalishwaralal K, Deepak V, Ram Kumar Pandian S, Kottais""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,2,reference_content,"[83] Muthuvel A, Adavallan K, Balamurugan K, Krishnakumar N. Biosynthesis of gold nanoparticles using Solanum nigrum leaf extract and screening their free radical scavenging and antibacterial properti","[137, 266, 1083, 378]",reference_item,0.85,"[""reference content label: [83] Muthuvel A, Adavallan K, Balamurugan K, Krishnakumar N.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,3,reference_content,"[84] Vahabi K, Dorcheh SK. Chapter 29 - Biosynthesis of Silver Nano-Particles by Trichoderma and Its Medical Applications. In: Gupta VK, Schmoll M, Herrera-Estrella A, Upadhyay RS, Druzhinina I, Tuohy","[136, 391, 1085, 543]",reference_item,0.85,"[""reference content label: [84] Vahabi K, Dorcheh SK. Chapter 29 - Biosynthesis of Silv""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,4,reference_content,"[85] Gopinath K, Venkatesh KS, Ilangovan R, Sankaranarayanan K, Arumugam A. Green synthesis of gold nanoparticles from leaf extract of Terminalia arjuna, for the enhanced mitotic cell division and pol","[137, 556, 1085, 668]",reference_item,0.85,"[""reference content label: [85] Gopinath K, Venkatesh KS, Ilangovan R, Sankaranarayanan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,5,reference_content,"[86] Hennebel T, De Gusseme B, Boon N, Verstraete W. Biogenic metals in advanced water treatment. Trends Biotechnol 2009;27:90-8.","[138, 681, 1083, 749]",reference_item,0.85,"[""reference content label: [86] Hennebel T, De Gusseme B, Boon N, Verstraete W. Biogeni""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,6,reference_content,[87] Das N. Recovery of precious metals through biosorption - A review. Hydrometallurgy 2010;103:180-9.,"[137, 764, 1083, 833]",reference_item,0.85,"[""reference content label: [87] Das N. Recovery of precious metals through biosorption ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,7,reference_content,"[88] Chakraborty N, Banerjee A, Lahiri S, Panda A, Ghosh A, Pal R. Biorecovery of gold using cyanobacteria and an eukaryotic alga with special reference to nanogold formation - a novel phenomenon. J A","[136, 847, 1086, 958]",reference_item,0.85,"[""reference content label: [88] Chakraborty N, Banerjee A, Lahiri S, Panda A, Ghosh A, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,8,reference_content,"[89] Mata YN, Torres E, Blazquez ML, Ballester A, Gonzalez F, Munoz JA. Gold(III) biosorption and bioreduction with the brown alga $ Fucus\ vesiculosus $. J Hazard Mater 2009;166:612-8.","[136, 970, 1085, 1080]",reference_item,0.85,"[""reference content label: [89] Mata YN, Torres E, Blazquez ML, Ballester A, Gonzalez F""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,9,reference_content,"[90] Das D, Das N, Mathew L. Kinetics, equilibrium and thermodynamic studies on biosorption of Ag(I) from aqueous solution by macrofungus Pleurotus platypus. J Hazard Mater 2010;184:765-74.","[136, 1095, 1086, 1204]",reference_item,0.85,"[""reference content label: [90] Das D, Das N, Mathew L. Kinetics, equilibrium and therm""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,10,reference_content,"[91] Zhang H, Li Q, Wang H, Sun D, Lu Y, He N. Accumulation of Silver(I) Ion and Diamine Silver Complex by Aeromonas SH10 biomass. Appl Biochem Biotechnol 2007;143:54-62.","[136, 1218, 1086, 1288]",reference_item,0.85,"[""reference content label: [91] Zhang H, Li Q, Wang H, Sun D, Lu Y, He N. Accumulation ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
43,11,number,42,"[1055, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
44,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
44,1,reference_content,"[92] Won SW, Mao J, Kwak I-S, Sathishkumar M, Yun Y-S. Platinum recovery from ICP wastewater by a combined method of biosorption and incineration. Bioresour Technol 2010;101:1135-40.","[137, 142, 1086, 252]",reference_item,0.85,"[""reference content label: [92] Won SW, Mao J, Kwak I-S, Sathishkumar M, Yun Y-S. Plati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,2,reference_content,"[93] Sathishkumar M, Mahadevan A, Vijayaraghavan K, Pavagadhi S, Balasubramanian R. Green Recovery of Gold through Biosorption, Biocrystallization, and Pyro-Crystallization. Ind Eng Chem Res 2010;49:7","[137, 266, 1085, 378]",reference_item,0.85,"[""reference content label: [93] Sathishkumar M, Mahadevan A, Vijayaraghavan K, Pavagadh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,3,reference_content,"[94] Selvakumar R, Arul Jothi N, Jayavignesh V, Karthikaiselvi K, Antony GI, Sharmila PR, et al. As(V) removal using carbonized yeast cells containing silver nanoparticles. Water Res 2011;45:583-92.","[136, 391, 1086, 502]",reference_item,0.85,"[""reference content label: [94] Selvakumar R, Arul Jothi N, Jayavignesh V, Karthikaisel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,4,reference_content,"[95] Sinha A, Singh VN, Mehta BR, Khare SK. Synthesis and characterization of monodispersed orthorhombic manganese oxide nanoparticles produced by Bacillus sp. cells simultaneous to its bioremediation","[136, 515, 1086, 626]",reference_item,0.85,"[""reference content label: [95] Sinha A, Singh VN, Mehta BR, Khare SK. Synthesis and ch""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,5,reference_content,"[96] Mabbett AN, Lloyd JR, Macaskie LE. Effect of complexing agents on reduction of Cr(VI) by Desulfovibrio vulgaris ATCC 29579. Biotechnol Bioeng 2002;79:389-97.","[137, 639, 1085, 710]",reference_item,0.85,"[""reference content label: [96] Mabbett AN, Lloyd JR, Macaskie LE. Effect of complexing""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,6,reference_content,"[97] De Corte S, Hennebel T, De Gusseme B, Verstraete W, Boon N. Bio-palladium: from metal recovery to catalytic applications. Microbial Biotechnology 2012;5:5-17.","[137, 722, 1086, 792]",reference_item,0.85,"[""reference content label: [97] De Corte S, Hennebel T, De Gusseme B, Verstraete W, Boo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,7,reference_content,"[98] Hennebel T, De Corte S, Verstraete W, Boon N. Microbial production and environmental applications of Pd nanoparticles for treatment of halogenated compounds. Curr Opin Biotechnol 2012;23:555-61.","[135, 805, 1086, 916]",reference_item,0.85,"[""reference content label: [98] Hennebel T, De Corte S, Verstraete W, Boon N. Microbial""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,8,reference_content,"[99] Baxter-Plant VS, Mikheenko IP, Macaskie LE. Sulphate-reducing bacteria, palladium and the reductive dehalogenation of chlorinated aromatic compounds. Biodegradation 2003;14:83-90.","[135, 930, 1086, 999]",reference_item,0.85,"[""reference content label: [99] Baxter-Plant VS, Mikheenko IP, Macaskie LE. Sulphate-re""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,9,reference_content,"[100] Baxter-Plant VS, Mikheenko IP, Robson M, Harrad SJ, Macaskie LE. Dehalogenation of chlorinated aromatic compounds using a hybrid bioinorganic catalyst on cells of Desulfovibrio desulfuricans. Bi","[136, 1011, 1086, 1124]",reference_item,0.85,"[""reference content label: [100] Baxter-Plant VS, Mikheenko IP, Robson M, Harrad SJ, Ma""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,10,reference_content,"[101] Bunge M, Søbjerg LS, Rotaru A-E, Gauthier D, Lindhardt AT, Hause G, et al. Formation of palladium(0) nanoparticles at microbial surfaces. Biotechnol Bioeng 2010;107:206-15.","[137, 1136, 1085, 1207]",reference_item,0.85,"[""reference content label: [101] Bunge M, S\u00f8bjerg LS, Rotaru A-E, Gauthier D, Lindhardt""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,11,reference_content,"[102] De Windt W, Aelterman P, Verstraete W. Bioreductive deposition of palladium (0) nanoparticles on Shewanella oneidensis with catalytic activity towards reductive dechlorination of polychlorinated","[137, 1219, 1086, 1330]",reference_item,0.85,"[""reference content label: [102] De Windt W, Aelterman P, Verstraete W. Bioreductive de""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
44,12,number,43,"[1055, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
45,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 841, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
45,1,reference_content,"[103] De Windt W, Boon N, Van den Bulcke J, Rubberecht L, Prata F, Mast J, et al. Biological control of the size and reactivity of catalytic Pd(0) produced by Shewanella oneidensis. Antonie Van Leeuwe","[137, 142, 1086, 252]",reference_item,0.85,"[""reference content label: [103] De Windt W, Boon N, Van den Bulcke J, Rubberecht L, Pr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,2,reference_content,"[104] Macaskie LE, Humphries AC, Mikheenko IP, Baxter-Plant VS, Deplanche K, Redwood MD, et al. Use of Desulfovibrio and Escherichia coli Pd-nanocatalysts in reduction of Cr(VI) and hydrogenolytic deh","[136, 267, 1086, 420]",reference_item,0.85,"[""reference content label: [104] Macaskie LE, Humphries AC, Mikheenko IP, Baxter-Plant ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,3,reference_content,"[105] Redwood MD, Deplanche K, Baxter-Plant VS, Macaskie LE. Biomass-supported palladium catalysts on Desulfovibrio desulfuricans and Rhodobacter sphaeroides. Biotechnol Bioeng 2008;99:1045-54.","[136, 432, 1086, 544]",reference_item,0.85,"[""reference content label: [105] Redwood MD, Deplanche K, Baxter-Plant VS, Macaskie LE.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,4,reference_content,"[106] Mertens B, Blothe C, Windey K, De Windt W, Verstraete W. Biocatalytic dechlorination of lindane by nano-scale particles of Pd(0) deposited on Shewanella oneidensis. Chemosphere 2007;66:99-105.","[136, 556, 1086, 666]",reference_item,0.85,"[""reference content label: [106] Mertens B, Blothe C, Windey K, De Windt W, Verstraete ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,5,reference_content,"[107] Hennebel T, Simoen H, De Windt W, Verloo M, Boon N, Verstraete W. Biocatalytic dechlorination of trichloroethylene with bio-palladium in a pilot-scale membrane reactor. Biotechnol Bioeng 2009;10","[136, 680, 1085, 791]",reference_item,0.85,"[""reference content label: [107] Hennebel T, Simoen H, De Windt W, Verloo M, Boon N, Ve""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,6,reference_content,"[108] Hennebel T, Verhagen P, Simoen H, Gusseme BD, Vlaeminck SE, Boon N, et al. Remediation of trichloroethylene by bio-precipitated and encapsulated palladium nanoparticles in a fixed bed reactor. C","[135, 805, 1086, 917]",reference_item,0.85,"[""reference content label: [108] Hennebel T, Verhagen P, Simoen H, Gusseme BD, Vlaeminc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,7,reference_content,"[109] Smuleac V, Varma R, Sikdar S, Bhattacharyya D. Green synthesis of Fe and Fe/Pd bimetallic nanoparticles in membranes for reductive degradation of chlorinated organics. Journal of Membrane Scienc","[135, 929, 1086, 1039]",reference_item,0.85,"[""reference content label: [109] Smuleac V, Varma R, Sikdar S, Bhattacharyya D. Green s""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,8,reference_content,"[110] Harrad S, Robson M, Hazrati S, Baxter-Plant VS, Deplanche K, Redwood MD, et al. Dehalogenation of polychlorinated biphenyls and polybrominated diphenyl ethers using a hybrid bioinorganic catalys","[136, 1053, 1083, 1165]",reference_item,0.85,"[""reference content label: [110] Harrad S, Robson M, Hazrati S, Baxter-Plant VS, Deplan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,9,reference_content,"[111] Deplanche K, Snape TJ, Hazrati S, Harrad S, Macaskie LE. Versatility of a new bioinorganic catalyst: Palladized cells of Desulfovibrio desulfuricans and application to dehalogenation of flame re","[136, 1177, 1086, 1288]",reference_item,0.85,"[""reference content label: [111] Deplanche K, Snape TJ, Hazrati S, Harrad S, Macaskie L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
45,10,number,44,"[1055, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
46,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
46,1,reference_content,"[112] Hennebel T, De Corte S, Vanhaecke L, Vanherck K, Forrez I, De Gusseme B, et al. Removal of diatrizoate with catalytically active membranes incorporating microbially produced palladium nanopartic","[136, 142, 1086, 254]",reference_item,0.85,"[""reference content label: [112] Hennebel T, De Corte S, Vanhaecke L, Vanherck K, Forre""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,2,reference_content,"[113] De Gusseme B, Hennebel T, Vanhaecke L, Soetaert M, Desloover J, Wille K, et al. Biogenic Palladium Enhances Diatrizoate Removal from Hospital Wastewater in a Microbial Electrolysis Cell. Environ","[137, 266, 1083, 378]",reference_item,0.85,"[""reference content label: [113] De Gusseme B, Hennebel T, Vanhaecke L, Soetaert M, Des""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,3,reference_content,"[114] Sharma NC, Sahi SV, Nath S, Parsons JG, Gardea-Torresdey JL, Pal T. Synthesis of plant-mediated gold nanoparticles and catalytic role of biomatrix-embedded nanomaterials. Environ Sci Technol 200","[136, 391, 1086, 502]",reference_item,0.85,"[""reference content label: [114] Sharma NC, Sahi SV, Nath S, Parsons JG, Gardea-Torresd""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,4,reference_content,"[115] Huang JL, Wang WT, Lin LQ, Li QB, Lin WS, Li M, et al. A General Strategy for the Biosynthesis of Gold Nanoparticles by Traditional Chinese Medicines and Their Potential Application as Catalysts","[137, 515, 1086, 628]",reference_item,0.85,"[""reference content label: [115] Huang JL, Wang WT, Lin LQ, Li QB, Lin WS, Li M, et al.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,5,reference_content,"[116] Gangula A, Podila R, M R, Karanam L, Janardhana C, Rao AM. Catalytic Reduction of 4-Nitrophenol using Biogenic Gold and Silver Nanoparticles Derived from Breynia rhamnoides. Langmuir 2011.","[136, 639, 1085, 751]",reference_item,0.85,"[""reference content label: [116] Gangula A, Podila R, M R, Karanam L, Janardhana C, Rao""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,6,reference_content,"[117] Hosseinkhani B, Søbjerg LS, Rotaru A-E, Emtiazi G, Skrydstrup T, Meyer RL. Microbially supported synthesis of catalytically active bimetallic Pd-Au nanoparticles. Biotechnol Bioeng 2012;109:45-5","[136, 763, 1086, 874]",reference_item,0.85,"[""reference content label: [117] Hosseinkhani B, S\u00f8bjerg LS, Rotaru A-E, Emtiazi G, Skr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,7,reference_content,"[118] Jia XP, Ma XY, Wei DW, Dong J, Qian WP. Direct formation of silver nanoparticles in cuttlebone-derived organic matrix for catalytic applications. Colloids and Surfaces a-Physicochemical and Engi","[136, 889, 1085, 999]",reference_item,0.85,"[""reference content label: [118] Jia XP, Ma XY, Wei DW, Dong J, Qian WP. Direct formati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,8,reference_content,"[119] Das SK, Khan MMR, Guha AK, Naskar N. Bio-inspired fabrication of silver nanoparticles on nanostructured silica: characterization and application as a highly efficient hydrogenation catalyst. Gre","[136, 1011, 1085, 1124]",reference_item,0.85,"[""reference content label: [119] Das SK, Khan MMR, Guha AK, Naskar N. Bio-inspired fabr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,9,reference_content,"[120] Shahwan T, Abu Sirriah S, Nairat M, Boyaci E, Eroğlu AE, Scott TB, et al. Green synthesis of iron nanoparticles and their application as a Fenton-like catalyst for the degradation of aqueous cat","[136, 1136, 1086, 1249]",reference_item,0.85,"[""reference content label: [120] Shahwan T, Abu Sirriah S, Nairat M, Boyaci E, Ero\u011flu A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,10,reference_content,"[121] Gupta N, Singh HP, Sharma RK. Single-pot synthesis: Plant mediated gold nanoparticles catalyzed reduction of methylene blue in presence of stannous chloride. Colloids Surf Physicochem Eng Aspect","[136, 1261, 1088, 1371]",reference_item,0.85,"[""reference content label: [121] Gupta N, Singh HP, Sharma RK. Single-pot synthesis: Pl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
46,11,number,45,"[1055, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
47,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
47,1,reference_content,"[122] Zhou H, Fan F, Han T, Li X, Ding J, Zhang D, et al. Bacteria-based controlled assembly of metal chalcogenide hollow nanostructures with enhanced light-harvesting and photocatalytic properties. N","[136, 142, 1086, 254]",reference_item,0.85,"[""reference content label: [122] Zhou H, Fan F, Han T, Li X, Ding J, Zhang D, et al. Ba""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,2,reference_content,"[123] Arunachalam R, Dhanasingh S, Kalimuthu B, Uthirappan M, Rose C, Mandal AB. Phytosynthesis of silver nanoparticles using Coccinia grandis leaf extract and its application in the photocatalytic de","[137, 266, 1083, 379]",reference_item,0.85,"[""reference content label: [123] Arunachalam R, Dhanasingh S, Kalimuthu B, Uthirappan M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,3,reference_content,"[124] Forrez I, Carballa M, Fink G, Wick A, Hennebel T, Vanhaecke L, et al. Biogenic metals for the oxidative and reductive removal of pharmaceuticals, biocides and iodinated contrast media in a polis","[136, 391, 1086, 503]",reference_item,0.85,"[""reference content label: [124] Forrez I, Carballa M, Fink G, Wick A, Hennebel T, Vanh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,4,reference_content,"[125] Deplanche K, Caldelari I, Mikheenko IP, Sargent F, Macaskie LE. Involvement of hydrogenases in the formation of highly catalytic Pd(0) nanoparticles by bioreduction of Pd(II) using Escherichia c","[137, 515, 1086, 627]",reference_item,0.85,"[""reference content label: [125] Deplanche K, Caldelari I, Mikheenko IP, Sargent F, Mac""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,5,reference_content,"[126] Mabbett AN, Macaskie LE. A new bioinorganic process for the remediation of Cr(VI). J Chem Technol Biotechnol 2002;77:1169-75.","[137, 638, 1086, 708]",reference_item,0.85,"[""reference content label: [126] Mabbett AN, Macaskie LE. A new bioinorganic process fo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,6,reference_content,"[127] Humphries AC, Mikheenko IP, Macaskie LE. Chromate reduction by immobilized palladized sulfate-reducing bacteria. Biotechnol Bioeng 2006;94:81-90.","[137, 722, 1086, 792]",reference_item,0.85,"[""reference content label: [127] Humphries AC, Mikheenko IP, Macaskie LE. Chromate redu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,7,reference_content,"[128] Mabbett AN, Yong P, Farr JPG, Macaskie LE. Reduction of Cr(VI) by ""Palladized"" Biomass of Desulfovibrio desulfuricans ATCC 29577. Biotechnol Bioeng 2004;87:104-9.","[137, 805, 1085, 875]",reference_item,0.85,"[""reference content label: [128] Mabbett AN, Yong P, Farr JPG, Macaskie LE. Reduction o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,8,reference_content,"[129] Mabbett AN, Sanyahumbi D, Yong P, Macaskie LE. Biorecovered Precious Metals from Industrial Wastes: Single-Step Conversion of a Mixed Metal Liquid Waste to a Bioinorganic Catalyst with Environme","[136, 889, 1086, 1000]",reference_item,0.85,"[""reference content label: [129] Mabbett AN, Sanyahumbi D, Yong P, Macaskie LE. Bioreco""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,9,reference_content,"[130] Beauregard DA, Yong P, Macaskie LE, Johns ML. Using non-invasive magnetic resonance imaging (MRI) to assess the reduction of Cr(VI) using a biofilmpalladium catalyst. Biotechnol Bioeng 2010;107","[136, 1011, 1086, 1124]",reference_item,0.85,"[""reference content label: [130] Beauregard DA, Yong P, Macaskie LE, Johns ML. Using no""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,10,reference_content,"[131] Chidambaram D, Hennebel T, Taghavi S, Mast J, Boon N, Verstraete W, et al. Concomitant Microbial Generation of Palladium Nanoparticles and Hydrogen To Immobilize Chromate. Environ Sci Technol 20","[137, 1135, 1083, 1247]",reference_item,0.85,"[""reference content label: [131] Chidambaram D, Hennebel T, Taghavi S, Mast J, Boon N, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,11,reference_content,"[132] Zhang M, Zhang K, De Gusseme B, Verstraete W. Biogenic silver nanoparticles (bio-Ag0) decrease biofouling of bio-Ag0/PES nanocomposite membranes. Water Res 2012;46:2077-87.","[136, 1261, 1083, 1330]",reference_item,0.85,"[""reference content label: [132] Zhang M, Zhang K, De Gusseme B, Verstraete W. Biogenic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
47,12,number,46,"[1055, 1394, 1086, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
48,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
48,1,reference_content,"[133] Creamer NJ, Mikheenko IP, Yong P, Deplanche K, Sanyahumbi D, Wood J, et al. Novel supported Pd hydrogenation bionanocatalyst for hybrid homogeneous/heterogeneous catalysis. Catal Today 2007;128:","[136, 142, 1085, 252]",reference_item,0.85,"[""reference content label: [133] Creamer NJ, Mikheenko IP, Yong P, Deplanche K, Sanyahu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,2,reference_content,"[134] Bennett JA, Creamer NJ, Deplanche K, Macaskie LE, Shannon IJ, Wood J. Palladium supported on bacterial biomass as a novel heterogeneous catalyst: A comparison of Pd/Al₂O₃ and bio-Pd in the hydro","[136, 267, 1085, 378]",reference_item,0.85,"[""reference content label: [134] Bennett JA, Creamer NJ, Deplanche K, Macaskie LE, Shan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,3,reference_content,"[135] Wood J, Bodenes L, Bennett J, Deplanche K, Macaskie LE. Hydrogenation of 2-Butyne-1,4-diol Using Novel Bio-Palladium Catalysts. Ind Eng Chem Res 2009;49:980-8.","[137, 390, 1085, 461]",reference_item,0.85,"[""reference content label: [135] Wood J, Bodenes L, Bennett J, Deplanche K, Macaskie LE""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,4,reference_content,"[136] Creamer NJ, Deplanche K, Snape TJ, Mikheenko IP, Yong P, Samyahumbi D, et al. A biogenic catalyst for hydrogenation, reduction and selective dehalogenation in non-aqueous solvents. Hydrometallur","[136, 472, 1086, 585]",reference_item,0.85,"[""reference content label: [136] Creamer NJ, Deplanche K, Snape TJ, Mikheenko IP, Yong ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,5,reference_content,"[137] Jia L, Zhang Q, Li Q, Song H. The biosynthesis of palladium nanoparticles by antioxidants in Gardenia jasminoides Ellis : long lifetime nanocatalysts for p-nitrotoluene hydrogenation. Nanotechno","[137, 598, 1082, 709]",reference_item,0.85,"[""reference content label: [137] Jia L, Zhang Q, Li Q, Song H. The biosynthesis of pall""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,6,reference_content,"[138] Sobjerg LS, Gauthier D, Lindhardt AT, Bunge M, Finster K, Meyer RL, et al. Bio-supported palladium nanoparticles as a catalyst for Suzuki-Miyaura and Mizoroki-Heck reactions. Green Chemistry 200","[136, 722, 1085, 832]",reference_item,0.85,"[""reference content label: [138] Sobjerg LS, Gauthier D, Lindhardt AT, Bunge M, Finster""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,7,reference_content,"[139] Søbjerg LS, Lindhardt AT, Skrydstrup T, Finster K, Meyer RL. Size control and catalytic activity of bio-supported palladium nanoparticles. Colloids Surf B Biointerfaces 2011;85:373-8.","[136, 847, 1086, 917]",reference_item,0.85,"[""reference content label: [139] S\u00f8bjerg LS, Lindhardt AT, Skrydstrup T, Finster K, Mey""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,8,reference_content,"[140] Gauthier D, Søbjerg LS, Jensen KM, Lindhardt AT, Bunge M, Finster K, et al. Environmentally Benign Recovery and Reactivation of Palladium from Industrial Waste by Using Gram-Negative Bacteria. C","[136, 930, 1085, 1041]",reference_item,0.85,"[""reference content label: [140] Gauthier D, S\u00f8bjerg LS, Jensen KM, Lindhardt AT, Bunge""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,9,reference_content,"[141] Du M, Zhan G, Yang X, Wang H, Lin W, Zhou Y, et al. Ionic liquid-enhanced immobilization of biosynthesized Au nanoparticles on TS-1 toward efficient catalysts for propylene epoxidation. J Catal ","[136, 1053, 1086, 1165]",reference_item,0.85,"[""reference content label: [141] Du M, Zhan G, Yang X, Wang H, Lin W, Zhou Y, et al. Io""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,10,reference_content,"[142] Zhan G, Du M, Sun D, Huang J, Yang X, Ma Y, et al. Vapor-Phase Propylene Epoxidation with $ H_{2}/O_{2} $ over Bioreduction Au/TS-1 Catalysts: Synthesis, Characterization, and Optimization. Ind","[137, 1177, 1085, 1288]",reference_item,0.85,"[""reference content label: [142] Zhan G, Du M, Sun D, Huang J, Yang X, Ma Y, et al. Vap""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
48,11,number,47,"[1055, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
49,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
49,1,reference_content,"[143] Huang J, Liu C, Sun D, Hong Y, Du M, Odoom-Wubah T, et al. Biosynthesized gold nanoparticles supported over TS-1 toward efficient catalyst for epoxidation of styrene. Chem Eng J 2014;235:215-23.","[136, 142, 1086, 252]",reference_item,0.85,"[""reference content label: [143] Huang J, Liu C, Sun D, Hong Y, Du M, Odoom-Wubah T, et""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,2,reference_content,"[144] Venu R, Ramulu TS, Anandakumar S, Rani VS, Kim CG. Bio-directed synthesis of platinum nanoparticles using aqueous honey solutions and their catalytic applications. Colloids and Surfaces A: Physi","[136, 267, 1086, 377]",reference_item,0.85,"[""reference content label: [144] Venu R, Ramulu TS, Anandakumar S, Rani VS, Kim CG. Bio""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,3,reference_content,"[145] Wu X, Song Q, Jia L, Li Q, Yang C, Lin L. Pd-Gardenia- $ TiO_{2} $ as a photocatalyst for $ H_{2} $ evolution from pure water. Int J Hydrogen Energy 2011.","[136, 391, 1085, 461]",reference_item,0.85,"[""reference content label: [145] Wu X, Song Q, Jia L, Li Q, Yang C, Lin L. Pd-Gardenia-""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,4,reference_content,"[146] Macaskie LE, Baxter-Plant VS, Creamer NJ, Humphries AC, Mikheenko IP, Mikheenko PM, et al. Applications of bacterial hydrogenases in waste decontamination, manufacture of novel bionanocatalysts ","[136, 473, 1087, 585]",reference_item,0.85,"[""reference content label: [146] Macaskie LE, Baxter-Plant VS, Creamer NJ, Humphries AC""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,5,reference_content,"[147] Yong P, Paterson-Beedle M, Mikheenko IP, Macaskie LE. From bio-mineralisation to fuel cells: biomanufacture of Pt and Pd nanocrystals for fuel cell electrode catalyst. Biotechnol Lett 2007;29:53","[137, 598, 1085, 708]",reference_item,0.85,"[""reference content label: [147] Yong P, Paterson-Beedle M, Mikheenko IP, Macaskie LE. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,6,reference_content,"[148] Dimitriadis S, Nomikou N, McHale AP. Pt-based electro-catalytic materials derived from biosorption processes and their exploitation in fuel cell technology. Biotechnol Lett 2007;29:545-51.","[136, 722, 1085, 832]",reference_item,0.85,"[""reference content label: [148] Dimitriadis S, Nomikou N, McHale AP. Pt-based electro-""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,7,reference_content,"[149] Ogi T, Honda R, Tamaoki K, Saitoh N, Konishi Y. Direct room-temperature synthesis of a highly dispersed Pd nanoparticle catalyst and its electrical properties in a fuel cell. Powder Technol 2011","[136, 847, 1086, 956]",reference_item,0.85,"[""reference content label: [149] Ogi T, Honda R, Tamaoki K, Saitoh N, Konishi Y. Direct""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,8,reference_content,"[150] Orozco R, Redwood M, Yong P, Caldelari I, Sargent F, Macaskie L. Towards an integrated system for bio-energy: hydrogen production by Escherichia coli and use of palladium-coated waste cells for ","[136, 970, 1086, 1082]",reference_item,0.85,"[""reference content label: [150] Orozco R, Redwood M, Yong P, Caldelari I, Sargent F, M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,9,reference_content,"[151] Yong P, Mikheenko I, Deplanche K, Redwood M, Macaskie L. Biorefining of precious metals from wastes: an answer to manufacturing of cheap nanocatalysts for fuel cells and power generation via an ","[137, 1095, 1086, 1205]",reference_item,0.85,"[""reference content label: [151] Yong P, Mikheenko I, Deplanche K, Redwood M, Macaskie ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,10,reference_content,"[152] Pingarrón JM, Yáñez-Sedeño P, González-Cortés A. Gold nanoparticle-based electrochemical biosensors. Electrochimica Acta 2008;53:5848-66.","[136, 1218, 1084, 1286]",reference_item,0.85,"[""reference content label: [152] Pingarr\u00f3n JM, Y\u00e1\u00f1ez-Sede\u00f1o P, Gonz\u00e1lez-Cort\u00e9s A. Gold ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
49,11,number,48,"[1056, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
50,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
50,1,reference_content,"[153] Wang Y, He X, Wang K, Zhang X, Tan W. Barbated Skullcup herb extract-mediated biosynthesis of gold nanoparticles and its primary application in electrochemistry. Colloids Surf B Biointerfaces 20","[137, 142, 1087, 252]",reference_item,0.85,"[""reference content label: [153] Wang Y, He X, Wang K, Zhang X, Tan W. Barbated Skullcu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,2,reference_content,"[154] Ghoreishi SM, Behpour M, Khayatkashani M. Green synthesis of silver and gold nanoparticles using Rosa damascena and its primary application in electrochemistry. Physica E: Low-dimensional System","[137, 266, 1082, 377]",reference_item,0.85,"[""reference content label: [154] Ghoreishi SM, Behpour M, Khayatkashani M. Green synthe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,3,reference_content,"[155] Jha AK, Prasad K. Ferroelectric BaTiO₃ nanoparticles: Biosynthesis and characterization. Colloids Surf B Biointerfaces 2010;75:330-4.","[138, 391, 1082, 460]",reference_item,0.85,"[""reference content label: [155] Jha AK, Prasad K. Ferroelectric BaTiO\u2083 nanoparticles: ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,4,reference_content,"[156] Torres-Chavolla E, Ranasinghe RJ, Alocilja EC. Characterization and Functionalization of Biogenic Gold Nanoparticles for Biosensing Enhancement. Nanotechnology, IEEE Transactions on 2010;9:533-8","[136, 473, 1086, 583]",reference_item,0.85,"[""reference content label: [156] Torres-Chavolla E, Ranasinghe RJ, Alocilja EC. Charact""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,5,reference_content,"[157] Shilov V, Voitenko E, Marochko L, Podol'skaya V. Electric characteristics of cellular structures containing colloidal silver. Colloid J 2010;72:125-32.","[136, 598, 1086, 667]",reference_item,0.85,"[""reference content label: [157] Shilov V, Voitenko E, Marochko L, Podol'skaya V. Elect""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,6,reference_content,"[158] Du L, Jiang H, Liu X, Wang E. Biosynthesis of gold nanoparticles assisted by Escherichia coli DH5α and its application on direct electrochemistry of hemoglobin. Electrochem Commun 2007;9:1165-70","[136, 681, 1086, 793]",reference_item,0.85,"[""reference content label: [158] Du L, Jiang H, Liu X, Wang E. Biosynthesis of gold nan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,7,reference_content,"[159] Kowshik M, Deshmukh N, Vogel W, Urban J, Kulkarni SK, Paknikar KM. Microbial synthesis of semiconductor CdS nanoparticles, their characterization, and their use in the fabrication of an ideal di","[135, 807, 1086, 918]",reference_item,0.85,"[""reference content label: [159] Kowshik M, Deshmukh N, Vogel W, Urban J, Kulkarni SK, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,8,reference_content,"[160] Uddin MJ, Middya TR, Chaudhuri B, Sakata H. Destruction of percolative network using green synthesized gold nanoparticles: Formation of high dielectric material. Polymer 2014;55:15-21.","[136, 931, 1085, 1041]",reference_item,0.85,"[""reference content label: [160] Uddin MJ, Middya TR, Chaudhuri B, Sakata H. Destructio""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,9,reference_content,"[161] Bindhu MR, Umadevi M. Silver and gold nanoparticles for sensor and antibacterial applications. Spectrochimica Acta Part A: Molecular and Biomolecular Spectroscopy 2014;128:37-45.","[136, 1056, 1086, 1166]",reference_item,0.85,"[""reference content label: [161] Bindhu MR, Umadevi M. Silver and gold nanoparticles fo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,10,reference_content,"[162] Safarik I, Safarikova M. Magnetically modified microbial cells: A new type of magnetic adsorbents. China Particuology 2007;5:19-25.","[137, 1180, 1086, 1249]",reference_item,0.85,"[""reference content label: [162] Safarik I, Safarikova M. Magnetically modified microbi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,11,reference_content,"[163] Šafařík I, Šafaříková M. Use of magnetic techniques for the isolation of cells. Journal of Chromatography B: Biomedical Sciences and Applications 1999;722:33-53.","[137, 1263, 1087, 1332]",reference_item,0.85,"[""reference content label: [163] \u0160afa\u0159\u00edk I, \u0160afa\u0159\u00edkov\u00e1 M. Use of magnetic techniques fo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
50,12,number,49,"[1055, 1393, 1085, 1416]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
51,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
51,1,reference_content,"[164] Safarik I, Safarikova M. Magnetic nano- and microparticles in biotechnology. Chemical Papers 2009;63:497-505.","[137, 143, 1086, 211]",reference_item,0.85,"[""reference content label: [164] Safarik I, Safarikova M. Magnetic nano- and microparti""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,2,reference_content,"[165] Faivre D, Schuler D. Magnetotactic bacteria and magnetosomes. Chem Rev 2008;108:4875-98.","[137, 225, 1085, 294]",reference_item,0.85,"[""reference content label: [165] Faivre D, Schuler D. Magnetotactic bacteria and magnet""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,3,reference_content,"[166] Pecova M, Zajoncova L, Polakova K, Cuda J, Safarikova M, Sebela M, et al. Biologically Active Compounds Immobilized on Magnetic Carriers and Their Utilization in Biochemistry and Biotechnology. ","[137, 308, 1085, 420]",reference_item,0.85,"[""reference content label: [166] Pecova M, Zajoncova L, Polakova K, Cuda J, Safarikova ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,4,reference_content,"[167] Kundu S, Kale AA, Banpurkar AG, Kulkarni GR, Ogale SB. On the change in bacterial size and magnetosome features for Magnetospirillum magnetotacticum (MS-1) under high concentrations of zinc and ","[136, 432, 1085, 544]",reference_item,0.85,"[""reference content label: [167] Kundu S, Kale AA, Banpurkar AG, Kulkarni GR, Ogale SB.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,5,reference_content,"[168] Yeary LW, Moon JW, Rawn CJ, Love LJ, Rondinone AJ, Thompson JR, et al. Magnetic properties of bio-synthesized zinc ferrite nanoparticles. J Magn Magn Mater 2011;323:3043-8.","[137, 556, 1084, 628]",reference_item,0.85,"[""reference content label: [168] Yeary LW, Moon JW, Rawn CJ, Love LJ, Rondinone AJ, Tho""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,6,reference_content,"[169] Staniland S, Williams W, Telling N, Van Der L, Harrison A, Ward B. Controlled cobalt doping of magnetosomes in vivo. Nat Nano 2008;3:158-62.","[138, 639, 1083, 709]",reference_item,0.85,"[""reference content label: [169] Staniland S, Williams W, Telling N, Van Der L, Harriso""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,7,reference_content,"[170] Roh Y, Vali H, Phelps TJ, Moon JW. Extracellular synthesis of magnetite and metal-substituted magnetite nanoparticles. Journal of Nanoscience and Nanotechnology 2006;6:3517-20.","[136, 722, 1084, 832]",reference_item,0.85,"[""reference content label: [170] Roh Y, Vali H, Phelps TJ, Moon JW. Extracellular synth""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,8,reference_content,"[171] Moon J-W, Rawn CJ, Rondinone AJ, Love LJ, Roh Y, Everett SM, et al. Large-scale production of magnetic nanoparticles using bacterial fermentation. J Ind Microbiol Biotechnol 2010;37:1023-31.","[136, 847, 1085, 957]",reference_item,0.85,"[""reference content label: [171] Moon J-W, Rawn CJ, Rondinone AJ, Love LJ, Roh Y, Evere""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,9,reference_content,"[172] Telling ND, Coker VS, Cutting RS, van der Laan G, Pearce CI, Patrick RAD, et al. Remediation of Cr(VI) by biogenic magnetic nanoparticles: An x-ray magnetic circular dichroism study. Appl Phys L","[136, 970, 1085, 1082]",reference_item,0.85,"[""reference content label: [172] Telling ND, Coker VS, Cutting RS, van der Laan G, Pear""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,10,reference_content,"[173] Cutting RS, Coker VS, Telling ND, Kimber RL, Pearce CI, Ellis BL, et al. Optimizing Cr(VI) and Tc(VII) Remediation through Nanoscale Biomineral Engineering. Environ Sci Technol 2010;44:2577-84.","[136, 1095, 1086, 1204]",reference_item,0.85,"[""reference content label: [173] Cutting RS, Coker VS, Telling ND, Kimber RL, Pearce CI""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,11,reference_content,"[174] Coker VS, Bennett JA, Telling ND, Henkel T, Charnock JM, van der Laan G, et al. Microbial Engineering of Nanoheterostructures: Biological Synthesis of a Magnetically Recoverable Palladium Nanoca","[136, 1218, 1083, 1329]",reference_item,0.85,"[""reference content label: [174] Coker VS, Bennett JA, Telling ND, Henkel T, Charnock J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
51,12,number,50,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
52,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
52,1,reference_content,"[175] Crean DE, Coker VS, van der Laan G, Lloyd JR. Engineering Biogenic Magnetite for Sustained Cr(VI) Remediation in Flow-through Systems. Environ Sci Technol 2012;46:3352-9.","[137, 143, 1085, 211]",reference_item,0.85,"[""reference content label: [175] Crean DE, Coker VS, van der Laan G, Lloyd JR. Engineer""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,2,reference_content,"[176] Ahmad A, Jagadale T, Dhas V, Khan S, Patil S, Pasricha R, et al. Fungus-Based Synthesis of Chemically Difficult-To-Synthesize Multifunctional Nanoparticles of CuAlO₂. Adv Mater 2007;19:3295-9.","[137, 225, 1084, 335]",reference_item,0.85,"[""reference content label: [176] Ahmad A, Jagadale T, Dhas V, Khan S, Patil S, Pasricha""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,3,reference_content,"[177] Ankamwar B, Damle C, Ahmad A, Sastry M. Biosynthesis of Gold and Silver Nanoparticles Using Emblica Officinalis Fruit Extract, Their Phase Transfer and Transmetallation in an Organic Solution. J","[136, 349, 1086, 501]",reference_item,0.85,"[""reference content label: [177] Ankamwar B, Damle C, Ahmad A, Sastry M. Biosynthesis o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,4,reference_content,"[178] Haverkamp R, Marshall A, Agterveld D. Pick your carats: nanoparticles of goldsilvercopper alloy produced in vivo. J Nanopart Res 2007;9:697-700.","[137, 515, 1087, 585]",reference_item,0.85,"[""reference content label: [178] Haverkamp R, Marshall A, Agterveld D. Pick your carats""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,5,reference_content,"[179] Senapati S, Ahmad A, Khan MI, Sastry M, Kumar R. Extracellular Biosynthesis of Bimetallic AuAg Alloy Nanoparticles. Small 2005;1:517-20.","[137, 598, 1086, 667]",reference_item,0.85,"[""reference content label: [179] Senapati S, Ahmad A, Khan MI, Sastry M, Kumar R. Extra""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,6,reference_content,"[180] Sawle BD, Salimath B, Deshpande R, Bedre MD, Prabhakar BK, Venkataraman A. Biosynthesis and stabilization of Au and Au-Ag alloy nanoparticles by fungus, Fusarium semitectum. Science and Technolo","[136, 680, 1086, 792]",reference_item,0.85,"[""reference content label: [180] Sawle BD, Salimath B, Deshpande R, Bedre MD, Prabhakar""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,7,reference_content,"[181] Deplanche K, Merroun ML, Casadesus M, Tran DT, Mikheenko IP, Bennett JA, et al. Microbial synthesis of core/shell gold/palladium nanoparticles for applications in green chemistry. Journal of the","[136, 805, 1086, 917]",reference_item,0.85,"[""reference content label: [181] Deplanche K, Merroun ML, Casadesus M, Tran DT, Mikheen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,8,reference_content,"[182] Ankamwar B, Chaudhary M, Sastry M. Gold Nanotriangles Biologically Synthesized using Tamarind Leaf Extract and Potential Application in Vapor Sensing. Synthesis and Reactivity in Inorganic, Meta","[136, 930, 1085, 1041]",reference_item,0.85,"[""reference content label: [182] Ankamwar B, Chaudhary M, Sastry M. Gold Nanotriangles ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,9,reference_content,"[183] Xie J, Lee JY, Wang DIC, Ting YP. Silver Nanoplates: From Biological to Biomimetic Synthesis. ACS Nano 2007;1:429-39.","[137, 1052, 1085, 1123]",reference_item,0.85,"[""reference content label: [183] Xie J, Lee JY, Wang DIC, Ting YP. Silver Nanoplates: F""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,10,reference_content,"[184] Sathish Kumar K, Amutha R, Arumugam P, Berchmans S. Synthesis of Gold Nanoparticles: An Ecofriendly Approach Using Hansenula anomala. ACS Applied Materials & Interfaces 2011;3:1418-25.","[137, 1135, 1085, 1245]",reference_item,0.85,"[""reference content label: [184] Sathish Kumar K, Amutha R, Arumugam P, Berchmans S. Sy""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
52,11,number,51,"[1055, 1394, 1084, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
53,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
53,1,image,,"[142, 169, 655, 536]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
53,2,number,52,"[1055, 1393, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
54,0,header,ACCEPTED MANUSCRIPT,"[385, 31, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
54,1,image,,"[142, 141, 863, 633]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
54,2,number,53,"[1055, 1392, 1086, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
55,0,header,ACCEPTED MANUSCRIPT,"[384, 31, 841, 70]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
55,1,image,,"[143, 144, 1084, 1100]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
55,2,number,54,"[1055, 1392, 1086, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
56,0,header,ACCEPTED MANUSCRIPT,"[384, 31, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
56,1,vision_footnote,514 nm,"[200, 139, 314, 175]",reference_item,0.7,"[""vision_footnote label: 514 nm""]",footnote,0.7,reference_zone,reference_like,reference_numeric_dot,True,True
56,2,vision_footnote,633 nm,"[434, 138, 548, 175]",reference_item,0.7,"[""vision_footnote label: 633 nm""]",footnote,0.7,reference_zone,reference_like,reference_numeric_dot,True,True
56,3,figure_title,a.,"[146, 226, 178, 255]",figure_inner_text,0.9,"[""panel label / figure inner text: a.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,4,image,,"[213, 217, 304, 448]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,5,figure_title,e.,"[394, 226, 425, 255]",figure_inner_text,0.9,"[""panel label / figure inner text: e.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,6,image,,"[444, 215, 538, 448]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,7,figure_title,b.,"[147, 456, 177, 488]",figure_inner_text,0.9,"[""panel label / figure inner text: b.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,8,image,,"[675, 217, 809, 436]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,9,figure_title,f.,"[394, 456, 417, 488]",figure_inner_text,0.9,"[""panel label / figure inner text: f.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,10,image,,"[146, 495, 370, 644]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,11,image,,"[383, 493, 609, 645]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,12,figure_title,C.,"[147, 695, 177, 724]",figure_inner_text,0.9,"[""panel label / figure inner text: C.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,13,image,,"[847, 214, 1084, 439]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,14,image,,"[143, 694, 375, 886]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,15,figure_title,i.,"[849, 222, 869, 256]",figure_inner_text,0.9,"[""panel label / figure inner text: i.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,16,figure_title,g.,"[394, 694, 425, 729]",figure_inner_text,0.9,"[""panel label / figure inner text: g.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,17,image,,"[626, 457, 813, 917]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,18,image,,"[380, 691, 614, 886]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,19,figure_title,j.,"[850, 456, 868, 492]",figure_inner_text,0.9,"[""panel label / figure inner text: j.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,20,figure_title,d.,"[146, 926, 178, 961]",figure_inner_text,0.9,"[""panel label / figure inner text: d.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,21,image,,"[847, 450, 1066, 674]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,22,image,,"[221, 934, 297, 1136]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,23,figure_title,h.,"[394, 926, 425, 960]",figure_inner_text,0.9,"[""panel label / figure inner text: h.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,24,image,,"[394, 925, 534, 1138]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,25,figure_title,k.,"[850, 691, 876, 723]",figure_inner_text,0.9,"[""panel label / figure inner text: k.""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
56,26,image,,"[848, 685, 1084, 909]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,27,figure_title,1.,"[850, 925, 870, 959]",figure_caption_candidate,0.85,"[""figure_title label: 1.""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
56,28,image,,"[846, 919, 1084, 1156]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
56,29,number,55,"[1055, 1392, 1086, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
57,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
57,1,image,,"[143, 143, 656, 649]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
57,2,number,56,"[1056, 1393, 1086, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
58,0,header,ACCEPTED MANUSCRIPT,"[385, 31, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
58,1,image,,"[142, 143, 610, 468]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
58,2,figure_title,a,"[585, 147, 607, 171]",figure_inner_text,0.9,"[""panel label / figure inner text: a""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
58,3,image,,"[621, 142, 1086, 471]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
58,4,image,,"[143, 479, 611, 805]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
58,5,image,,"[621, 478, 1086, 807]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
58,6,image,,"[144, 812, 609, 1144]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
58,7,image,,"[620, 817, 1085, 1137]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
58,8,number,57,"[1055, 1392, 1085, 1419]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
59,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
59,1,figure_title,Figure 1: Light microscopy of gold nanoparticle biosynthesis inside the moss leaf. The purple color indicates the presence of gold nanoparticles inside the cells (picture taken and kindly provided by ,"[135, 142, 1087, 284]",figure_caption,0.92,"[""figure_title label: Figure 1: Light microscopy of gold nanoparticle biosynthesis""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
59,2,figure_title,Figure 2: Antimicrobial activity of AgNPs synthesized by S. hygroscopicus. (a) Candida albicans; (b) Bacillus subtilis; (c) Escherichia coli; (d) Enterococcus faecalis; (e) Salmonella typhimurium; (f),"[137, 309, 1087, 562]",figure_caption,0.92,"[""figure_title label: Figure 2: Antimicrobial activity of AgNPs synthesized by S. ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
59,3,figure_title,Figure 3: Probable anti-proliferative mechanism of AuNP. Reprinted from [49] with kind permission from Springer Science and Business Media.,"[136, 583, 1087, 669]",figure_caption,0.92,"[""figure_title label: Figure 3: Probable anti-proliferative mechanism of AuNP. Rep""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
59,4,figure_title,"Figure 4: Optical images (right column) and reconstructed images from the intensity of Raman spectra with excitation at 514 nm (left column) and 633nm (middle column), for encapsulated cell before (to","[136, 696, 1087, 948]",figure_caption,0.92,"[""figure_title label: Figure 4: Optical images (right column) and reconstructed im""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
59,5,figure_title,Figure 5: Electron micrograph of “palladized” cells of Shewanella oneidensis (kindly provided by Simon de Corte),"[135, 971, 1088, 1056]",figure_caption,0.92,"[""figure_title label: Figure 5: Electron micrograph of \u201cpalladized\u201d cells of Shewa""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
59,6,figure_title,"Figure 6: Electron micrographs of crystal morphologies and intracellular organization of magnetosomes found in various magnetotactic bacteria. Shapes of magnetic crystals include cubo-octahedral (a), ","[136, 1082, 1088, 1392]",reference_item,0.92,"[""figure_title label: Figure 6: Electron micrographs of crystal morphologies and i""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
59,7,number,58,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
60,0,paragraph_title,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: ACCEPTED MANUSCRIPT""]",section_heading,0.6,,unknown_like,short_fragment,False,True
60,1,text,"biotechnological applications. Applied Microbiology and Biotechnology, 52(4), 464-473"" with kind permission from Springer Science and Business Media.","[136, 142, 1087, 229]",frontmatter_noise,0.7,"[""keyword-like block: biotechnological applications. Applied Microbiology and Biot""]",frontmatter_noise,0.7,,body_like,none,False,False
60,2,number,59,"[1056, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
61,0,header,ACCEPTED MANUSCRIPT,"[384, 31, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
61,1,figure_title,Table 1. Antibacterial activity,"[136, 142, 491, 172]",table_caption,0.9,"[""table prefix matched: Table 1. Antibacterial activity""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
61,2,table,"<table><tr><td>NP</td><td>Organism used</td><td>Activity against</td><td>Reference</td></tr><tr><td>Ag</td><td>Pleurotus sajor-caju</td><td>Staphylococcus aureus, Klebsiella pneumonia</td><td>Vigneshw","[131, 165, 1004, 1368]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
61,3,number,60,"[1055, 1393, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
62,0,doc_title,ACCEPTED MANUSCRIPT,"[384, 32, 841, 69]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
62,1,table,"<table><tr><td>Ag</td><td>Fusarium oxysporum</td><td>S. aureus on cotton fabrics</td><td>Durán et al.</td></tr><tr><td>Ag</td><td>Fusarium solani</td><td>S. aureus, E. coli on cotton fabrics</td><td>E","[136, 147, 1013, 609]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
62,2,number,61,"[1055, 1394, 1084, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
63,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
63,1,figure_title,"Table 2. Antifungal, antiviral and anti-parasite activity","[136, 199, 727, 228]",table_caption,0.9,"[""table prefix matched: Table 2. Antifungal, antiviral and anti-parasite activity""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
63,2,table,"<table><tr><td>NP</td><td>Organism used</td><td>Activity against</td><td>Reference</td></tr><tr><td>Ag</td><td>Alternaria alternate</td><td>Phoma glomerata, Phoma herbarum, Fusarium semitectum, Tricho","[135, 238, 1075, 1013]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
63,3,number,62,"[1055, 1393, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
64,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
64,1,figure_title,Table 3. Drug delivery and cancer treatment applications,"[136, 263, 750, 290]",table_caption,0.9,"[""table prefix matched: Table 3. Drug delivery and cancer treatment applications""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
64,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Ag</td><td>Camellia sinensis</td><td>biocompatible</td><td>Moulton et al.</td></tr><tr><td>Au</td><td>Zin,"[132, 296, 1090, 1098]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
64,3,number,63,"[1056, 1394, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
65,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 839, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
65,1,figure_title,Table 4. Medical diagnostics and sensors,"[136, 222, 599, 251]",table_caption,0.9,"[""table prefix matched: Table 4. Medical diagnostics and sensors""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
65,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>eggshell membrane</td><td>glucose sensor</td><td>Zheng et al.</td></tr><tr><td>Au</td><td>eggs,"[135, 262, 1061, 502]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
65,3,number,64,"[1056, 1394, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
66,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
66,1,figure_title,Table 5. Imaging and other medical applications,"[135, 238, 669, 268]",table_caption,0.9,"[""table prefix matched: Table 5. Imaging and other medical applications""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
66,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Klebsiella pneumoniae</td><td>photosynthesis-based environmental biosensor</td><td>Sicard et a,"[133, 276, 1056, 986]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
66,3,number,65,"[1055, 1393, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
67,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
67,1,figure_title,"Table 6. Metal biosorption, bioremediation and biorecovery","[136, 254, 778, 283]",table_caption,0.9,"[""table prefix matched: Table 6. Metal biosorption, bioremediation and biorecovery""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
67,2,table,"<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Lyngbya majuscula, Spirulina subsalsa, Rhizoclonium hieroglyphicum</td><td>bioaccumulation</td","[135, 289, 1075, 830]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
67,3,number,66,"[1055, 1394, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
68,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
68,1,figure_title,Table 7. Catalytic dehalogenation,"[137, 277, 526, 306]",table_caption,0.9,"[""table prefix matched: Table 7. Catalytic dehalogenation""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
68,2,table,"<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>Desulfovibrio vulgaris, D. desulfuricans</td><td>dechlorination of CP and PCBs</td><td>Baxter-","[135, 314, 1032, 1153]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
68,3,number,67,"[1056, 1394, 1084, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
69,0,header,ACCEPTED MANUSCRIPT,"[385, 31, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
69,1,figure_title,Table 8. Catalytic 4-nitrophenol degradation and catalytic treatment of other aqueous organic compounds,"[136, 143, 1087, 202]",table_caption,0.9,"[""table prefix matched: Table 8. Catalytic 4-nitrophenol degradation and catalytic t""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
69,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Sesbania drummondii</td><td>reduction of 4-nitrophenol</td><td>Sharma et al.</td></tr><tr><td>,"[133, 207, 1086, 915]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
69,3,number,68,"[1056, 1393, 1085, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
70,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
70,1,figure_title,Table 9. Catalytic Cr(VI) reduction,"[137, 222, 514, 251]",table_caption,0.9,"[""table prefix matched: Table 9. Catalytic Cr(VI) reduction""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
70,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>E. coli mutant strains</td><td>reduction of Cr(VI) to Cr(III)</td><td>Deplanche et al.</td></t,"[135, 261, 1081, 723]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
70,3,vision_footnote,* mixed precious metals,"[137, 717, 382, 744]",footnote,0.7,"[""vision_footnote label: * mixed precious metals""]",footnote,0.7,,unknown_like,none,True,True
70,4,number,69,"[1056, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
71,0,header,ACCEPTED MANUSCRIPT,"[384, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
71,1,figure_title,Table 10. Catalytic organic synthesis,"[136, 222, 546, 251]",table_caption,0.9,"[""table prefix matched: Table 10. Catalytic organic synthesis""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
71,2,table,"<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>D. desulfuricans, Bacillus sphaericus</td><td>hydrogenation of itaconic acid</td><td>Creamer e","[132, 261, 1099, 1001]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
71,3,number,70,"[1056, 1393, 1086, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
72,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
72,1,figure_title,Table 11. Energy-related applications,"[137, 277, 552, 306]",table_caption,0.9,"[""table prefix matched: Table 11. Energy-related applications""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
72,2,table,"<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>Cupriavidus necator, Pseudomonas putida, Paracoccus denitrificans</td><td>hydrogen production ","[135, 314, 1122, 784]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
72,3,number,71,"[1056, 1393, 1084, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
73,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
73,1,figure_title,Table 12. Electrodes and sensors,"[137, 198, 507, 226]",table_caption,0.9,"[""table prefix matched: Table 12. Electrodes and sensors""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
73,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Scutellaria barbata</td><td>direct electrochemistry of 4-NP</td><td>Wang et al.</td></tr><tr><,"[131, 236, 1080, 741]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
73,3,number,72,"[1055, 1392, 1086, 1418]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
74,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 68]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
74,1,figure_title,Table 13. Application enhancements using magnetically responsive NPs,"[135, 222, 886, 251]",table_caption,0.9,"[""table prefix matched: Table 13. Application enhancements using magnetically respon""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
74,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>$ Fe_{3}O_{4} $</td><td>Thermoanaerobacter sp. TOR-39</td><td>magnetite substituted with Zn</td><td>Yeary,"[132, 263, 1074, 796]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
74,3,number,73,"[1056, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
75,0,header,ACCEPTED MANUSCRIPT,"[385, 32, 840, 69]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
75,1,figure_title,Table 14. Unique formulations and geometries,"[136, 222, 640, 251]",table_caption,0.9,"[""table prefix matched: Table 14. Unique formulations and geometries""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
75,2,table,<table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>$ CuAlO_{2} $</td><td>Humicola sp.</td><td>difficult-to-synthesize NPs</td><td>Ahmad et al.</td></tr><tr>,"[134, 261, 1077, 689]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
75,3,number,74,"[1056, 1393, 1085, 1417]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
76,0,image,,"[1, 0, 481, 759]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
76,1,image,,"[493, 0, 1910, 737]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 doc_title Accepted Manuscript [82, 139, 346, 176] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Accepted Manuscript"] frontmatter_noise 0.8 frontmatter_main_zone support_like short_fragment False False
3 1 1 text Review [81, 231, 156, 258] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 frontmatter_main_zone support_like short_fragment False False
4 1 2 text Applications of biosynthesized metallic nanoparticles – a review [80, 289, 656, 318] unknown_structural 0.8 ["page-1 zone title_zone: Applications of biosynthesized metallic nanoparticles \u2013 a re"] paper_title 0.8 frontmatter_main_zone support_like none False True
5 1 3 text Adam Schröfel, Gabriela Kratošová, Ivo Šafařík, Mirka Šafaříková, Ivan Raška, Leslie M Shor [80, 345, 729, 404] authors 0.8 ["page-1 zone author_zone: Adam Schr\u00f6fel, Gabriela Krato\u0161ov\u00e1, Ivo \u0160afa\u0159\u00edk, Mirka \u0160afa\u0159\u00ed"] authors 0.8 frontmatter_main_zone support_like none True True
6 1 4 text PII: S1742-7061(14)00234-7 [80, 433, 516, 460] frontmatter_noise 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none False False
7 1 5 text DOI: http://dx.doi.org/10.1016/j.actbio.2014.05.022 [82, 463, 705, 489] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: DOI: http://dx.doi.org/10.1016/j.actbio.2014.05.022"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
8 1 6 text Reference: ACTBIO 3244 [82, 493, 431, 520] frontmatter_noise 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none False False
9 1 7 image [802, 139, 1075, 504] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
10 1 8 text To appear in: Acta Biomaterialia [81, 551, 467, 578] frontmatter_noise 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none False False
11 1 9 text Received Date: 16 January 2014 [81, 607, 445, 635] frontmatter_noise 0.7 ["frontmatter noise text: Received Date: 16 January 2014"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
12 1 10 text Revised Date: 13 April 2014 [81, 638, 423, 665] frontmatter_noise 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none False False
13 1 11 text Accepted Date: 21 May 2014 [82, 667, 418, 695] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Accepted Date: 21 May 2014"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
14 1 12 text Please cite this article as: Schröfel, A., Kratošová, G., Šafařík, I., Šafaříková, M., Raška, I., Shor, L.M., Applications of biosynthesized metallic nanoparticles – a review, Acta Biomaterialia (2014 [79, 741, 1090, 829] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Please cite this article as: Schr\u00f6fel, A., Krato\u0161ov\u00e1, G., \u0160a"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
15 1 13 text This is a PDF file of an unedited manuscript that has been accepted for publication. As a service to our customers we are providing this early version of the manuscript. The manuscript will undergo co [78, 910, 1093, 1029] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: This is a PDF file of an unedited manuscript that has been a"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
16 2 0 header ACCEPTED MANUSCRIPT [384, 31, 840, 70] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
17 2 1 text Title Page for Acta Biomaterialia [446, 183, 778, 214] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
18 2 2 doc_title Applications of biosynthesized metallic nanoparticles – a review [281, 270, 941, 302] unknown_structural 0.8 ["page-1 zone title_zone: Applications of biosynthesized metallic nanoparticles \u2013 a re"] paper_title 0.8 body_zone body_like none False True
19 2 3 text Adam Schröfel $ ^{a,b,e} $, Gabriela Kratošová $ ^{c} $, Ivo Šafařík $ ^{a} $, Mirka Šafaříková $ ^{a} $, Ivan Raška $ ^{e} $ and Leslie [140, 428, 1082, 459] authors 0.8 ["page-1 zone author_zone: Adam Schr\u00f6fel $ ^{a,b,e} $, Gabriela Krato\u0161ov\u00e1 $ ^{c} $, Ivo"] authors 0.8 body_zone body_like none True True
20 2 4 text M Shor $ ^{b,d} $ [560, 481, 664, 513] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
21 2 5 text $ ^{a} $ Department of Nanobiotechnology, Institute of Nanobiology and Structural Biology of GCRC, Academy of Sciences, Ceske Budejovice, Czech Republic [135, 561, 1068, 621] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{a} $ Department of Nanobiotechnology, Institute of Nanob"] affiliation 0.8 body_zone body_like affiliation_marker True True
22 2 6 text $ ^{b} $ Department of Chemical and Biomolecular Engineering, University of Connecticut, Storrs CT, USA [136, 629, 1070, 687] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{b} $ Department of Chemical and Biomolecular Engineering"] affiliation 0.8 body_zone body_like affiliation_marker True True
23 2 7 text $ ^{c} $ Nanotechnology Centre, VSB-Technical University in Ostrava, Ostrava, Czech Republic [135, 695, 1014, 727] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{c} $ Nanotechnology Centre, VSB-Technical University in "] affiliation 0.8 body_zone body_like affiliation_marker True True
24 2 8 text $ ^{d} $ Center for Environmental Sciences & Engineering, University of Connecticut, Storrs CT, USA [136, 734, 1072, 766] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{d} $ Center for Environmental Sciences & Engineering, Un"] affiliation 0.8 body_zone body_like affiliation_marker True True
25 2 9 text $ ^{e} $ Charles University, Institute of Cellular Biology and Pathology, Prague, Czech Republic [135, 774, 1008, 807] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{e} $ Charles University, Institute of Cellular Biology a"] affiliation 0.8 body_zone body_like affiliation_marker True True
26 2 10 paragraph_title Corresponding Author: [136, 913, 389, 944] frontmatter_support 0.78 ["first-surviving-page support text: Corresponding Author:"] frontmatter_support 0.78 body_zone heading_like none True True
27 2 11 text Adam Schröfel, PhD. [136, 968, 350, 998] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
28 2 12 text Charles University, Institute of Cellular Biology and Pathology, Prague, Czech Republic [135, 1023, 996, 1054] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
29 2 13 text Albertov 4 [138, 1079, 249, 1107] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
30 2 14 text 128 00 Praha 2, Czech Republic [139, 1133, 455, 1163] body_paragraph 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_like reference_numeric_dot True True
31 2 15 text Tel: +420 777864404 [139, 1189, 355, 1218] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
32 2 16 text Fax: +420 224917418 [137, 1244, 359, 1274] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
33 2 17 text Email: adam.schrofel@gmail.com [136, 1299, 475, 1329] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
34 3 0 doc_title ACCEPTED MANUSCRIPT [385, 32, 840, 69] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
35 3 1 text Running Title: Biosynthesized metallic nanoparticles [137, 142, 656, 172] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
36 3 2 text Word Count Abstract: 116 [137, 197, 403, 225] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
37 3 3 text Word Count Body Text + Figure Legends: 9500 [137, 252, 608, 282] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
38 3 4 text Number of Tables: 14 [137, 308, 358, 336] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
39 3 5 text Number of Figures: 6 [137, 363, 353, 392] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
40 3 6 text Number of References: 184 [137, 418, 412, 446] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
41 3 7 number 2 [1067, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
42 4 0 header ACCEPTED MANUSCRIPT [385, 31, 840, 69] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
43 4 1 doc_title Applications of biosynthesized metallic nanoparticles – a review [137, 143, 906, 178] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone body_like none False True
44 4 2 text Adam Schröfel $ ^{a,b,e,*} $, Gabriela Kratošová $ ^{c} $, Ivo Šafarík $ ^{a} $, Mirka Šafaríková $ ^{a} $, Ivan Raška $ ^{e} $ and Leslie M Shor $ ^{b,d} $ [135, 253, 1083, 339] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
45 4 3 text $ ^{a} $ Department of Nanobiotechnology, Institute of Nanobiology and Structural Biology of GCRC, Academy of Sciences, Ceske Budejovice, Czech Republic [136, 387, 1068, 446] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
46 4 4 text $ ^{b} $ Department of Chemical and Biomolecular Engineering, University of Connecticut, Storrs CT, USA [136, 453, 1069, 511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
47 4 5 text $ ^{c} $ Nanotechnology Centre, VSB-Technical University in Ostrava, Ostrava, Czech Republic [136, 521, 1013, 551] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
48 4 6 text $ ^{d} $ Center for Environmental Sciences & Engineering, University of Connecticut, Storrs CT, USA $ ^{e} $ Charles University, Institute of Cellular Biology and Pathology, Prague, Czech Republic * [134, 560, 1073, 672] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
49 4 7 paragraph_title ABSTRACT [172, 695, 314, 724] abstract_heading 0.95 ["abstract heading"] abstract_heading 0.95 body_zone heading_like short_fragment True True
50 4 8 abstract Here we offer a comprehensive review of the applications of biosynthesized metallic nanoparticles (NPs). Biosynthesis of metallic NPs is the subject of recent reviews, which focus on the various "bott [136, 747, 1088, 1279] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 body_zone body_like none True True
51 4 9 paragraph_title Keywords [138, 1304, 258, 1333] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Keywords"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
52 4 10 number 3 [1068, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
53 5 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
54 5 1 text Biosynthesis; metallic nanoparticles; nanomedicine; bioimaging; sensors [136, 145, 902, 175] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
55 5 2 paragraph_title 1. Introduction [138, 265, 316, 292] section_heading 0.85 ["paragraph_title label with numbering: 1. Introduction"] section_heading 0.85 body_zone heading_like heading_numbered True True
56 5 3 text The unique properties of nano-scale materials have given rise to tremendous research activity directed towards nanoparticle (NP) fabrication, characterization, and applications. In order to reveal eve [135, 341, 1089, 744] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
57 5 4 text Among the key advantages of the biological approach over traditional chemical and physical NP synthesis methods is the biological capacity to catalyze reactions in aqueous media at standard temperatur [135, 754, 1088, 1157] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
58 5 5 text The properties of biosynthesized materials may differ from materials prepared by other methods. Biosynthesis can result in forms that are difficult to make using other techniques, such as alloys and w [136, 1168, 1088, 1322] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
59 5 6 number 4 [1068, 1394, 1085, 1416] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
60 6 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 69] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
61 6 1 text potential range of sizes, shapes, and compositions of biosynthesized NPs translates into a broad domain of existing and new nanomaterial applications. [135, 145, 1085, 215] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
62 6 2 text Applications of biosynthesized metal-based NPs range from various biomedical purposes (i.e., antimicrobial coatings, medical imaging, and drug delivery) to catalytic water treatment, and environmental [135, 228, 1088, 382] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
63 6 3 paragraph_title 2. Biomedical applications [135, 452, 439, 482] section_heading 0.85 ["paragraph_title label with numbering: 2. Biomedical applications"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
64 6 4 text Applications of metallic NPs in the biomedical fields are numerous, and there is a strong potential for continued growth in this area. Metallic NPs are widely used for their antimicrobial functionalit [135, 530, 1088, 891] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 6 5 paragraph_title 2.1. Antimicrobial applications [172, 949, 513, 978] subsection_heading 0.85 ["paragraph_title label with numbering: 2.1. Antimicrobial applications"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
66 6 6 text Ongoing development of antimicrobial agents is important due to the continuous selection for antibiotic resistance traits in bacteria and other pathogens. Different metallic NPs including titanium, co [135, 1029, 1087, 1223] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 6 7 text The following sections describe the key antibacterial, antiviral, and antifungal properties described in the literature for biosynthesized NPs (Tables 1-2). However, due to the large number of papers [135, 1236, 1087, 1389] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
68 6 8 number 5 [1068, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
69 7 0 doc_title ACCEPTED MANUSCRIPT [385, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
70 7 1 paragraph_title 2.1.1. Antibacterial activity [208, 144, 491, 171] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.1.1. Antibacterial activity"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
71 7 2 text AgNP exposure causes toxicity to bacteria, primarily from Ag ions released into aqueous solution following partial oxidation [5]. Ag ions and small NPs interact with the plasma membrane, disturbing ce [135, 224, 1088, 417] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
72 7 3 text The detailed mechanisms of AuNP antibacterial functionality against E. coli is described by Cui et al. [12]. AuNPs were shown to collapse membrane potential, strongly inhibiting ATPase activity and re [135, 430, 1088, 584] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
73 7 4 text Bacterial susceptibility to antimicrobial agents can depend on the cell wall structure. Bacteria are classified into two categories based on their cell wall structure: Gram-negative (G-) bacteria have [135, 595, 1088, 749] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
74 7 5 text A variety of biological materials have been used for biosynthesis of NPs with demonstrable antibacterial effects. These materials include fungal, bacterial, and algal biomass as well as extracts of bo [134, 761, 1089, 1205] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 7 6 text Antimicrobial properties of bacteria-biosynthesized NPs were illustrated in two studies by Sadhasivam et al. [15, 16]. Streptomyces hygroscopicus cells were used for biosynthesis of Ag and AuNPs with [136, 1216, 1087, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
76 7 7 number 6 [1068, 1395, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
77 8 0 doc_title ACCEPTED MANUSCRIPT [385, 32, 840, 69] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
78 8 1 text An example of algae-based NP biosynthesis is described by Merin et al. [17], where AgNPs with antibacterial properties were synthesized by microalgae strains Chaetocerus calcitrans, Chlorella salina, [135, 145, 1089, 631] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
79 8 2 text By far the most abundant studies on biosynthesized antibacterial NPs are those using plant tissues and extracts as reducing agents. As previously mentioned, biosynthesized NPs may require purification [135, 641, 1088, 961] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
80 8 3 text Other botanical extracts have been used for biosynthesis of antimicrobial AgNPs. Stem callus extract of bitter apple (Citrullus colocynthis) was used for AgNPs synthesis with demonstrated activity aga [135, 973, 1088, 1293] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
81 8 4 text Several reports have described synergistic antimicrobial effects of phytosynthesized nanoparticles used in combination with antibiotics. Ghosh et al. synthesized AgNPs prepared [136, 1303, 1087, 1374] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
82 8 5 number 7 [1068, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
83 9 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
84 9 1 text with tuber extract of Dioscorea bulbifera [25], then measured synergistic antimicrobial potential using 22 types of commercially-available antibiotics and 7 bacterial strains. For instance, they found [135, 145, 1087, 299] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
85 9 2 text Plant extracts have also been used for biosynthesis AuNPs with antibacterial activity. Kumar et al. [26] used a deciduous tree (Terminalia chebula) extract for biosynthesis of AuNPs effective against [135, 310, 1087, 505] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
86 9 3 text Biosynthesized metallic NPs that are immobilized on cotton cloth have many important applications as material for wound dressings. For example, Durán et al. [28] reported the extracellular production [135, 518, 1089, 879] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
87 9 4 text Tripathi et al. [31] examined biosynthesis of AgNPs using an aqueous extract of Azadirachta indica leaves and their subsequent immobilization on cotton cloth. These authors observed the bactericidal e [135, 890, 1088, 1168] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
88 9 5 text Antibacterial effect against E. coli was also tested with AgNPs prepared by means of the extract and powder of Curcuma longa tubers [33] then immobilized on cotton cloth. AgNPs were resuspended in wat [136, 1179, 1088, 1376] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
89 9 6 number 8 [1068, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
90 10 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 69] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
91 10 1 text into nonwoven fabrics has been demonstrated. Yang and Li [34] prepared AgNPs using mango peel extract and demonstrated antimicrobial effectiveness of these nanoparticles immobilized on a non-woven fab [135, 145, 1087, 255] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
92 10 2 text Sundaramoothi et al. [35] described a wound healing application for biosynthesized AgNPs, prepared extracellularly using the bacteria Aspergillus niger. AgNPs efficiency was demonstrated following exc [135, 268, 1088, 506] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
93 10 3 text Finally, biogenic AgNPs derived from Chrysanthemum morifolium have been added to clinical ultrasound gel. In the study, the gel was used on an ultrasound probe, and the bactericidal activity and instr [135, 517, 1086, 629] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
94 10 4 paragraph_title 2.1.2. Antifungal activity [208, 687, 469, 716] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.1.2. Antifungal activity"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
95 10 5 text Several studies have described anti-fungal activity of biosynthesized NPs. Gajbhyie et al. described antifungal properties of biosynthesized NPs against Phoma glomerata, Phoma herbarum, Fusarium semit [135, 769, 1088, 1130] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
96 10 6 text Antifungal activity of biosynthesized AuNPs has also been described. Das et al. [40] synthesized AuNPs on the surface of fungus Rhizopus oryzae and demonstrated growth inhibition of G- and G+ bacteria [136, 1141, 1088, 1336] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
97 10 7 number 9 [1068, 1394, 1084, 1416] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
98 11 0 doc_title ACCEPTED MANUSCRIPT [385, 32, 839, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
99 11 1 paragraph_title 2.1.3. Antiviral activity [209, 144, 452, 171] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.1.3. Antiviral activity"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
100 11 2 text Although viruses also represent serious problems in medicine or agriculture, there have been relatively few reports of antiviral activity of biosynthesized NPs. Vijayakumar and Prasad [42] described a [136, 224, 1087, 418] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
101 11 3 text In another study, De Gusseme et al. [43] described virus inhibition by zero-valent cerium produced by aqueous Ce(III) amended to Leptothrix discophora and Pseudomonas putida cultures. As-prepared ceri [135, 431, 1088, 874] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
102 11 4 paragraph_title 2.1.4. Anti-parasite applications [208, 933, 534, 961] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.1.4. Anti-parasite applications"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
103 11 5 text Biosynthesized NPs are effective against various disease-causing insects or parasites. Santhoshkumar et al. [46] compared larvicidal activity of AgNPs biosynthesized using different lotus leaf (Nelumb [135, 1012, 1087, 1291] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 11 6 text In another study, the larvicidal properties of AgNPs biosynthesized with henna (Lawsonia inermis) leaf extract was determined for human head louse Pediculus humanus capitis and sheep [137, 1302, 1087, 1373] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
105 11 7 number 10 [1057, 1395, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
106 12 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
107 12 1 text body louse, Bovicola ovis [48]. The study determined lousicidal activity using both a direct contact method (P. humanus) and an impregnated filter paper method (B. ovis). Finally, acaricidal activity [135, 145, 1087, 298] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
108 12 2 paragraph_title 2.2. Drug delivery and cancer treatment [172, 357, 607, 384] subsection_heading 0.85 ["paragraph_title label with numbering: 2.2. Drug delivery and cancer treatment"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
109 12 3 text Biosynthesized NPs can interact with and alter the function of certain mammalian tissues. For example, metallic NPs can interfere with the antioxidant defense mechanism leading to accumulation of reac [134, 438, 1088, 1006] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
110 12 4 paragraph_title 2.2.1. Biocompatibility [208, 1063, 449, 1092] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.2.1. Biocompatibility"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
111 12 5 text Whenever NPs are used for in vivo applications, biocompatibility with normal tissue is an important consideration. Moulton et al. [51] described biosynthesis of AgNPs using tea leaf extract as a reduc [136, 1145, 1088, 1380] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
112 12 6 number 11 [1057, 1395, 1084, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
113 13 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
114 13 1 text biosynthesized AgNPs may be attributed to the antioxidant effect of polyphenol and flavonoid surfactants. [136, 144, 1087, 213] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
115 13 2 text Kumar et al. [20] described the blood compatibility of AuNPs synthesized with ginger (Zingiber officinale) extract. Upon contact with human blood, these AuNPs were shown to be non-platelet activating, [135, 228, 1088, 423] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
116 13 3 paragraph_title 2.2.2. Anti-cancer NPs [208, 481, 448, 508] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.2.2. Anti-cancer NPs"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
117 13 4 text Cytotoxicology studies against various cancer cell lines have been described for biosynthesized NPs. Amarnath et al. [52] published experiments using AuNPs synthesized using phytochemicals present in [135, 562, 1089, 963] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
118 13 5 text In contrast, other reports have demonstrated anti-cancer effects from AgNPs. Biosynthesis of anti-tumor AgNPs using Piper longum leaf as a reducing and capping agent was reported by Jacob et al. [55]. [134, 976, 1089, 1377] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
119 13 6 number 12 [1057, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
120 14 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
121 14 1 text performed using stem latex of Euphorbia nivulia [50]. This study concluded that copper NPs are toxic to A549 (human lung carcinoma) cells in a dose-dependent manner. [135, 145, 1086, 214] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
122 14 2 text Recently, the anti-metastatic activity of biologically synthesized AuNPs was reported for the human fibrosarcoma cell line HT-1080 [59]. Although the biosynthesized AuNPs had no toxic effects on HT-10 [135, 228, 1087, 380] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
123 14 3 paragraph_title 2.2.3. NP drug carriers [208, 439, 447, 467] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.2.3. NP drug carriers"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
124 14 4 text Magnetosomes are naturally-occurring metallic nanoparticles found in some species of magnetotactic bacteria. These chains are membranous prokaryotic structures, and are comprised of approximately 20 m [135, 519, 1088, 1090] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
125 14 5 text Another drug delivery study employed porphyran from marine algae $ Porphyra\ vietnamensis $ as a reducing and capping agent for biosynthesis of AuNPs [62]. These NPs were used as a carrier for DOX. T [135, 1099, 1088, 1293] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
126 14 6 paragraph_title 2.3. Medical diagnostics and sensors [171, 1354, 567, 1381] subsection_heading 0.85 ["paragraph_title label with numbering: 2.3. Medical diagnostics and sensors"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
127 14 7 number 13 [1057, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
128 15 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
129 15 1 text Biosynthesized NPs are also making important contributions to medicine in the sensing and diagnostics areas (Table 4). These materials have been successfully incorporated into chemical sensors that ca [135, 145, 1089, 465] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
130 15 2 text Hydrogen peroxide has been acknowledged as a diagnostic marker of oxidative stress playing an important role in asthma or chronic obstructive pulmonary disease (COPD). Wang et al. [65] constructed a h [135, 477, 1088, 877] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
131 15 3 text Other authors also used a GCE modified with biosynthesized nanoparticles for electrochemical sensing. Zheng et al. [66] synthesized Au-Ag alloy NPs using yeast cells and demonstrated an enhanced elect [135, 890, 1088, 1125] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
132 15 4 text Another possible medical application of biogenic AuNPs was proposed and tested by MubarakAli et al. [67], who suggested that conjugation of DNA with biosynthesized nanoparticles can be used for diagno [135, 1137, 1087, 1250] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
133 15 5 paragraph_title 2.4. Medical imaging applications [171, 1309, 541, 1338] subsection_heading 0.85 ["paragraph_title label with numbering: 2.4. Medical imaging applications"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
134 15 6 number 14 [1057, 1395, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
135 16 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
136 16 1 text The optical properties of metallic nanocrystals have been of interest for centuries. Incorporation of biosynthesis methods has made possible the preparation of metal NPs with a range of sizes, shapes [135, 145, 1089, 424] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
137 16 2 text AuNPs biosynthesis by silica-encapsulated micro-algae Klebsormidium flaccidum leads to formation of a “living” bio-hybrid material [70]. Researchers have used Raman spectroscopy for in situ imaging of [135, 435, 1088, 629] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
138 16 3 text Blue orange light emission from biosynthesized AgNPs was reported by Fayaz et al. [71]. Fungal mediated AgNPs were prepared using a Trichoderma viride filtrate. Photoluminescence measurements after la [134, 640, 1088, 836] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
139 16 4 text An important problem of modern laser medicine is the extensive exposure of the vulnerable tissues outside of the operational field. This problem can be solved by placing dyes capable of reversible dar [135, 849, 1089, 1375] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
140 16 5 number 15 [1057, 1394, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
141 17 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
142 17 1 text immediate employment as coatings in medicine or industry (e.g. to protect eyes from damage caused by exposure to focused beams and lasers). [135, 145, 1086, 214] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
143 17 2 text Fayaz et al. [76] biosynthesized AuNPs using Maduca longifolia extract and showed strong near infrared (NIR) absorption. Although some applications are not directly medical in nature, such as energy-s [135, 228, 1087, 381] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
144 17 3 text The same research team published two additional studies describing cadmium telluride quantum dots (CdTeQDs) fabricated via extracellular synthesis using Saccharomyces cerevisiae [78] and Escherichia c [135, 393, 1087, 753] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
145 17 4 text Finally, a study using Brevibacterium casei for the biosynthesis of CdSNPs [80] showed the NPs exhibit fluorescence emission even after immobilization within a polyhydroxybutyrate matrix. [135, 765, 1087, 875] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
146 17 5 paragraph_title 2.5. Other medical applications [172, 937, 517, 964] subsection_heading 0.85 ["paragraph_title label with numbering: 2.5. Other medical applications"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
147 17 6 text Several studies have also shown biosynthesized NPs have potential applications for the treatment of other diseases including diabetes and bleeding disorders. Biosynthesized AuNPs have been shown in vi [135, 1017, 1088, 1378] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
148 17 7 number 16 [1057, 1394, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
149 18 0 doc_title ACCEPTED MANUSCRIPT [385, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
150 18 1 text Free radical scavenging activity was demonstrated by Muthuvel et al. [83]. Au-NPs biosynthesized by means of Solanum nigrum were tested for the scavenging effect on 101-diphenyl-2-picrylhydrazyl radic [135, 145, 1088, 422] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 18 2 text Finally, Gopinath et al. [85] described enhanced mitotic cell division and pollen germination activity caused by AuNPs synthesized using Terminalia arjuna leaf extract. These studies demonstrate the w [136, 434, 1089, 629] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
152 18 3 paragraph_title 3. Environmental remediation applications [136, 701, 615, 730] section_heading 0.85 ["paragraph_title label with numbering: 3. Environmental remediation applications"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
153 18 4 paragraph_title 3.1. Metal biosorption, bioremediation and biorecovery [171, 793, 762, 821] subsection_heading 0.85 ["paragraph_title label with numbering: 3.1. Metal biosorption, bioremediation and biorecovery"] subsection_heading 0.85 body_zone body_like heading_numbered True True
154 18 5 text Oxidation-reduction processes are universally used for cellular metabolism; therefore biomolecules with the ability to reduce or oxidize other chemical compounds are abundant in any living cell. Many [135, 874, 1088, 1233] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
155 18 6 text The biomass of algae, fungi, bacteria, and yeast along with some biopolymers and biowaste materials are known to bind and concentrate precious metals [87]. This so-called biosorption process can repre [136, 1246, 1087, 1358] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
156 18 7 number 17 [1057, 1394, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
157 19 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
158 19 1 text of various dissolved metals from aqueous solution. The mechanisms involved in binding and concentrating metals by microbes have been extensively studied in natural environments [87]. [135, 144, 1086, 215] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
159 19 2 text Chakraborty et al. [88] demonstrated the ability of cyanobacteria and algae to bind and concentrate Au and form AuNPs. The NP formation process is specific to a particular genus, and they described NP [135, 229, 1088, 463] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
160 19 3 text Dead biomass of the macrofungus Pleurotus platypus was used for biosorption of Ag in a study by Das et al. [90]. Fungal biomass exhibited the highest Ag uptake of 46.7 mg g⁻¹ at pH 6.0 in the presence [135, 476, 1088, 755] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
161 19 4 text An example of platinum recovery by polyethyleneimine (PEI)-modified biomass was described by Won et al. [92]. In this study, PEI was attached to the surface of E. coli biomass and the resulting materi [135, 766, 1088, 1002] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
162 19 5 text Toxic concentrations of naturally-occurring arsenic in drinking water are a major public health problem in Southeast Asia. Selvakumar et al. [94] described a promising solution to this problem through [135, 1014, 1088, 1249] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
163 19 6 text Hexavalent chromium compounds are dangerous toxins, while Cr(III) ions and compounds are relatively non-toxic. Bare living cells of Shewanella algae, Pseudomonas putida and Desulfovibrio vulgaris have [136, 1263, 1088, 1375] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
164 19 7 number 18 [1057, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
165 20 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
166 20 1 text on biosynthesized PdNPs to catalytically reduce chromium. (See section 3.4 on catalytic Cr(VI) reduction.) [135, 144, 1087, 213] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
167 20 2 paragraph_title 3.2. Coupling biosorption with catalytic contaminant degradation [171, 275, 867, 303] subsection_heading 0.85 ["paragraph_title label with numbering: 3.2. Coupling biosorption with catalytic contaminant degrada"] subsection_heading 0.85 body_zone body_like heading_numbered True True
168 20 3 text Due to their large surface area per weight, metallic NPs are widely used for catalysis, and in particular, for heterogeneous catalysis. Metallic NPs offer selectivity, high activity and stability. The [135, 355, 1088, 799] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
169 20 4 paragraph_title 3.3. Catalytic degradation of organic pollutants [171, 857, 681, 885] subsection_heading 0.85 ["paragraph_title label with numbering: 3.3. Catalytic degradation of organic pollutants"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
170 20 5 paragraph_title 3.3.1. Catalytic dehalogenation [209, 961, 525, 989] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.1. Catalytic dehalogenation"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
171 20 6 text Palladium-based catalysts are able to dehalogenate aromatic compounds. This reaction is very important for organic synthesis in research and industry and also for contaminant remediation. Halogenated [136, 1040, 1088, 1319] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
172 20 7 number 19 [1057, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
173 21 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
174 21 1 text polychlorinated biphenyls (PCBs), a compound formerly used in electronic devices and as coolants, lubricants, and plasticizers. [135, 145, 1086, 215] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
175 21 2 text Baxter-Plant et al. [99, 100] described dehalogenation of chlorophenol (CP) and selected PCB congeners including 4-chlorobiphenyl, 2,4,6-trichlorobiphenyl, 2,3,4,5-tetrachlorobiphenyl and 2,2',4,4',6, [136, 228, 1089, 506] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
176 21 3 text Shewanella oneidensis is another strain of bacteria that has been used to biosynthesize PdNPs for dehalogenation of PCB and other chlorinated organic compounds. De Windt et al. described PdNPs precipi [135, 516, 1088, 795] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
177 21 4 text In a follow-on report, De Windt et al. [103] performed a detailed assessment of the bioreduction process and its conditions. In particular, these authors investigated the factors influencing the parti [134, 806, 1088, 1084] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
178 21 5 text Macaskie et al. [104] extensively studied catalytic dechlorination of 2-chlorophenol, pentachlorophenol, and various PCB congeners by palladized cells of Desulfovibrio and Escherichia coli. Redwood et [135, 1096, 1088, 1376] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
179 21 6 number 20 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
180 22 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
181 22 1 text Other studies have demonstrated the use of palladized cells for dechlorination of the common groundwater contaminant trichlorethylene (TCE). Hennebel et al. described two reactor geometries for cataly [135, 146, 1089, 423] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
182 22 2 text Other authors used Fe and Fe/Pd NPs biosynthesized with tea extract (Camellia sinensis) then immobilized in polymer membranes for catalytic degradation of TCE [109]. These authors found the reaction r [134, 435, 1090, 755] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
183 22 3 text Biosynthesized PdNPs can also catalytically dehalogenate brominated organic compounds. Harrad et al. demonstrated that palladized D. desulfuricans are able to catalytically dehalogenate polybrominated [135, 765, 1088, 1124] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
184 22 4 text Two studies have demonstrated biosynthesized NPs can remediate diatrizic acid (or diatrizoate), a radiocontrast agent. Hennebel et al. [112] demonstrated PdNPs encapsulated on PVDF membranes effective [135, 1137, 1088, 1373] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
185 22 5 number 21 [1055, 1394, 1084, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
186 23 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
187 23 1 text reduction and by catalytic reduction using the hydrogen produced at the cathode of the microbial electrolysis cell. [135, 144, 1086, 213] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
188 23 2 paragraph_title 3.3.2. Catalytic 4-nitrophenol degradation [208, 275, 630, 303] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.2. Catalytic 4-nitrophenol degradation"] sub_subsection_heading 0.85 body_zone heading_like heading_numbered True True
189 23 3 text The rapid development and use of synthetic pesticides, dyes, explosives and pharmaceuticals in the middle of the last century has resulted in a legacy of toxic nitro-aromatic contamination in soil and [135, 355, 1088, 632] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
190 23 4 text The first report of PNP reduction employing biosynthesized NPs was published by Sharma et al. [114] Seedlings of the plant Sesbania drummondii were grown in a hydrogen tetrachloroaurate solution and s [134, 644, 1088, 797] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
191 23 5 text Subsequently, others have used plant materials to biosynthesize noble metal NPs for catalytic PNP reduction. Huang et al. [115] carried out an extensive study using 21 species of traditional Chinese m [134, 810, 1088, 1171] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
192 23 6 text Bacteria have also been used for biosynthesis of bimetallic Pd/AuNPs for PNP reduction. Hosseinkhani et al. [117] formed bio-supported Pd(0) and Au(0) NPs on the surface of Cupriavidus necator cells. [136, 1182, 1088, 1336] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
193 23 7 number 22 [1055, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
194 24 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
195 24 1 text core-shell structure, they exhibited superior catalytic efficiency in PNP conversion compared with monometallic NPs. [135, 144, 1087, 214] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
196 24 2 text Catalytic PNP reduction has also been done using animal-derived materials for biosynthesis of NPs. Jia et al. [118] described AgNP biosynthesis and immobilization using a cuttlebone-derived organic ma [135, 228, 1088, 590] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
197 24 3 paragraph_title 3.3.3. Catalytic treatment of other aqueous organic compounds [208, 647, 831, 675] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.3. Catalytic treatment of other aqueous organic compound"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
198 24 4 text Other organic compounds have been effectively reduced using biosynthesized NPs. Iron and gold NPs have been used to catalytically remove dyes from aqueous solutions. In one study, FeNPs biosynthesized [134, 725, 1089, 1297] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
199 24 5 text Finally, Forrez et al. [124] used biosynthesized PdNPs in a membrane reactor to remove micropollutants such as ibuprofen (>95%), diclofenac (86%), mecoprop (81%), and triclosan [136, 1307, 1088, 1378] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
200 24 6 number 23 [1055, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
201 25 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
202 25 1 text (>78%) from the secondary effluent of a sewage treatment plant. The authors suggested that the removal mechanisms could include chemical oxidation by PdNPs and/or biological removal by Pseudomonas put [135, 144, 1087, 256] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
203 25 2 paragraph_title 3.4. Catalytic Cr(VI) reduction [171, 357, 514, 384] subsection_heading 0.85 ["paragraph_title label with numbering: 3.4. Catalytic Cr(VI) reduction"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
204 25 3 text Another important environmental application for biosynthesized NPs is the catalytic reduction of the powerful oxidant Cr(VI) to the relatively non-toxic valence state Cr(III). Several recent studies h [135, 437, 1089, 1006] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
205 25 4 text Unlike the previous experiments, all carried out under batch conditions, Humphries et al. [127] reported a continuous flow system for Cr(VI)/Cr(III) reduction. In this study, biosupported PdNPs formed [134, 1016, 1089, 1337] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
206 25 5 number 24 [1055, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
207 26 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
208 26 1 text Beauregard et al. [130] used a biofilm-forming bacteria species Serratia sp. to mediate adherence of bio-PdNPs to porous polyurethane foam. The foam was used as a scaffold for the catalyst and support [135, 145, 1088, 547] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
209 26 2 paragraph_title 3.5. Biosynthesized NPs to enhance membrane treatment processes [171, 606, 880, 634] subsection_heading 0.85 ["paragraph_title label with numbering: 3.5. Biosynthesized NPs to enhance membrane treatment proces"] subsection_heading 0.85 body_zone body_like heading_numbered True True
210 26 3 text Technologies to reduce biofouling can greatly enhance the performance of membrane-based water treatment processes. Zhang et al. [132], showed different amounts of biogenic AgNPs formed by Lactobacillu [135, 686, 1088, 1004] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
211 26 4 paragraph_title 4. Industrially important applications [136, 1076, 553, 1106] section_heading 0.85 ["paragraph_title label with numbering: 4. Industrially important applications"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
212 26 5 paragraph_title 4.1. Catalytic organic synthesis [174, 1184, 514, 1211] subsection_heading 0.85 ["paragraph_title label with numbering: 4.1. Catalytic organic synthesis"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
213 26 6 text Cheap and specific catalysts for commercially-important organic synthesis reactions including hydrogenation, cross-coupling reactions, and epoxidation are extremely important in industry. [136, 1264, 1085, 1334] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
214 26 7 number 25 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
215 27 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
216 27 1 text Biosynthesized palladium, gold, and platinum catalysts have been used successfully in several different organic synthesis pathways (see Table 10). [136, 144, 1087, 215] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
217 27 2 text Creamer et al. [133] used palladized cells of bacterial strains D. desulfuricans (G-) and Bacillus sphaericus (G+) for catalytic hydrogenation of itaconic (or methylenesuccinic) acid. Comparisons perf [135, 228, 1088, 629] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
218 27 3 text Creamer et al. [136] demonstrated the use of biosynthesized PdNPs to catalyze non-aqueous hydrogenation. D. desulfuricans and B. sphaericus produced palladium catalyst, which catalyzed hydrogenation o [135, 641, 1087, 794] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
219 27 4 text Unlike the aforementioned studies, Jia et al. [137] published a method for PdNPs biosynthesis that does not require the $ H_{2} $ donor. Biosynthetic PdNPs were formed by the reduction of palladium c [135, 807, 1089, 1043] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
220 27 5 text Biosynthesized NPs have been used to catalyze cross-coupling reactions (i.e., C-C bond formation). Sobjerg et al. [138] showed palladized bacteria Cupriavidus necator, Pseudomonas putida and Staphyloc [135, 1056, 1089, 1375] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
221 27 6 number 26 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
222 28 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 69] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
223 28 1 text In addition to palladium, biosynthesized gold and platinum NPs have been used to catalyze other organic synthesis reactions. Du et al. [141] used biosynthesized AuNPs to catalyze propylene epoxidation [135, 145, 1088, 669] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
224 28 2 text Finally, biosynthesized PtNPs have been used to catalyze synthesis of the organic dye antipyrilquinoneimine from aniline and 4-aminoantipyrine in acidic aqueous solution [144]. In this report, honey-m [135, 682, 1087, 835] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
225 28 3 paragraph_title 4.2. Energy-related applications [171, 894, 525, 923] subsection_heading 0.85 ["paragraph_title label with numbering: 4.2. Energy-related applications"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
226 28 4 text The ability of different organisms to reduce and absorb precious metal salts and form NPs has been used to enhance several aspects of fuel cell performance. Biogenic NPs have been used to produce $ H [134, 976, 1088, 1128] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
227 28 5 text Several investigators have used biosynthesized PdNPs for H₂ production. Bunge et al. [101] used three species of bacteria (Cupriavidus necator, Pseudomonas putida, and Paracoccus denitrificans) to bio [135, 1141, 1088, 1378] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
228 28 6 number 27 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
229 29 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
230 29 1 text precious metal nanocatalyst, and bio-hydrogen production. These authors also described how E. coli with modified hydrogenase and dehydrogenase regulation could be used to further enhance performance. [135, 145, 1087, 256] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
231 29 2 text Biosynthesized NPs have been incorporated into fuel cells to catalyze chemical reactions and in electrode construction. Yong et al. [147] bioaccumulated Pt and Pd as NPs using Desulfovibrio desulfuric [135, 268, 1088, 629] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
232 29 3 text Orozco et al. [150] studied the ability of PdNPs biosynthesized by two different strains of E. coli to both produce hydrogen via fermentation, and also to convert $ H_{2} $ into energy in a fuel cell [135, 640, 1088, 918] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
233 29 4 text Yong et al. [151] described the coupling of waste biorefining with fuel cell power generation using biosynthesis to recover precious metals and to form nanocatalysts. Palladium was biorecovered from i [136, 930, 1087, 1128] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
234 29 5 paragraph_title 4.3. Electrodes and sensors [174, 1185, 473, 1212] subsection_heading 0.85 ["paragraph_title label with numbering: 4.3. Electrodes and sensors"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
235 29 6 text Fundamental electrochemical phenomena can be better understood through nanoscale science and nanotechnology, and performance of electrodes and sensors can be altered or enhanced using biosynthesized n [136, 1265, 1087, 1377] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
236 29 7 number 28 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
237 30 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
238 30 1 text studied in detail, including their surface chemistry, biological compatibility, and electrical conductivity. For nanoelectrochemical applications, special attention has been paid to AuNPs because they [135, 145, 1089, 422] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
239 30 2 text Several studies have examined the electrical transmission properties of biosynthesized NPs incorporated into electrodes. In one study, dried whole plant extract from Scutellaria barbata was used for b [134, 435, 1088, 960] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
240 30 3 text Various electrochemical sensing applications can make use of the unique properties of biosynthesized NPs. Jha and Prasad [155] introduced a biosynthetic method to prepare ferroelectric $ BaTiO_{3} $ [134, 974, 1088, 1333] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
241 30 4 number 29 [1056, 1394, 1085, 1416] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
242 31 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 69] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
243 31 1 text electrophoretic mobility, and dispersion of cell conductivity for yeast cells Candida albicans with Ag precipitate prepared using the reducer hydrazine. [136, 144, 1087, 215] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
244 31 2 text Du et al. [158] introduced the bioreduction of Au by E. coli cells and their application on direct electrochemical sensing of hemoglobin. Biosynthesized AuNPs bound to the surface of the bacterial cel [135, 229, 1089, 546] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
245 31 3 text Biosynthesized CdSNPs have also been used to fabricate a heterojunction with asymmetric electronic transfer properties [159]. Semiconducting wurtzite-type structured NPs were prepared using Schizosacc [135, 558, 1088, 837] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
246 31 4 text Biogenic AuNPs in polyvinyl alcohol- $ KH_{2}PO_{4} $ films were used by Uddin et al. [160] to ameliorate the percolative behavior of these nanocomposite films and to generate high dielectric permitti [135, 849, 1088, 1002] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
247 31 5 text The unique optical properties of metallic nanoparticles can be also used for chemical sensing. AuNPs and AgNPs reduced using the tomato extract (Solanum lycopersicum) were used for detection of metall [135, 1014, 1088, 1166] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
248 31 6 number 30 [1057, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
249 32 0 header ACCEPTED MANUSCRIPT [385, 32, 839, 68] noise 0.9 ["header label"] noise 0.9 body_zone unknown_like short_fragment False False
250 32 1 paragraph_title 5. Applications for magnetically responsive NPs [134, 145, 668, 175] section_heading 0.85 ["paragraph_title label with numbering: 5. Applications for magnetically responsive NPs"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
251 32 2 text Magnetotactic bacteria have a natural ability to synthesize magnetite NPs (MNPs) that are useful for various applications (Table 13). Only certain NP forms are synthesized spontaneously by magnetotact [135, 235, 1088, 430] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
252 32 3 text The yield and properties of MNPs can be manipulated and optimized to suit a particular purpose. Kundu et al. [167] described changes in magnetosome size, number, and alignment with biosynthesis perfor [134, 443, 1089, 1013] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
253 32 4 text Telling et al. [172] employed MNPs to catalyze Cr(VI) reduction (see also section 3.4). MNPs were biosynthesized by Geobacter sulfurreducens and the reduction of Cr(VI) to Cr(III) at sites within the [134, 1022, 1088, 1343] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
254 32 5 number 31 [1056, 1394, 1084, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
255 33 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
256 33 1 text One key advantage of MNPs is the ease of collection and recovery. Magnetic properties can also ensure particles remain dispersed and distributed throughout a reaction vessel. Coker et al. [174] employ [135, 145, 1088, 382] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
257 33 2 paragraph_title 6. Biosynthesis of unique formulations and geometries [135, 453, 740, 483] section_heading 0.85 ["paragraph_title label with numbering: 6. Biosynthesis of unique formulations and geometries"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
258 33 3 text The properties and potential applications of nano-scale materials are determined by their chemical composition, crystal structure, particle size, and particle shape. Several studies have described bio [135, 545, 1088, 699] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
259 33 4 text NPs with certain chemical compositions have been difficult to synthesize using conventional chemical methods. Ahmad et al. [176] described fungal biosynthesis of transparent p-type conducting oxide $ [135, 710, 1089, 1070] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
260 33 5 text Creation of metal alloys by casting requires heavy equipment and high temperatures. Bottom-up biosynthesis of Au–Ag–Cu alloys by Brassica juncea seed was introduced by Haverkamp et al. [178] Similar s [135, 1083, 1087, 1278] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
261 33 6 text NP biosynthesis can also result in NPs with various useful shapes. Ankamwar et al. [182] described the phytosynthesis of Au nanotriangles using tamarind (Tamarindus indica) leaf [136, 1289, 1088, 1359] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
262 33 7 number 32 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
263 34 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
264 34 1 text extract. The authors measured the electrical conductivity of these triangular NPs in different organic solvents, and suggested a possible chemical vapor sensor application. The biosynthesis of Ag nano [136, 145, 1089, 504] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
265 34 2 text Sathish Kumar et al. [184] biosynthesized Au NPs by means of yeast Hansenula anomala and its extract. These AuNPs were further stabilized by addition of two different types of poly(amido amine) dendri [136, 518, 1088, 669] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
266 34 3 paragraph_title 7. Future outlook of biosynthesized NPs [136, 743, 584, 771] section_heading 0.85 ["paragraph_title label with numbering: 7. Future outlook of biosynthesized NPs"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
267 34 4 text This review highlights the key medical, environmental, and industrial applications of biosynthesized NPs. The natural machinery of all biological systems to execute redox reactions with specificity, i [135, 834, 1089, 1194] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
268 34 5 text Biosynthesized NPs have been used in nearly every field where traditional NPs have been employed. One of the challenges of biogenic NPs is separation of NPs from the biological material. In addition, [136, 1206, 1087, 1362] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
269 34 6 number 33 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
270 35 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 840, 68] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone unknown_like short_fragment False True
271 35 1 text Considering the volume and growth in NP biosynthesis research in recent years, the field appears to be on the threshold of much more widespread and intensive research into applications. Meanwhile, fur [135, 144, 1086, 298] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
272 35 2 paragraph_title Acknowledgements [136, 351, 360, 379] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
273 35 3 text This book chapter was supported by the Grant Agency of the Czech Republic (grant number P302/12/G157) and by the Charles University in Prague (projects UNCE 204022 and Prvouk/1LF/1). This publication [135, 411, 1088, 646] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
274 35 4 paragraph_title REFERENCES [173, 707, 369, 736] reference_heading 0.9 ["references heading: REFERENCES"] reference_heading 0.9 reference_zone heading_like short_fragment True True
275 35 5 reference_content [1] Pérez-de-Mora A, Burgos P, Madejón E, Cabrera F, Jaeckel P, Schloter M. Microbial community structure and function in a soil contaminated by heavy metals: effects of plant growth and different ame [135, 756, 1086, 864] reference_item 0.85 ["reference content label: [1] P\u00e9rez-de-Mora A, Burgos P, Madej\u00f3n E, Cabrera F, Jaeckel"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
276 35 6 reference_content [2] Ahmad A, Mukherjee P, Senapati S, Mandal D, Khan MI, Kumar R, et al. Extracellular biosynthesis of silver nanoparticles using the fungus Fusarium oxysporum. Colloids Surf B Biointerfaces 2003;28:3 [137, 879, 1086, 989] reference_item 0.85 ["reference content label: [2] Ahmad A, Mukherjee P, Senapati S, Mandal D, Khan MI, Kum"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
277 35 7 reference_content [3] Thakkar KN, Mhatre SS, Parikh RY. Biological synthesis of metallic nanoparticles. Nanomedicine-Nanotechnology Biology and Medicine 2010;6:257-62. [137, 1003, 1082, 1072] reference_item 0.85 ["reference content label: [3] Thakkar KN, Mhatre SS, Parikh RY. Biological synthesis o"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
278 35 8 reference_content [4] Narayanan KB, Sakthivel N. Biological synthesis of metal nanoparticles by microbes. Adv Colloid Interface Sci 2010;156:1-13. [138, 1086, 1084, 1155] reference_item 0.85 ["reference content label: [4] Narayanan KB, Sakthivel N. Biological synthesis of metal"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
279 35 9 reference_content [5] Chaloupka K, Malam Y, Seifalian AM. Nanosilver as a new generation of nanoproduct in biomedical applications. Trends Biotechnol 2010;28:580-8. [137, 1169, 1085, 1238] reference_item 0.85 ["reference content label: [5] Chaloupka K, Malam Y, Seifalian AM. Nanosilver as a new "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
280 35 10 reference_content [6] Alanazi FK, Radwan AA, Alsarra IA. Biopharmaceutical applications of nanogold. Saudi Pharmaceutical Journal 2010;18:179-93. [137, 1251, 1084, 1319] reference_item 0.85 ["reference content label: [6] Alanazi FK, Radwan AA, Alsarra IA. Biopharmaceutical app"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
281 35 11 number 34 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
282 36 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
283 36 1 reference_content [7] Patra CR, Bhattacharya R, Mukhopadhyay D, Mukherjee P. Fabrication of gold nanoparticles for targeted therapy in pancreatic cancer. Adv Drug Del Rev 2010;62:346-61. [137, 142, 1084, 212] reference_item 0.85 ["reference content label: [7] Patra CR, Bhattacharya R, Mukhopadhyay D, Mukherjee P. F"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
284 36 2 reference_content [8] Pankhurst QA, Connolly J, Jones SK, Dobson J. Applications of magnetic nanoparticles in biomedicine. J Phys D: Appl Phys 2003;36:R167. [137, 225, 1084, 296] reference_item 0.85 ["reference content label: [8] Pankhurst QA, Connolly J, Jones SK, Dobson J. Applicatio"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
285 36 3 reference_content [9] Pankhurst QA, Thanh NTK, Jones SK, Dobson J. Progress in applications of magnetic nanoparticles in biomedicine. J Phys D: Appl Phys 2009;42:224001. [137, 308, 1083, 378] reference_item 0.85 ["reference content label: [9] Pankhurst QA, Thanh NTK, Jones SK, Dobson J. Progress in"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
286 36 4 reference_content [10] Rai M, Yadav A, Gade A. Silver nanoparticles as a new generation of antimicrobials. Biotechnol Adv 2009;27:76-83. [137, 391, 1082, 460] reference_item 0.85 ["reference content label: [10] Rai M, Yadav A, Gade A. Silver nanoparticles as a new g"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
287 36 5 reference_content [11] Marambio-Jones C, Hoek EMV. A review of the antibacterial effects of silver nanomaterials and potential implications for human health and the environment. J Nanopart Res 2010;12:1531-51. [136, 472, 1085, 582] reference_item 0.85 ["reference content label: [11] Marambio-Jones C, Hoek EMV. A review of the antibacteri"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
288 36 6 reference_content [12] Cui Y, Zhao Y, Tian Y, Zhang W, Lü X, Jiang X. The molecular mechanism of action of bactericidal gold nanoparticles on Escherichia coli. Biomaterials 2012;33:2327-33. [137, 598, 1087, 668] reference_item 0.85 ["reference content label: [12] Cui Y, Zhao Y, Tian Y, Zhang W, L\u00fc X, Jiang X. The mole"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
289 36 7 reference_content [13] Vigneshwaran N, Kathe AA, Varadarajan PV, Nachane RP, Balasubramanya RH. Silver–Protein (Core–Shell) Nanoparticle Production Using Spent Mushroom Substrate. Langmuir 2007;23:7113-7. [136, 680, 1084, 792] reference_item 0.85 ["reference content label: [13] Vigneshwaran N, Kathe AA, Varadarajan PV, Nachane RP, B"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
290 36 8 reference_content [14] Raheman F, Deshmukh S, Ingle A, Gade A, Rai M. Silver Nanoparticles: Novel Antimicrobial Agent Synthesized from an Endophytic Fungus Pestalotia sp. Isolated from leaves of Syzygium cumini (L). Na [136, 805, 1086, 918] reference_item 0.85 ["reference content label: [14] Raheman F, Deshmukh S, Ingle A, Gade A, Rai M. Silver N"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
291 36 9 reference_content [15] Sadhasivam S, Shanmugam P, Yun K. Biosynthesis of silver nanoparticles by Streptomyces hygroscopicus and antimicrobial activity against medically important pathogenic microorganisms. Colloids Sur [136, 930, 1085, 1041] reference_item 0.85 ["reference content label: [15] Sadhasivam S, Shanmugam P, Yun K. Biosynthesis of silve"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
292 36 10 reference_content [16] Sadhasivam S, Shanmugam P, Veerapandian M, Subbiah R, Yun K. Biogenic synthesis of multidimensional gold nanoparticles assisted by Streptomyces hygroscopicus and its electrochemical and antibacte [136, 1053, 1086, 1165] reference_item 0.85 ["reference content label: [16] Sadhasivam S, Shanmugam P, Veerapandian M, Subbiah R, Y"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
293 36 11 reference_content [17] Merin DD, Prakash S, Bhimba BV. Antibacterial screening of silver nanoparticles synthesized by marine micro algae. Asian Pac J Trop Med 2010;3:797-9. [136, 1176, 1086, 1248] reference_item 0.85 ["reference content label: [17] Merin DD, Prakash S, Bhimba BV. Antibacterial screening"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
294 36 12 reference_content [18] Venkatpurwar V, Pokharkar V. Green synthesis of silver nanoparticles using marine polysaccharide: Study of in-vitro antibacterial activity. Mater Lett 2011;65:999-1002. [137, 1260, 1086, 1330] reference_item 0.85 ["reference content label: [18] Venkatpurwar V, Pokharkar V. Green synthesis of silver "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
295 36 13 number 35 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
296 37 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
297 37 1 reference_content [19] Abdel-Raouf N, Al-Enazi NM, Ibraheem IBM. Green biosynthesis of gold nanoparticles using Galaxaura elongata and characterization of their antibacterial activity. Arab J Chem. [137, 142, 1085, 212] reference_item 0.85 ["reference content label: [19] Abdel-Raouf N, Al-Enazi NM, Ibraheem IBM. Green biosynt"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
298 37 2 reference_content [20] Kumar KP, Paul W, Sharma CP. Green synthesis of gold nanoparticles with Zingiber officinale extract: Characterization and blood compatibility. Process Biochem 2011;46:2007-13. [137, 225, 1086, 296] reference_item 0.85 ["reference content label: [20] Kumar KP, Paul W, Sharma CP. Green synthesis of gold na"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
299 37 3 reference_content [21] Vaseeharan B, Ramasamy P, Chen JC. Antibacterial activity of silver nanoparticles (AgNps) synthesized by tea leaf extracts against pathogenic Vibrio harveyi and its protective efficacy on juvenil [136, 309, 1086, 420] reference_item 0.85 ["reference content label: [21] Vaseeharan B, Ramasamy P, Chen JC. Antibacterial activi"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
300 37 4 reference_content [22] Satyavani K, Ramanathan T, Gurudeeban S. Green Synthesis Of Silver Nanoparticles By Using Stem Derived Callus Extract Of Bitter Apple (Citrullus colocynthis). Digest Journal of Nanomaterials and [136, 432, 1087, 543] reference_item 0.85 ["reference content label: [22] Satyavani K, Ramanathan T, Gurudeeban S. Green Synthesi"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
301 37 5 reference_content [23] Kaviya S, Santhanalakshmi J, Viswanathan B, Muthumary J, Srinivasan K. Biosynthesis of silver nanoparticles using citrus sinensis peel extract and its antibacterial activity. Spectrochimica Acta [137, 555, 1087, 668] reference_item 0.85 ["reference content label: [23] Kaviya S, Santhanalakshmi J, Viswanathan B, Muthumary J"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
302 37 6 reference_content [24] Nagajyothi PC, Lee KD. Synthesis of Plant-Mediated Silver Nanoparticles Using Dioscorea batatas Rhizome Extract and Evaluation of Their Antimicrobial Activities. Journal of Nanomaterials 2011;201 [136, 680, 1087, 792] reference_item 0.85 ["reference content label: [24] Nagajyothi PC, Lee KD. Synthesis of Plant-Mediated Silv"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
303 37 7 reference_content [25] Ghosh S, Patil S, Ahire M, Kitture R, Kale S, Pardesi K, et al. Synthesis of silver nanoparticles using Dioscorea bulbifera tuber extract and evaluation of its synergistic potential in combinatio [135, 805, 1086, 917] reference_item 0.85 ["reference content label: [25] Ghosh S, Patil S, Ahire M, Kitture R, Kale S, Pardesi K"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
304 37 8 reference_content [26] Kumar KM, Mandal BK, Sinha M, Krishnakumar V. Terminalia chebula mediated green and rapid synthesis of gold nanoparticles. Spectrochimica Acta Part A: Molecular and Biomolecular Spectroscopy 2011 [135, 930, 1086, 1040] reference_item 0.85 ["reference content label: [26] Kumar KM, Mandal BK, Sinha M, Krishnakumar V. Terminali"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
305 37 9 reference_content [27] MubarakAli D, Thajuddin N, Jeganathan K, Gunasekaran M. Plant extract mediated synthesis of silver and gold nanoparticles and its antibacterial activity against clinically isolated pathogens. Col [136, 1053, 1085, 1166] reference_item 0.85 ["reference content label: [27] MubarakAli D, Thajuddin N, Jeganathan K, Gunasekaran M."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
306 37 10 reference_content [28] Durán N, Marcato PD, De Souza GIH, Alves OL, Esposito E. Antibacterial effect of silver nanoparticles produced by fungal process on textile fabrics and their effluent treatment. Journal of Biomed [137, 1177, 1086, 1288] reference_item 0.85 ["reference content label: [28] Dur\u00e1n N, Marcato PD, De Souza GIH, Alves OL, Esposito E"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
307 37 11 reference_content [29] El-Rafie MH, Mohamed AA, Shaheen TI, Hebeish A. Antimicrobial effect of silver nanoparticles produced by fungal process on cotton fabrics. Carbohydr Polym 2010;80:779-82. [136, 1301, 1084, 1372] reference_item 0.85 ["reference content label: [29] El-Rafie MH, Mohamed AA, Shaheen TI, Hebeish A. Antimic"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
308 37 12 number 36 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
309 38 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
310 38 1 reference_content [30] El-Rafie MH, Shaheen TI, Mohamed AA, Hebeish A. Bio-synthesis and applications of silver nanoparticles onto cotton fabrics. Carbohydr Polym 2012;90:915-20. [137, 143, 1087, 211] reference_item 0.85 ["reference content label: [30] El-Rafie MH, Shaheen TI, Mohamed AA, Hebeish A. Bio-syn"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
311 38 2 reference_content [31] Tripathi A, Chandrasekaran N, Raichur AM, Mukherjee A. Antibacterial Applications of Silver Nanoparticles Synthesized by Aqueous Extract of Azadirachta indica (Neem) Leaves. Journal of Biomedical [137, 225, 1086, 336] reference_item 0.85 ["reference content label: [31] Tripathi A, Chandrasekaran N, Raichur AM, Mukherjee A. "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
312 38 3 reference_content [32] Ravindra S, Murali Mohan Y, Narayana Reddy N, Mohana Raju K. Fabrication of antibacterial cotton fibres loaded with silver nanoparticles via "Green Approach". Colloids Surf Physicochem Eng Aspect [137, 349, 1087, 462] reference_item 0.85 ["reference content label: [32] Ravindra S, Murali Mohan Y, Narayana Reddy N, Mohana Ra"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
313 38 4 reference_content [33] Sathishkumar M, Sneha K, Yun Y-S. Immobilization of silver nanoparticles synthesized using Curcuma longa tuber powder and extract on cotton cloth for bactericidal activity. Bioresour Technol 2010 [137, 473, 1086, 584] reference_item 0.85 ["reference content label: [33] Sathishkumar M, Sneha K, Yun Y-S. Immobilization of sil"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
314 38 5 reference_content [34] Yang N, Li WH. Mango peel extract mediated novel route for synthesis of silver nanoparticles and antibacterial application of silver nanoparticles loaded onto non-woven fabrics. Industrial Crops [137, 597, 1085, 709] reference_item 0.85 ["reference content label: [34] Yang N, Li WH. Mango peel extract mediated novel route "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
315 38 6 reference_content [35] Sundaramoorthi C, Kalaivani M, Mathews DM, Palanisamy S, Kalaiselvan V, Rajasekaran A. Biosynthesis of silver nanoparticles from Aspergillus niger and evaluation of its wound healing activity in [136, 723, 1087, 874] reference_item 0.85 ["reference content label: [35] Sundaramoorthi C, Kalaivani M, Mathews DM, Palanisamy S"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
316 38 7 reference_content [36] Arunachalam KD, Annamalai SK, Arunachalam AM, Kennedy S. Green Synthesis of Crystalline Silver Nanoparticles Using Indigofera aspalathoides-Medicinal Plant Extract for Wound Healing Applications. [136, 889, 1087, 1000] reference_item 0.85 ["reference content label: [36] Arunachalam KD, Annamalai SK, Arunachalam AM, Kennedy S"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
317 38 8 reference_content [37] He Y, Du Z, Lv H, Jia Q, Tang Z, Zheng X, et al. Green synthesis of silver nanoparticles by Chrysanthemum morifolium Ramat. extract and their application in clinical ultrasound gel. International [136, 1011, 1085, 1124] reference_item 0.85 ["reference content label: [37] He Y, Du Z, Lv H, Jia Q, Tang Z, Zheng X, et al. Green "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
318 38 9 reference_content [38] Gajbhiye M, Kesharwani J, Ingle A, Gade A, Rai M. Fungus-mediated synthesis of silver nanoparticles and their activity against pathogenic fungi in combination with fluconazole. Nanomed Nanotechno [137, 1136, 1085, 1247] reference_item 0.85 ["reference content label: [38] Gajbhiye M, Kesharwani J, Ingle A, Gade A, Rai M. Fungu"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
319 38 10 reference_content [39] Musarrat J, Dwivedi S, Singh BR, Al-Khedhairy AA, Azam A, Naqvi A. Production of antimicrobial silver nanoparticles in water extracts of the fungus Amylomyces rouxii strain KSU-09. Bioresour Tech [136, 1261, 1086, 1370] reference_item 0.85 ["reference content label: [39] Musarrat J, Dwivedi S, Singh BR, Al-Khedhairy AA, Azam "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
320 38 11 number 37 [1055, 1393, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
321 39 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
322 39 1 reference_content [40] Das SK, Das AR, Guha AK. Gold nanoparticles: microbial synthesis and application in water hygiene management. Langmuir 2009;25:8192-9. [137, 142, 1085, 212] reference_item 0.85 ["reference content label: [40] Das SK, Das AR, Guha AK. Gold nanoparticles: microbial "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
323 39 2 reference_content [41] Bankar A, Joshi B, Ravi Kumar A, Zinjarde S. Banana peel extract mediated synthesis of gold nanoparticles. Colloids Surf B Biointerfaces 2010;80:45-50. [137, 225, 1087, 297] reference_item 0.85 ["reference content label: [41] Bankar A, Joshi B, Ravi Kumar A, Zinjarde S. Banana pee"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
324 39 3 reference_content [42] Vijayakumar PS, Prasad BLV. Intracellular Biogenic Silver Nanoparticles for the Generation of Carbon Supported Antiviral and Sustained Bactericidal Agents. Langmuir 2009;25:11741-7. [137, 309, 1083, 378] reference_item 0.85 ["reference content label: [42] Vijayakumar PS, Prasad BLV. Intracellular Biogenic Silv"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
325 39 4 reference_content [43] De Gusseme B, Du Laing G, Hennebel T, Renard P, Chidambaram D, Fitts JP, et al. Virus Removal by Biogenic Cerium. Environ Sci Technol 2010;44:6350-6. [137, 390, 1083, 462] reference_item 0.85 ["reference content label: [43] De Gusseme B, Du Laing G, Hennebel T, Renard P, Chidamb"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
326 39 5 reference_content [44] De Gusseme B, Sintubin L, Baert L, Thibo E, Hennebel T, Vermeulen G, et al. Biogenic Silver for Disinfection of Water Contaminated with Viruses. Appl Environ Microbiol 2010;76:1082-7. [136, 473, 1086, 583] reference_item 0.85 ["reference content label: [44] De Gusseme B, Sintubin L, Baert L, Thibo E, Hennebel T,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
327 39 6 reference_content [45] De Gusseme B, Hennebel T, Christiaens E, Saveyn H, Verbeken K, Fitts JP, et al. Virus disinfection in water by biogenic silver immobilized in polyvinylidene fluoride membranes. Water Res 2011;45: [137, 598, 1085, 709] reference_item 0.85 ["reference content label: [45] De Gusseme B, Hennebel T, Christiaens E, Saveyn H, Verb"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
328 39 7 reference_content [46] Santhoshkumar T, Rahuman A, Rajakumar G, Marimuthu S, Bagavan A, Jayaseelan C, et al. Synthesis of silver nanoparticles using Nelumbo nucifera leaf extract and its larvicidal activity against mal [136, 722, 1085, 833] reference_item 0.85 ["reference content label: [46] Santhoshkumar T, Rahuman A, Rajakumar G, Marimuthu S, B"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
329 39 8 reference_content [47] Gnanadesigan M, Anand M, Ravikumar S, Maruthupandy M, Vijayakumar V, Selvam S, et al. Biosynthesis of silver nanoparticles by using mangrove plant extract and their potential mosquito larvicidal [136, 847, 1085, 958] reference_item 0.85 ["reference content label: [47] Gnanadesigan M, Anand M, Ravikumar S, Maruthupandy M, V"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
330 39 9 reference_content [48] Marimuthu S, Rahuman A, Santhoshkumar T, Jayaseelan C, Kirthi A, Bagavan A, et al. Lousicidal activity of synthesized silver nanoparticles using Lawsonia inermis leaf aqueous extract against Pedi [136, 970, 1085, 1082] reference_item 0.85 ["reference content label: [48] Marimuthu S, Rahuman A, Santhoshkumar T, Jayaseelan C, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
331 39 10 reference_content [49] Rajakumar G, Abdul Rahuman A. Acaricidal activity of aqueous extract and synthesized silver nanoparticles from Manilkara zapota against Rhipicephalus (Boophilus) microplus. Res Vet Sci 2012;93:30 [136, 1096, 1086, 1203] reference_item 0.85 ["reference content label: [49] Rajakumar G, Abdul Rahuman A. Acaricidal activity of aq"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
332 39 11 reference_content [50] Valodkar M, Jadeja RN, Thounaojam MC, Devkar RV, Thakore S. Biocompatible synthesis of peptide capped copper nanoparticles and their biological effect on tumor cells. Mater Chem Phys 2011;128:83- [137, 1219, 1087, 1328] reference_item 0.85 ["reference content label: [50] Valodkar M, Jadeja RN, Thounaojam MC, Devkar RV, Thakor"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
333 39 12 number 38 [1056, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
334 40 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
335 40 1 reference_content [51] Moulton MC, Braydich-Stolle LK, Nadagouda MN, Kunzelman S, Hussain SM, Varma RS. Synthesis, characterization and biocompatibility of "green" synthesized silver nanoparticles using tea polyphenols [136, 142, 1084, 254] reference_item 0.85 ["reference content label: [51] Moulton MC, Braydich-Stolle LK, Nadagouda MN, Kunzelman"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
336 40 2 reference_content [52] Amarnath K, Mathew N, Nellore J, Siddarth C, Kumar J. Facile synthesis of biocompatible gold nanoparticles from Vites vinefera and its cellular internalization against HBL-100 cells. Cancer Nanot [136, 266, 1083, 377] reference_item 0.85 ["reference content label: [52] Amarnath K, Mathew N, Nellore J, Siddarth C, Kumar J. F"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
337 40 3 reference_content [53] Mishra A, Tripathy SK, Wahab R, Jeong SH, Hwang I, Yang YB, et al. Microbial synthesis of gold nanoparticles using the fungus Penicillium brevicompactum and their cytotoxic effects against mouse [136, 391, 1086, 503] reference_item 0.85 ["reference content label: [53] Mishra A, Tripathy SK, Wahab R, Jeong SH, Hwang I, Yang"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
338 40 4 reference_content [54] Raghunandan D, Ravishankar B, Sharanbasava G, Mahesh D, Harsoor V, Yalagatti M, et al. Anti-cancer studies of noble metal nanoparticles synthesized using different plant extracts. Cancer Nanotech [136, 515, 1085, 626] reference_item 0.85 ["reference content label: [54] Raghunandan D, Ravishankar B, Sharanbasava G, Mahesh D,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
339 40 5 reference_content [55] Jacob SJ, Finub JS, Narayanan A. Synthesis of silver nanoparticles using Piper longum leaf extracts and its cytotoxic activity against Hep-2 cell line. Colloids Surf B Biointerfaces 2012;91:212-4 [136, 638, 1087, 749] reference_item 0.85 ["reference content label: [55] Jacob SJ, Finub JS, Narayanan A. Synthesis of silver na"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
340 40 6 reference_content [56] Satyavani K, Gurudeeban S, Ramanathan T, Balasubramanian T. Biomedical potential of silver nanoparticles synthesized from calli cells of $ Citrullus\ colocynthis $ (L.) Schrad. Journal of nanobi [136, 763, 1088, 875] reference_item 0.85 ["reference content label: [56] Satyavani K, Gurudeeban S, Ramanathan T, Balasubramania"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
341 40 7 reference_content [57] Sukirtha R, Priyanka KM, Antony JJ, Kamalakkannan S, Thangam R, Gunasekaran P, et al. Cytotoxic effect of green synthesized silver nanoparticles using Melia azedarach against in vitro HeLa cell l [136, 889, 1083, 999] reference_item 0.85 ["reference content label: [57] Sukirtha R, Priyanka KM, Antony JJ, Kamalakkannan S, Th"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
342 40 8 reference_content [58] Jeyaraj M, Sathishkumar G, Sivanandhan G, MubarakAli D, Rajesh M, Arun R, et al. Biogenic silver nanoparticles for cancer treatment: An experimental report. Colloids Surf B Biointerfaces 2013;106 [136, 1011, 1085, 1124] reference_item 0.85 ["reference content label: [58] Jeyaraj M, Sathishkumar G, Sivanandhan G, MubarakAli D,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
343 40 9 reference_content [59] Karuppaiya P, Satheeshkumar E, Chao W-T, Kao L-Y, Chen EC-F, Tsay H-S. Anti-metastatic activity of biologically synthesized gold nanoparticles on human fibrosarcoma cell line HT-1080. Colloids Su [136, 1135, 1085, 1247] reference_item 0.85 ["reference content label: [59] Karuppaiya P, Satheeshkumar E, Chao W-T, Kao L-Y, Chen "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
344 40 10 reference_content [60] Sun J-B, Duan J-H, Dai S-L, Ren J, Guo L, Jiang W, et al. Preparation and anti-tumor efficiency evaluation of doxorubicin-loaded bacterial magnetosomes: Magnetic nanoparticles as [136, 1261, 1087, 1331] reference_item 0.85 ["reference content label: [60] Sun J-B, Duan J-H, Dai S-L, Ren J, Guo L, Jiang W, et a"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
345 40 11 number 39 [1055, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
346 41 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
347 41 1 reference_content drug carriers isolated from Magnetospirillum gryphiswaldense. Biotechnol Bioeng 2008;101:1313-20. [137, 143, 1085, 211] reference_item 0.85 ["reference content label: drug carriers isolated from Magnetospirillum gryphiswaldense"] reference_item 0.85 reference_zone body_like none True True
348 41 2 reference_content [61] Li X, Jiang W, Sun JB, Wang GL, Guan F, Li Y. Purified and sterilized magnetosomes from Magnetospirillum gryphiswaldense MSR-1 were not toxic to mouse fibroblasts in vitro. Lett Appl Microbiol 20 [137, 225, 1086, 336] reference_item 0.85 ["reference content label: [61] Li X, Jiang W, Sun JB, Wang GL, Guan F, Li Y. Purified "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
349 41 3 reference_content [62] Venkatpurwar V, Shiras A, Pokharkar V. Porphyran capped gold nanoparticles as a novel carrier for delivery of anticancer drug: In vitro cytotoxicity study. Int J Pharm 2011;409:314-20. [136, 350, 1086, 420] reference_item 0.85 ["reference content label: [62] Venkatpurwar V, Shiras A, Pokharkar V. Porphyran capped"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
350 41 4 reference_content [63] Zheng B, Qian L, Yuan H, Xiao D, Yang X, Paau MC, et al. Preparation of gold nanoparticles on eggshell membrane and their biosensing application. Talanta 2010;82:177-83. [138, 433, 1085, 502] reference_item 0.85 ["reference content label: [63] Zheng B, Qian L, Yuan H, Xiao D, Yang X, Paau MC, et al"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
351 41 5 reference_content [64] Zheng B, Xie S, Qian L, Yuan H, Xiao D, Choi MMF. Gold nanoparticles-coated eggshell membrane with immobilized glucose oxidase for fabrication of glucose biosensor. Sensors Actuators B: Chem 2011 [137, 516, 1086, 626] reference_item 0.85 ["reference content label: [64] Zheng B, Xie S, Qian L, Yuan H, Xiao D, Choi MMF. Gold "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
352 41 6 reference_content [65] Wang T, Yang L, Zhang B, Liu J. Extracellular biosynthesis and transformation of selenium nanoparticles and application in $ H_{2}O_{2} $ biosensor. Colloids Surf B Biointerfaces 2010;80:94-102. [137, 640, 1085, 710] reference_item 0.85 ["reference content label: [65] Wang T, Yang L, Zhang B, Liu J. Extracellular biosynthe"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
353 41 7 reference_content [66] Zheng D, Hu C, Gan T, Dang X, Hu S. Preparation and application of a novel vanillin sensor based on biosynthesis of Au-Ag alloy nanoparticles. Sensors Actuators B: Chem 2010;148:247-52. [136, 723, 1085, 831] reference_item 0.85 ["reference content label: [66] Zheng D, Hu C, Gan T, Dang X, Hu S. Preparation and app"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
354 41 8 reference_content [67] MubarakAli D, Arunkumar J, Nag KH, SheikSyedIshack KA, Baldev E, Pandiaraj D, et al. Gold nanoparticles from Pro and eukaryotic photosynthetic microorganisms—Comparative studies on synthesis and [135, 848, 1086, 999] reference_item 0.85 ["reference content label: [67] MubarakAli D, Arunkumar J, Nag KH, SheikSyedIshack KA, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
355 41 9 reference_content [68] Iskandar F. Nanoparticle processing for optical applications - A review. Adv Powder Technol 2009;20:283-92. [136, 1011, 1085, 1081] reference_item 0.85 ["reference content label: [68] Iskandar F. Nanoparticle processing for optical applica"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
356 41 10 reference_content [69] Talapin DV, Lee J-S, Kovalenko MV, Shevchenko EV. Prospects of Colloidal Nanocrystals for Electronic and Optoelectronic Applications. Chem Rev 2009;110:389-458. [137, 1095, 1086, 1165] reference_item 0.85 ["reference content label: [69] Talapin DV, Lee J-S, Kovalenko MV, Shevchenko EV. Prosp"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
357 41 11 reference_content [70] Sicard C, Brayner R, Margueritat J, Hemadi M, Coute A, Yepremian C, et al. Nano-gold biosynthesis by silica-encapsulated micro-algae: a "living" bio-hybrid material. J Mater Chem 2010;20:9342-7. [137, 1177, 1086, 1286] reference_item 0.85 ["reference content label: [70] Sicard C, Brayner R, Margueritat J, Hemadi M, Coute A, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
358 41 12 number 40 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
359 42 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
360 42 1 reference_content [71] Fayaz M, Tiwary CS, Kalaichelvan PT, Venkatesan R. Blue orange light emission from biogenic synthesized silver nanoparticles using Trichoderma viride. Colloid Surf B-Biointerfaces 2010;75:175-8. [136, 142, 1086, 251] reference_item 0.85 ["reference content label: [71] Fayaz M, Tiwary CS, Kalaichelvan PT, Venkatesan R. Blue"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
361 42 2 reference_content [72] Sarkar R, Kumbhakar P, MIitra AK. Green synthesis of silver nanoparticles and its optical properties. Digest Journal of Nanomaterials and Biostructures 2010;5:491 - 6. [136, 266, 1086, 339] reference_item 0.85 ["reference content label: [72] Sarkar R, Kumbhakar P, MIitra AK. Green synthesis of si"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
362 42 3 reference_content [73] Podgaetsky VM, Kopylova TyN, Tereshchenko SA, Rezniechenko AV, Selishchev SV. Laser-limiting materials for medical use. P Soc Photo-Opt Ins 2004;5261:183-91. [137, 349, 1082, 420] reference_item 0.85 ["reference content label: [73] Podgaetsky VM, Kopylova TyN, Tereshchenko SA, Reznieche"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
363 42 4 reference_content [74] Sathyavathi R, Krishna MB, Rao SV, Saritha R, Rao DN. Biosynthesis of Silver Nanoparticles Using Coriandrum sativum Leaf Extract and Their Application in Nonlinear Optics. Adv Sci Lett 2010;3:138 [136, 432, 1086, 543] reference_item 0.85 ["reference content label: [74] Sathyavathi R, Krishna MB, Rao SV, Saritha R, Rao DN. B"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
364 42 5 reference_content [75] Liao K-S, Wang J, Dias S, Dewald J, Alley NJ, Baesman SM, et al. Strong nonlinear photonic responses from microbiologically synthesized tellurium nanocomposites. Chem Phys Lett 2010;484:242-6. [137, 556, 1086, 667] reference_item 0.85 ["reference content label: [75] Liao K-S, Wang J, Dias S, Dewald J, Alley NJ, Baesman S"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
365 42 6 reference_content [76] Fayaz AM, Girilal M, Venkatesan R, Kalaichevan PT. Biosynthesis of anisotropic gold nanoparticles using Maduca longifolia extract and their potential in infrared absorption. Colloids Surf B Bioin [136, 680, 1086, 791] reference_item 0.85 ["reference content label: [76] Fayaz AM, Girilal M, Venkatesan R, Kalaichevan PT. Bios"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
366 42 7 reference_content [77] Shankar SS, Rai A, Ahmad A, Sastry M. Controlling the Optical Properties of Lemongrass Extract Synthesized Gold Nanotriangles and Potential Application in Infrared-Absorbing Optical Coatings. Che [136, 805, 1086, 917] reference_item 0.85 ["reference content label: [77] Shankar SS, Rai A, Ahmad A, Sastry M. Controlling the O"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
367 42 8 reference_content [78] Bao H, Hao N, Yang Y, Zhao D. Biosynthesis of biocompatible cadmium telluride quantum dots using yeast cells. Nano Research 2010;3:481-9. [136, 930, 1087, 999] reference_item 0.85 ["reference content label: [78] Bao H, Hao N, Yang Y, Zhao D. Biosynthesis of biocompat"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
368 42 9 reference_content [79] Bao H, Lu Z, Cui X, Qiao Y, Guo J, Anderson JM, et al. Extracellular microbial synthesis of biocompatible CdTe quantum dots. Acta Biomater 2010;6:3534-41. [137, 1011, 1086, 1082] reference_item 0.85 ["reference content label: [79] Bao H, Lu Z, Cui X, Qiao Y, Guo J, Anderson JM, et al. "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
369 42 10 reference_content [80] Pandian SRK, Deepak V, Kalishwaralal K, Gurunathan S. Biologically synthesized fluorescent CdS NPs encapsulated by PHB. Enzyme Microb Technol 2011;48:319-25. [137, 1095, 1086, 1165] reference_item 0.85 ["reference content label: [80] Pandian SRK, Deepak V, Kalishwaralal K, Gurunathan S. B"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
370 42 11 reference_content [81] Basha KS, Govindaraju K, Manikandan R, Ahn JS, Bae EY, Singaravelu G. Phytochemical mediated gold nanoparticles and their PTP 1B inhibitory activity. Colloids Surf B Biointerfaces 2010;75:405-9. [137, 1177, 1087, 1285] reference_item 0.85 ["reference content label: [81] Basha KS, Govindaraju K, Manikandan R, Ahn JS, Bae EY, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
371 42 12 number 41 [1055, 1394, 1084, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
372 43 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
373 43 1 reference_content [82] Kalishwaralal K, Deepak V, Ram Kumar Pandian S, Kottaisamy M, BarathManiKanth S, Kartikeyan B, et al. Biosynthesis of silver and gold nanoparticles using Brevibacterium casei. Colloids Surf B Bio [137, 142, 1083, 252] reference_item 0.85 ["reference content label: [82] Kalishwaralal K, Deepak V, Ram Kumar Pandian S, Kottais"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
374 43 2 reference_content [83] Muthuvel A, Adavallan K, Balamurugan K, Krishnakumar N. Biosynthesis of gold nanoparticles using Solanum nigrum leaf extract and screening their free radical scavenging and antibacterial properti [137, 266, 1083, 378] reference_item 0.85 ["reference content label: [83] Muthuvel A, Adavallan K, Balamurugan K, Krishnakumar N."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
375 43 3 reference_content [84] Vahabi K, Dorcheh SK. Chapter 29 - Biosynthesis of Silver Nano-Particles by Trichoderma and Its Medical Applications. In: Gupta VK, Schmoll M, Herrera-Estrella A, Upadhyay RS, Druzhinina I, Tuohy [136, 391, 1085, 543] reference_item 0.85 ["reference content label: [84] Vahabi K, Dorcheh SK. Chapter 29 - Biosynthesis of Silv"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
376 43 4 reference_content [85] Gopinath K, Venkatesh KS, Ilangovan R, Sankaranarayanan K, Arumugam A. Green synthesis of gold nanoparticles from leaf extract of Terminalia arjuna, for the enhanced mitotic cell division and pol [137, 556, 1085, 668] reference_item 0.85 ["reference content label: [85] Gopinath K, Venkatesh KS, Ilangovan R, Sankaranarayanan"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
377 43 5 reference_content [86] Hennebel T, De Gusseme B, Boon N, Verstraete W. Biogenic metals in advanced water treatment. Trends Biotechnol 2009;27:90-8. [138, 681, 1083, 749] reference_item 0.85 ["reference content label: [86] Hennebel T, De Gusseme B, Boon N, Verstraete W. Biogeni"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
378 43 6 reference_content [87] Das N. Recovery of precious metals through biosorption - A review. Hydrometallurgy 2010;103:180-9. [137, 764, 1083, 833] reference_item 0.85 ["reference content label: [87] Das N. Recovery of precious metals through biosorption "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
379 43 7 reference_content [88] Chakraborty N, Banerjee A, Lahiri S, Panda A, Ghosh A, Pal R. Biorecovery of gold using cyanobacteria and an eukaryotic alga with special reference to nanogold formation - a novel phenomenon. J A [136, 847, 1086, 958] reference_item 0.85 ["reference content label: [88] Chakraborty N, Banerjee A, Lahiri S, Panda A, Ghosh A, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
380 43 8 reference_content [89] Mata YN, Torres E, Blazquez ML, Ballester A, Gonzalez F, Munoz JA. Gold(III) biosorption and bioreduction with the brown alga $ Fucus\ vesiculosus $. J Hazard Mater 2009;166:612-8. [136, 970, 1085, 1080] reference_item 0.85 ["reference content label: [89] Mata YN, Torres E, Blazquez ML, Ballester A, Gonzalez F"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
381 43 9 reference_content [90] Das D, Das N, Mathew L. Kinetics, equilibrium and thermodynamic studies on biosorption of Ag(I) from aqueous solution by macrofungus Pleurotus platypus. J Hazard Mater 2010;184:765-74. [136, 1095, 1086, 1204] reference_item 0.85 ["reference content label: [90] Das D, Das N, Mathew L. Kinetics, equilibrium and therm"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
382 43 10 reference_content [91] Zhang H, Li Q, Wang H, Sun D, Lu Y, He N. Accumulation of Silver(I) Ion and Diamine Silver Complex by Aeromonas SH10 biomass. Appl Biochem Biotechnol 2007;143:54-62. [136, 1218, 1086, 1288] reference_item 0.85 ["reference content label: [91] Zhang H, Li Q, Wang H, Sun D, Lu Y, He N. Accumulation "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
383 43 11 number 42 [1055, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
384 44 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
385 44 1 reference_content [92] Won SW, Mao J, Kwak I-S, Sathishkumar M, Yun Y-S. Platinum recovery from ICP wastewater by a combined method of biosorption and incineration. Bioresour Technol 2010;101:1135-40. [137, 142, 1086, 252] reference_item 0.85 ["reference content label: [92] Won SW, Mao J, Kwak I-S, Sathishkumar M, Yun Y-S. Plati"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
386 44 2 reference_content [93] Sathishkumar M, Mahadevan A, Vijayaraghavan K, Pavagadhi S, Balasubramanian R. Green Recovery of Gold through Biosorption, Biocrystallization, and Pyro-Crystallization. Ind Eng Chem Res 2010;49:7 [137, 266, 1085, 378] reference_item 0.85 ["reference content label: [93] Sathishkumar M, Mahadevan A, Vijayaraghavan K, Pavagadh"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
387 44 3 reference_content [94] Selvakumar R, Arul Jothi N, Jayavignesh V, Karthikaiselvi K, Antony GI, Sharmila PR, et al. As(V) removal using carbonized yeast cells containing silver nanoparticles. Water Res 2011;45:583-92. [136, 391, 1086, 502] reference_item 0.85 ["reference content label: [94] Selvakumar R, Arul Jothi N, Jayavignesh V, Karthikaisel"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
388 44 4 reference_content [95] Sinha A, Singh VN, Mehta BR, Khare SK. Synthesis and characterization of monodispersed orthorhombic manganese oxide nanoparticles produced by Bacillus sp. cells simultaneous to its bioremediation [136, 515, 1086, 626] reference_item 0.85 ["reference content label: [95] Sinha A, Singh VN, Mehta BR, Khare SK. Synthesis and ch"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
389 44 5 reference_content [96] Mabbett AN, Lloyd JR, Macaskie LE. Effect of complexing agents on reduction of Cr(VI) by Desulfovibrio vulgaris ATCC 29579. Biotechnol Bioeng 2002;79:389-97. [137, 639, 1085, 710] reference_item 0.85 ["reference content label: [96] Mabbett AN, Lloyd JR, Macaskie LE. Effect of complexing"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
390 44 6 reference_content [97] De Corte S, Hennebel T, De Gusseme B, Verstraete W, Boon N. Bio-palladium: from metal recovery to catalytic applications. Microbial Biotechnology 2012;5:5-17. [137, 722, 1086, 792] reference_item 0.85 ["reference content label: [97] De Corte S, Hennebel T, De Gusseme B, Verstraete W, Boo"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
391 44 7 reference_content [98] Hennebel T, De Corte S, Verstraete W, Boon N. Microbial production and environmental applications of Pd nanoparticles for treatment of halogenated compounds. Curr Opin Biotechnol 2012;23:555-61. [135, 805, 1086, 916] reference_item 0.85 ["reference content label: [98] Hennebel T, De Corte S, Verstraete W, Boon N. Microbial"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
392 44 8 reference_content [99] Baxter-Plant VS, Mikheenko IP, Macaskie LE. Sulphate-reducing bacteria, palladium and the reductive dehalogenation of chlorinated aromatic compounds. Biodegradation 2003;14:83-90. [135, 930, 1086, 999] reference_item 0.85 ["reference content label: [99] Baxter-Plant VS, Mikheenko IP, Macaskie LE. Sulphate-re"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
393 44 9 reference_content [100] Baxter-Plant VS, Mikheenko IP, Robson M, Harrad SJ, Macaskie LE. Dehalogenation of chlorinated aromatic compounds using a hybrid bioinorganic catalyst on cells of Desulfovibrio desulfuricans. Bi [136, 1011, 1086, 1124] reference_item 0.85 ["reference content label: [100] Baxter-Plant VS, Mikheenko IP, Robson M, Harrad SJ, Ma"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
394 44 10 reference_content [101] Bunge M, Søbjerg LS, Rotaru A-E, Gauthier D, Lindhardt AT, Hause G, et al. Formation of palladium(0) nanoparticles at microbial surfaces. Biotechnol Bioeng 2010;107:206-15. [137, 1136, 1085, 1207] reference_item 0.85 ["reference content label: [101] Bunge M, S\u00f8bjerg LS, Rotaru A-E, Gauthier D, Lindhardt"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
395 44 11 reference_content [102] De Windt W, Aelterman P, Verstraete W. Bioreductive deposition of palladium (0) nanoparticles on Shewanella oneidensis with catalytic activity towards reductive dechlorination of polychlorinated [137, 1219, 1086, 1330] reference_item 0.85 ["reference content label: [102] De Windt W, Aelterman P, Verstraete W. Bioreductive de"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
396 44 12 number 43 [1055, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
397 45 0 header ACCEPTED MANUSCRIPT [384, 32, 841, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
398 45 1 reference_content [103] De Windt W, Boon N, Van den Bulcke J, Rubberecht L, Prata F, Mast J, et al. Biological control of the size and reactivity of catalytic Pd(0) produced by Shewanella oneidensis. Antonie Van Leeuwe [137, 142, 1086, 252] reference_item 0.85 ["reference content label: [103] De Windt W, Boon N, Van den Bulcke J, Rubberecht L, Pr"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
399 45 2 reference_content [104] Macaskie LE, Humphries AC, Mikheenko IP, Baxter-Plant VS, Deplanche K, Redwood MD, et al. Use of Desulfovibrio and Escherichia coli Pd-nanocatalysts in reduction of Cr(VI) and hydrogenolytic deh [136, 267, 1086, 420] reference_item 0.85 ["reference content label: [104] Macaskie LE, Humphries AC, Mikheenko IP, Baxter-Plant "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
400 45 3 reference_content [105] Redwood MD, Deplanche K, Baxter-Plant VS, Macaskie LE. Biomass-supported palladium catalysts on Desulfovibrio desulfuricans and Rhodobacter sphaeroides. Biotechnol Bioeng 2008;99:1045-54. [136, 432, 1086, 544] reference_item 0.85 ["reference content label: [105] Redwood MD, Deplanche K, Baxter-Plant VS, Macaskie LE."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
401 45 4 reference_content [106] Mertens B, Blothe C, Windey K, De Windt W, Verstraete W. Biocatalytic dechlorination of lindane by nano-scale particles of Pd(0) deposited on Shewanella oneidensis. Chemosphere 2007;66:99-105. [136, 556, 1086, 666] reference_item 0.85 ["reference content label: [106] Mertens B, Blothe C, Windey K, De Windt W, Verstraete "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
402 45 5 reference_content [107] Hennebel T, Simoen H, De Windt W, Verloo M, Boon N, Verstraete W. Biocatalytic dechlorination of trichloroethylene with bio-palladium in a pilot-scale membrane reactor. Biotechnol Bioeng 2009;10 [136, 680, 1085, 791] reference_item 0.85 ["reference content label: [107] Hennebel T, Simoen H, De Windt W, Verloo M, Boon N, Ve"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
403 45 6 reference_content [108] Hennebel T, Verhagen P, Simoen H, Gusseme BD, Vlaeminck SE, Boon N, et al. Remediation of trichloroethylene by bio-precipitated and encapsulated palladium nanoparticles in a fixed bed reactor. C [135, 805, 1086, 917] reference_item 0.85 ["reference content label: [108] Hennebel T, Verhagen P, Simoen H, Gusseme BD, Vlaeminc"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
404 45 7 reference_content [109] Smuleac V, Varma R, Sikdar S, Bhattacharyya D. Green synthesis of Fe and Fe/Pd bimetallic nanoparticles in membranes for reductive degradation of chlorinated organics. Journal of Membrane Scienc [135, 929, 1086, 1039] reference_item 0.85 ["reference content label: [109] Smuleac V, Varma R, Sikdar S, Bhattacharyya D. Green s"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
405 45 8 reference_content [110] Harrad S, Robson M, Hazrati S, Baxter-Plant VS, Deplanche K, Redwood MD, et al. Dehalogenation of polychlorinated biphenyls and polybrominated diphenyl ethers using a hybrid bioinorganic catalys [136, 1053, 1083, 1165] reference_item 0.85 ["reference content label: [110] Harrad S, Robson M, Hazrati S, Baxter-Plant VS, Deplan"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
406 45 9 reference_content [111] Deplanche K, Snape TJ, Hazrati S, Harrad S, Macaskie LE. Versatility of a new bioinorganic catalyst: Palladized cells of Desulfovibrio desulfuricans and application to dehalogenation of flame re [136, 1177, 1086, 1288] reference_item 0.85 ["reference content label: [111] Deplanche K, Snape TJ, Hazrati S, Harrad S, Macaskie L"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
407 45 10 number 44 [1055, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
408 46 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
409 46 1 reference_content [112] Hennebel T, De Corte S, Vanhaecke L, Vanherck K, Forrez I, De Gusseme B, et al. Removal of diatrizoate with catalytically active membranes incorporating microbially produced palladium nanopartic [136, 142, 1086, 254] reference_item 0.85 ["reference content label: [112] Hennebel T, De Corte S, Vanhaecke L, Vanherck K, Forre"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
410 46 2 reference_content [113] De Gusseme B, Hennebel T, Vanhaecke L, Soetaert M, Desloover J, Wille K, et al. Biogenic Palladium Enhances Diatrizoate Removal from Hospital Wastewater in a Microbial Electrolysis Cell. Environ [137, 266, 1083, 378] reference_item 0.85 ["reference content label: [113] De Gusseme B, Hennebel T, Vanhaecke L, Soetaert M, Des"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
411 46 3 reference_content [114] Sharma NC, Sahi SV, Nath S, Parsons JG, Gardea-Torresdey JL, Pal T. Synthesis of plant-mediated gold nanoparticles and catalytic role of biomatrix-embedded nanomaterials. Environ Sci Technol 200 [136, 391, 1086, 502] reference_item 0.85 ["reference content label: [114] Sharma NC, Sahi SV, Nath S, Parsons JG, Gardea-Torresd"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
412 46 4 reference_content [115] Huang JL, Wang WT, Lin LQ, Li QB, Lin WS, Li M, et al. A General Strategy for the Biosynthesis of Gold Nanoparticles by Traditional Chinese Medicines and Their Potential Application as Catalysts [137, 515, 1086, 628] reference_item 0.85 ["reference content label: [115] Huang JL, Wang WT, Lin LQ, Li QB, Lin WS, Li M, et al."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
413 46 5 reference_content [116] Gangula A, Podila R, M R, Karanam L, Janardhana C, Rao AM. Catalytic Reduction of 4-Nitrophenol using Biogenic Gold and Silver Nanoparticles Derived from Breynia rhamnoides. Langmuir 2011. [136, 639, 1085, 751] reference_item 0.85 ["reference content label: [116] Gangula A, Podila R, M R, Karanam L, Janardhana C, Rao"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
414 46 6 reference_content [117] Hosseinkhani B, Søbjerg LS, Rotaru A-E, Emtiazi G, Skrydstrup T, Meyer RL. Microbially supported synthesis of catalytically active bimetallic Pd-Au nanoparticles. Biotechnol Bioeng 2012;109:45-5 [136, 763, 1086, 874] reference_item 0.85 ["reference content label: [117] Hosseinkhani B, S\u00f8bjerg LS, Rotaru A-E, Emtiazi G, Skr"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
415 46 7 reference_content [118] Jia XP, Ma XY, Wei DW, Dong J, Qian WP. Direct formation of silver nanoparticles in cuttlebone-derived organic matrix for catalytic applications. Colloids and Surfaces a-Physicochemical and Engi [136, 889, 1085, 999] reference_item 0.85 ["reference content label: [118] Jia XP, Ma XY, Wei DW, Dong J, Qian WP. Direct formati"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
416 46 8 reference_content [119] Das SK, Khan MMR, Guha AK, Naskar N. Bio-inspired fabrication of silver nanoparticles on nanostructured silica: characterization and application as a highly efficient hydrogenation catalyst. Gre [136, 1011, 1085, 1124] reference_item 0.85 ["reference content label: [119] Das SK, Khan MMR, Guha AK, Naskar N. Bio-inspired fabr"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
417 46 9 reference_content [120] Shahwan T, Abu Sirriah S, Nairat M, Boyaci E, Eroğlu AE, Scott TB, et al. Green synthesis of iron nanoparticles and their application as a Fenton-like catalyst for the degradation of aqueous cat [136, 1136, 1086, 1249] reference_item 0.85 ["reference content label: [120] Shahwan T, Abu Sirriah S, Nairat M, Boyaci E, Ero\u011flu A"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
418 46 10 reference_content [121] Gupta N, Singh HP, Sharma RK. Single-pot synthesis: Plant mediated gold nanoparticles catalyzed reduction of methylene blue in presence of stannous chloride. Colloids Surf Physicochem Eng Aspect [136, 1261, 1088, 1371] reference_item 0.85 ["reference content label: [121] Gupta N, Singh HP, Sharma RK. Single-pot synthesis: Pl"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
419 46 11 number 45 [1055, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
420 47 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
421 47 1 reference_content [122] Zhou H, Fan F, Han T, Li X, Ding J, Zhang D, et al. Bacteria-based controlled assembly of metal chalcogenide hollow nanostructures with enhanced light-harvesting and photocatalytic properties. N [136, 142, 1086, 254] reference_item 0.85 ["reference content label: [122] Zhou H, Fan F, Han T, Li X, Ding J, Zhang D, et al. Ba"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
422 47 2 reference_content [123] Arunachalam R, Dhanasingh S, Kalimuthu B, Uthirappan M, Rose C, Mandal AB. Phytosynthesis of silver nanoparticles using Coccinia grandis leaf extract and its application in the photocatalytic de [137, 266, 1083, 379] reference_item 0.85 ["reference content label: [123] Arunachalam R, Dhanasingh S, Kalimuthu B, Uthirappan M"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
423 47 3 reference_content [124] Forrez I, Carballa M, Fink G, Wick A, Hennebel T, Vanhaecke L, et al. Biogenic metals for the oxidative and reductive removal of pharmaceuticals, biocides and iodinated contrast media in a polis [136, 391, 1086, 503] reference_item 0.85 ["reference content label: [124] Forrez I, Carballa M, Fink G, Wick A, Hennebel T, Vanh"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
424 47 4 reference_content [125] Deplanche K, Caldelari I, Mikheenko IP, Sargent F, Macaskie LE. Involvement of hydrogenases in the formation of highly catalytic Pd(0) nanoparticles by bioreduction of Pd(II) using Escherichia c [137, 515, 1086, 627] reference_item 0.85 ["reference content label: [125] Deplanche K, Caldelari I, Mikheenko IP, Sargent F, Mac"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
425 47 5 reference_content [126] Mabbett AN, Macaskie LE. A new bioinorganic process for the remediation of Cr(VI). J Chem Technol Biotechnol 2002;77:1169-75. [137, 638, 1086, 708] reference_item 0.85 ["reference content label: [126] Mabbett AN, Macaskie LE. A new bioinorganic process fo"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
426 47 6 reference_content [127] Humphries AC, Mikheenko IP, Macaskie LE. Chromate reduction by immobilized palladized sulfate-reducing bacteria. Biotechnol Bioeng 2006;94:81-90. [137, 722, 1086, 792] reference_item 0.85 ["reference content label: [127] Humphries AC, Mikheenko IP, Macaskie LE. Chromate redu"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
427 47 7 reference_content [128] Mabbett AN, Yong P, Farr JPG, Macaskie LE. Reduction of Cr(VI) by "Palladized" Biomass of Desulfovibrio desulfuricans ATCC 29577. Biotechnol Bioeng 2004;87:104-9. [137, 805, 1085, 875] reference_item 0.85 ["reference content label: [128] Mabbett AN, Yong P, Farr JPG, Macaskie LE. Reduction o"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
428 47 8 reference_content [129] Mabbett AN, Sanyahumbi D, Yong P, Macaskie LE. Biorecovered Precious Metals from Industrial Wastes: Single-Step Conversion of a Mixed Metal Liquid Waste to a Bioinorganic Catalyst with Environme [136, 889, 1086, 1000] reference_item 0.85 ["reference content label: [129] Mabbett AN, Sanyahumbi D, Yong P, Macaskie LE. Bioreco"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
429 47 9 reference_content [130] Beauregard DA, Yong P, Macaskie LE, Johns ML. Using non-invasive magnetic resonance imaging (MRI) to assess the reduction of Cr(VI) using a biofilm–palladium catalyst. Biotechnol Bioeng 2010;107 [136, 1011, 1086, 1124] reference_item 0.85 ["reference content label: [130] Beauregard DA, Yong P, Macaskie LE, Johns ML. Using no"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
430 47 10 reference_content [131] Chidambaram D, Hennebel T, Taghavi S, Mast J, Boon N, Verstraete W, et al. Concomitant Microbial Generation of Palladium Nanoparticles and Hydrogen To Immobilize Chromate. Environ Sci Technol 20 [137, 1135, 1083, 1247] reference_item 0.85 ["reference content label: [131] Chidambaram D, Hennebel T, Taghavi S, Mast J, Boon N, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
431 47 11 reference_content [132] Zhang M, Zhang K, De Gusseme B, Verstraete W. Biogenic silver nanoparticles (bio-Ag0) decrease biofouling of bio-Ag0/PES nanocomposite membranes. Water Res 2012;46:2077-87. [136, 1261, 1083, 1330] reference_item 0.85 ["reference content label: [132] Zhang M, Zhang K, De Gusseme B, Verstraete W. Biogenic"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
432 47 12 number 46 [1055, 1394, 1086, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
433 48 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
434 48 1 reference_content [133] Creamer NJ, Mikheenko IP, Yong P, Deplanche K, Sanyahumbi D, Wood J, et al. Novel supported Pd hydrogenation bionanocatalyst for hybrid homogeneous/heterogeneous catalysis. Catal Today 2007;128: [136, 142, 1085, 252] reference_item 0.85 ["reference content label: [133] Creamer NJ, Mikheenko IP, Yong P, Deplanche K, Sanyahu"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
435 48 2 reference_content [134] Bennett JA, Creamer NJ, Deplanche K, Macaskie LE, Shannon IJ, Wood J. Palladium supported on bacterial biomass as a novel heterogeneous catalyst: A comparison of Pd/Al₂O₃ and bio-Pd in the hydro [136, 267, 1085, 378] reference_item 0.85 ["reference content label: [134] Bennett JA, Creamer NJ, Deplanche K, Macaskie LE, Shan"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
436 48 3 reference_content [135] Wood J, Bodenes L, Bennett J, Deplanche K, Macaskie LE. Hydrogenation of 2-Butyne-1,4-diol Using Novel Bio-Palladium Catalysts. Ind Eng Chem Res 2009;49:980-8. [137, 390, 1085, 461] reference_item 0.85 ["reference content label: [135] Wood J, Bodenes L, Bennett J, Deplanche K, Macaskie LE"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
437 48 4 reference_content [136] Creamer NJ, Deplanche K, Snape TJ, Mikheenko IP, Yong P, Samyahumbi D, et al. A biogenic catalyst for hydrogenation, reduction and selective dehalogenation in non-aqueous solvents. Hydrometallur [136, 472, 1086, 585] reference_item 0.85 ["reference content label: [136] Creamer NJ, Deplanche K, Snape TJ, Mikheenko IP, Yong "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
438 48 5 reference_content [137] Jia L, Zhang Q, Li Q, Song H. The biosynthesis of palladium nanoparticles by antioxidants in Gardenia jasminoides Ellis : long lifetime nanocatalysts for p-nitrotoluene hydrogenation. Nanotechno [137, 598, 1082, 709] reference_item 0.85 ["reference content label: [137] Jia L, Zhang Q, Li Q, Song H. The biosynthesis of pall"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
439 48 6 reference_content [138] Sobjerg LS, Gauthier D, Lindhardt AT, Bunge M, Finster K, Meyer RL, et al. Bio-supported palladium nanoparticles as a catalyst for Suzuki-Miyaura and Mizoroki-Heck reactions. Green Chemistry 200 [136, 722, 1085, 832] reference_item 0.85 ["reference content label: [138] Sobjerg LS, Gauthier D, Lindhardt AT, Bunge M, Finster"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
440 48 7 reference_content [139] Søbjerg LS, Lindhardt AT, Skrydstrup T, Finster K, Meyer RL. Size control and catalytic activity of bio-supported palladium nanoparticles. Colloids Surf B Biointerfaces 2011;85:373-8. [136, 847, 1086, 917] reference_item 0.85 ["reference content label: [139] S\u00f8bjerg LS, Lindhardt AT, Skrydstrup T, Finster K, Mey"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
441 48 8 reference_content [140] Gauthier D, Søbjerg LS, Jensen KM, Lindhardt AT, Bunge M, Finster K, et al. Environmentally Benign Recovery and Reactivation of Palladium from Industrial Waste by Using Gram-Negative Bacteria. C [136, 930, 1085, 1041] reference_item 0.85 ["reference content label: [140] Gauthier D, S\u00f8bjerg LS, Jensen KM, Lindhardt AT, Bunge"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
442 48 9 reference_content [141] Du M, Zhan G, Yang X, Wang H, Lin W, Zhou Y, et al. Ionic liquid-enhanced immobilization of biosynthesized Au nanoparticles on TS-1 toward efficient catalysts for propylene epoxidation. J Catal [136, 1053, 1086, 1165] reference_item 0.85 ["reference content label: [141] Du M, Zhan G, Yang X, Wang H, Lin W, Zhou Y, et al. Io"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
443 48 10 reference_content [142] Zhan G, Du M, Sun D, Huang J, Yang X, Ma Y, et al. Vapor-Phase Propylene Epoxidation with $ H_{2}/O_{2} $ over Bioreduction Au/TS-1 Catalysts: Synthesis, Characterization, and Optimization. Ind [137, 1177, 1085, 1288] reference_item 0.85 ["reference content label: [142] Zhan G, Du M, Sun D, Huang J, Yang X, Ma Y, et al. Vap"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
444 48 11 number 47 [1055, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
445 49 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
446 49 1 reference_content [143] Huang J, Liu C, Sun D, Hong Y, Du M, Odoom-Wubah T, et al. Biosynthesized gold nanoparticles supported over TS-1 toward efficient catalyst for epoxidation of styrene. Chem Eng J 2014;235:215-23. [136, 142, 1086, 252] reference_item 0.85 ["reference content label: [143] Huang J, Liu C, Sun D, Hong Y, Du M, Odoom-Wubah T, et"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
447 49 2 reference_content [144] Venu R, Ramulu TS, Anandakumar S, Rani VS, Kim CG. Bio-directed synthesis of platinum nanoparticles using aqueous honey solutions and their catalytic applications. Colloids and Surfaces A: Physi [136, 267, 1086, 377] reference_item 0.85 ["reference content label: [144] Venu R, Ramulu TS, Anandakumar S, Rani VS, Kim CG. Bio"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
448 49 3 reference_content [145] Wu X, Song Q, Jia L, Li Q, Yang C, Lin L. Pd-Gardenia- $ TiO_{2} $ as a photocatalyst for $ H_{2} $ evolution from pure water. Int J Hydrogen Energy 2011. [136, 391, 1085, 461] reference_item 0.85 ["reference content label: [145] Wu X, Song Q, Jia L, Li Q, Yang C, Lin L. Pd-Gardenia-"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
449 49 4 reference_content [146] Macaskie LE, Baxter-Plant VS, Creamer NJ, Humphries AC, Mikheenko IP, Mikheenko PM, et al. Applications of bacterial hydrogenases in waste decontamination, manufacture of novel bionanocatalysts [136, 473, 1087, 585] reference_item 0.85 ["reference content label: [146] Macaskie LE, Baxter-Plant VS, Creamer NJ, Humphries AC"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
450 49 5 reference_content [147] Yong P, Paterson-Beedle M, Mikheenko IP, Macaskie LE. From bio-mineralisation to fuel cells: biomanufacture of Pt and Pd nanocrystals for fuel cell electrode catalyst. Biotechnol Lett 2007;29:53 [137, 598, 1085, 708] reference_item 0.85 ["reference content label: [147] Yong P, Paterson-Beedle M, Mikheenko IP, Macaskie LE. "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
451 49 6 reference_content [148] Dimitriadis S, Nomikou N, McHale AP. Pt-based electro-catalytic materials derived from biosorption processes and their exploitation in fuel cell technology. Biotechnol Lett 2007;29:545-51. [136, 722, 1085, 832] reference_item 0.85 ["reference content label: [148] Dimitriadis S, Nomikou N, McHale AP. Pt-based electro-"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
452 49 7 reference_content [149] Ogi T, Honda R, Tamaoki K, Saitoh N, Konishi Y. Direct room-temperature synthesis of a highly dispersed Pd nanoparticle catalyst and its electrical properties in a fuel cell. Powder Technol 2011 [136, 847, 1086, 956] reference_item 0.85 ["reference content label: [149] Ogi T, Honda R, Tamaoki K, Saitoh N, Konishi Y. Direct"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
453 49 8 reference_content [150] Orozco R, Redwood M, Yong P, Caldelari I, Sargent F, Macaskie L. Towards an integrated system for bio-energy: hydrogen production by Escherichia coli and use of palladium-coated waste cells for [136, 970, 1086, 1082] reference_item 0.85 ["reference content label: [150] Orozco R, Redwood M, Yong P, Caldelari I, Sargent F, M"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
454 49 9 reference_content [151] Yong P, Mikheenko I, Deplanche K, Redwood M, Macaskie L. Biorefining of precious metals from wastes: an answer to manufacturing of cheap nanocatalysts for fuel cells and power generation via an [137, 1095, 1086, 1205] reference_item 0.85 ["reference content label: [151] Yong P, Mikheenko I, Deplanche K, Redwood M, Macaskie "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
455 49 10 reference_content [152] Pingarrón JM, Yáñez-Sedeño P, González-Cortés A. Gold nanoparticle-based electrochemical biosensors. Electrochimica Acta 2008;53:5848-66. [136, 1218, 1084, 1286] reference_item 0.85 ["reference content label: [152] Pingarr\u00f3n JM, Y\u00e1\u00f1ez-Sede\u00f1o P, Gonz\u00e1lez-Cort\u00e9s A. Gold "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
456 49 11 number 48 [1056, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
457 50 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
458 50 1 reference_content [153] Wang Y, He X, Wang K, Zhang X, Tan W. Barbated Skullcup herb extract-mediated biosynthesis of gold nanoparticles and its primary application in electrochemistry. Colloids Surf B Biointerfaces 20 [137, 142, 1087, 252] reference_item 0.85 ["reference content label: [153] Wang Y, He X, Wang K, Zhang X, Tan W. Barbated Skullcu"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
459 50 2 reference_content [154] Ghoreishi SM, Behpour M, Khayatkashani M. Green synthesis of silver and gold nanoparticles using Rosa damascena and its primary application in electrochemistry. Physica E: Low-dimensional System [137, 266, 1082, 377] reference_item 0.85 ["reference content label: [154] Ghoreishi SM, Behpour M, Khayatkashani M. Green synthe"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
460 50 3 reference_content [155] Jha AK, Prasad K. Ferroelectric BaTiO₃ nanoparticles: Biosynthesis and characterization. Colloids Surf B Biointerfaces 2010;75:330-4. [138, 391, 1082, 460] reference_item 0.85 ["reference content label: [155] Jha AK, Prasad K. Ferroelectric BaTiO\u2083 nanoparticles: "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
461 50 4 reference_content [156] Torres-Chavolla E, Ranasinghe RJ, Alocilja EC. Characterization and Functionalization of Biogenic Gold Nanoparticles for Biosensing Enhancement. Nanotechnology, IEEE Transactions on 2010;9:533-8 [136, 473, 1086, 583] reference_item 0.85 ["reference content label: [156] Torres-Chavolla E, Ranasinghe RJ, Alocilja EC. Charact"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
462 50 5 reference_content [157] Shilov V, Voitenko E, Marochko L, Podol'skaya V. Electric characteristics of cellular structures containing colloidal silver. Colloid J 2010;72:125-32. [136, 598, 1086, 667] reference_item 0.85 ["reference content label: [157] Shilov V, Voitenko E, Marochko L, Podol'skaya V. Elect"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
463 50 6 reference_content [158] Du L, Jiang H, Liu X, Wang E. Biosynthesis of gold nanoparticles assisted by Escherichia coli DH5α and its application on direct electrochemistry of hemoglobin. Electrochem Commun 2007;9:1165-70 [136, 681, 1086, 793] reference_item 0.85 ["reference content label: [158] Du L, Jiang H, Liu X, Wang E. Biosynthesis of gold nan"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
464 50 7 reference_content [159] Kowshik M, Deshmukh N, Vogel W, Urban J, Kulkarni SK, Paknikar KM. Microbial synthesis of semiconductor CdS nanoparticles, their characterization, and their use in the fabrication of an ideal di [135, 807, 1086, 918] reference_item 0.85 ["reference content label: [159] Kowshik M, Deshmukh N, Vogel W, Urban J, Kulkarni SK, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
465 50 8 reference_content [160] Uddin MJ, Middya TR, Chaudhuri B, Sakata H. Destruction of percolative network using green synthesized gold nanoparticles: Formation of high dielectric material. Polymer 2014;55:15-21. [136, 931, 1085, 1041] reference_item 0.85 ["reference content label: [160] Uddin MJ, Middya TR, Chaudhuri B, Sakata H. Destructio"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
466 50 9 reference_content [161] Bindhu MR, Umadevi M. Silver and gold nanoparticles for sensor and antibacterial applications. Spectrochimica Acta Part A: Molecular and Biomolecular Spectroscopy 2014;128:37-45. [136, 1056, 1086, 1166] reference_item 0.85 ["reference content label: [161] Bindhu MR, Umadevi M. Silver and gold nanoparticles fo"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
467 50 10 reference_content [162] Safarik I, Safarikova M. Magnetically modified microbial cells: A new type of magnetic adsorbents. China Particuology 2007;5:19-25. [137, 1180, 1086, 1249] reference_item 0.85 ["reference content label: [162] Safarik I, Safarikova M. Magnetically modified microbi"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
468 50 11 reference_content [163] Šafařík I, Šafaříková M. Use of magnetic techniques for the isolation of cells. Journal of Chromatography B: Biomedical Sciences and Applications 1999;722:33-53. [137, 1263, 1087, 1332] reference_item 0.85 ["reference content label: [163] \u0160afa\u0159\u00edk I, \u0160afa\u0159\u00edkov\u00e1 M. Use of magnetic techniques fo"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
469 50 12 number 49 [1055, 1393, 1085, 1416] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
470 51 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
471 51 1 reference_content [164] Safarik I, Safarikova M. Magnetic nano- and microparticles in biotechnology. Chemical Papers 2009;63:497-505. [137, 143, 1086, 211] reference_item 0.85 ["reference content label: [164] Safarik I, Safarikova M. Magnetic nano- and microparti"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
472 51 2 reference_content [165] Faivre D, Schuler D. Magnetotactic bacteria and magnetosomes. Chem Rev 2008;108:4875-98. [137, 225, 1085, 294] reference_item 0.85 ["reference content label: [165] Faivre D, Schuler D. Magnetotactic bacteria and magnet"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
473 51 3 reference_content [166] Pecova M, Zajoncova L, Polakova K, Cuda J, Safarikova M, Sebela M, et al. Biologically Active Compounds Immobilized on Magnetic Carriers and Their Utilization in Biochemistry and Biotechnology. [137, 308, 1085, 420] reference_item 0.85 ["reference content label: [166] Pecova M, Zajoncova L, Polakova K, Cuda J, Safarikova "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
474 51 4 reference_content [167] Kundu S, Kale AA, Banpurkar AG, Kulkarni GR, Ogale SB. On the change in bacterial size and magnetosome features for Magnetospirillum magnetotacticum (MS-1) under high concentrations of zinc and [136, 432, 1085, 544] reference_item 0.85 ["reference content label: [167] Kundu S, Kale AA, Banpurkar AG, Kulkarni GR, Ogale SB."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
475 51 5 reference_content [168] Yeary LW, Moon JW, Rawn CJ, Love LJ, Rondinone AJ, Thompson JR, et al. Magnetic properties of bio-synthesized zinc ferrite nanoparticles. J Magn Magn Mater 2011;323:3043-8. [137, 556, 1084, 628] reference_item 0.85 ["reference content label: [168] Yeary LW, Moon JW, Rawn CJ, Love LJ, Rondinone AJ, Tho"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
476 51 6 reference_content [169] Staniland S, Williams W, Telling N, Van Der L, Harrison A, Ward B. Controlled cobalt doping of magnetosomes in vivo. Nat Nano 2008;3:158-62. [138, 639, 1083, 709] reference_item 0.85 ["reference content label: [169] Staniland S, Williams W, Telling N, Van Der L, Harriso"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
477 51 7 reference_content [170] Roh Y, Vali H, Phelps TJ, Moon JW. Extracellular synthesis of magnetite and metal-substituted magnetite nanoparticles. Journal of Nanoscience and Nanotechnology 2006;6:3517-20. [136, 722, 1084, 832] reference_item 0.85 ["reference content label: [170] Roh Y, Vali H, Phelps TJ, Moon JW. Extracellular synth"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
478 51 8 reference_content [171] Moon J-W, Rawn CJ, Rondinone AJ, Love LJ, Roh Y, Everett SM, et al. Large-scale production of magnetic nanoparticles using bacterial fermentation. J Ind Microbiol Biotechnol 2010;37:1023-31. [136, 847, 1085, 957] reference_item 0.85 ["reference content label: [171] Moon J-W, Rawn CJ, Rondinone AJ, Love LJ, Roh Y, Evere"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
479 51 9 reference_content [172] Telling ND, Coker VS, Cutting RS, van der Laan G, Pearce CI, Patrick RAD, et al. Remediation of Cr(VI) by biogenic magnetic nanoparticles: An x-ray magnetic circular dichroism study. Appl Phys L [136, 970, 1085, 1082] reference_item 0.85 ["reference content label: [172] Telling ND, Coker VS, Cutting RS, van der Laan G, Pear"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
480 51 10 reference_content [173] Cutting RS, Coker VS, Telling ND, Kimber RL, Pearce CI, Ellis BL, et al. Optimizing Cr(VI) and Tc(VII) Remediation through Nanoscale Biomineral Engineering. Environ Sci Technol 2010;44:2577-84. [136, 1095, 1086, 1204] reference_item 0.85 ["reference content label: [173] Cutting RS, Coker VS, Telling ND, Kimber RL, Pearce CI"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
481 51 11 reference_content [174] Coker VS, Bennett JA, Telling ND, Henkel T, Charnock JM, van der Laan G, et al. Microbial Engineering of Nanoheterostructures: Biological Synthesis of a Magnetically Recoverable Palladium Nanoca [136, 1218, 1083, 1329] reference_item 0.85 ["reference content label: [174] Coker VS, Bennett JA, Telling ND, Henkel T, Charnock J"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
482 51 12 number 50 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
483 52 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
484 52 1 reference_content [175] Crean DE, Coker VS, van der Laan G, Lloyd JR. Engineering Biogenic Magnetite for Sustained Cr(VI) Remediation in Flow-through Systems. Environ Sci Technol 2012;46:3352-9. [137, 143, 1085, 211] reference_item 0.85 ["reference content label: [175] Crean DE, Coker VS, van der Laan G, Lloyd JR. Engineer"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
485 52 2 reference_content [176] Ahmad A, Jagadale T, Dhas V, Khan S, Patil S, Pasricha R, et al. Fungus-Based Synthesis of Chemically Difficult-To-Synthesize Multifunctional Nanoparticles of CuAlO₂. Adv Mater 2007;19:3295-9. [137, 225, 1084, 335] reference_item 0.85 ["reference content label: [176] Ahmad A, Jagadale T, Dhas V, Khan S, Patil S, Pasricha"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
486 52 3 reference_content [177] Ankamwar B, Damle C, Ahmad A, Sastry M. Biosynthesis of Gold and Silver Nanoparticles Using Emblica Officinalis Fruit Extract, Their Phase Transfer and Transmetallation in an Organic Solution. J [136, 349, 1086, 501] reference_item 0.85 ["reference content label: [177] Ankamwar B, Damle C, Ahmad A, Sastry M. Biosynthesis o"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
487 52 4 reference_content [178] Haverkamp R, Marshall A, Agterveld D. Pick your carats: nanoparticles of goldsilvercopper alloy produced in vivo. J Nanopart Res 2007;9:697-700. [137, 515, 1087, 585] reference_item 0.85 ["reference content label: [178] Haverkamp R, Marshall A, Agterveld D. Pick your carats"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
488 52 5 reference_content [179] Senapati S, Ahmad A, Khan MI, Sastry M, Kumar R. Extracellular Biosynthesis of Bimetallic Au–Ag Alloy Nanoparticles. Small 2005;1:517-20. [137, 598, 1086, 667] reference_item 0.85 ["reference content label: [179] Senapati S, Ahmad A, Khan MI, Sastry M, Kumar R. Extra"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
489 52 6 reference_content [180] Sawle BD, Salimath B, Deshpande R, Bedre MD, Prabhakar BK, Venkataraman A. Biosynthesis and stabilization of Au and Au-Ag alloy nanoparticles by fungus, Fusarium semitectum. Science and Technolo [136, 680, 1086, 792] reference_item 0.85 ["reference content label: [180] Sawle BD, Salimath B, Deshpande R, Bedre MD, Prabhakar"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
490 52 7 reference_content [181] Deplanche K, Merroun ML, Casadesus M, Tran DT, Mikheenko IP, Bennett JA, et al. Microbial synthesis of core/shell gold/palladium nanoparticles for applications in green chemistry. Journal of the [136, 805, 1086, 917] reference_item 0.85 ["reference content label: [181] Deplanche K, Merroun ML, Casadesus M, Tran DT, Mikheen"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
491 52 8 reference_content [182] Ankamwar B, Chaudhary M, Sastry M. Gold Nanotriangles Biologically Synthesized using Tamarind Leaf Extract and Potential Application in Vapor Sensing. Synthesis and Reactivity in Inorganic, Meta [136, 930, 1085, 1041] reference_item 0.85 ["reference content label: [182] Ankamwar B, Chaudhary M, Sastry M. Gold Nanotriangles "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
492 52 9 reference_content [183] Xie J, Lee JY, Wang DIC, Ting YP. Silver Nanoplates: From Biological to Biomimetic Synthesis. ACS Nano 2007;1:429-39. [137, 1052, 1085, 1123] reference_item 0.85 ["reference content label: [183] Xie J, Lee JY, Wang DIC, Ting YP. Silver Nanoplates: F"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
493 52 10 reference_content [184] Sathish Kumar K, Amutha R, Arumugam P, Berchmans S. Synthesis of Gold Nanoparticles: An Ecofriendly Approach Using Hansenula anomala. ACS Applied Materials & Interfaces 2011;3:1418-25. [137, 1135, 1085, 1245] reference_item 0.85 ["reference content label: [184] Sathish Kumar K, Amutha R, Arumugam P, Berchmans S. Sy"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
494 52 11 number 51 [1055, 1394, 1084, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
495 53 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
496 53 1 image [142, 169, 655, 536] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
497 53 2 number 52 [1055, 1393, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
498 54 0 header ACCEPTED MANUSCRIPT [385, 31, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
499 54 1 image [142, 141, 863, 633] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
500 54 2 number 53 [1055, 1392, 1086, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
501 55 0 header ACCEPTED MANUSCRIPT [384, 31, 841, 70] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
502 55 1 image [143, 144, 1084, 1100] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
503 55 2 number 54 [1055, 1392, 1086, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
504 56 0 header ACCEPTED MANUSCRIPT [384, 31, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
505 56 1 vision_footnote 514 nm [200, 139, 314, 175] reference_item 0.7 ["vision_footnote label: 514 nm"] footnote 0.7 reference_zone reference_like reference_numeric_dot True True
506 56 2 vision_footnote 633 nm [434, 138, 548, 175] reference_item 0.7 ["vision_footnote label: 633 nm"] footnote 0.7 reference_zone reference_like reference_numeric_dot True True
507 56 3 figure_title a. [146, 226, 178, 255] figure_inner_text 0.9 ["panel label / figure inner text: a."] figure_inner_text 0.9 display_zone legend_like panel_label True True
508 56 4 image [213, 217, 304, 448] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
509 56 5 figure_title e. [394, 226, 425, 255] figure_inner_text 0.9 ["panel label / figure inner text: e."] figure_inner_text 0.9 display_zone legend_like panel_label True True
510 56 6 image [444, 215, 538, 448] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
511 56 7 figure_title b. [147, 456, 177, 488] figure_inner_text 0.9 ["panel label / figure inner text: b."] figure_inner_text 0.9 display_zone legend_like panel_label True True
512 56 8 image [675, 217, 809, 436] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
513 56 9 figure_title f. [394, 456, 417, 488] figure_inner_text 0.9 ["panel label / figure inner text: f."] figure_inner_text 0.9 display_zone legend_like panel_label True True
514 56 10 image [146, 495, 370, 644] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
515 56 11 image [383, 493, 609, 645] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
516 56 12 figure_title C. [147, 695, 177, 724] figure_inner_text 0.9 ["panel label / figure inner text: C."] figure_inner_text 0.9 display_zone legend_like panel_label True True
517 56 13 image [847, 214, 1084, 439] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
518 56 14 image [143, 694, 375, 886] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
519 56 15 figure_title i. [849, 222, 869, 256] figure_inner_text 0.9 ["panel label / figure inner text: i."] figure_inner_text 0.9 display_zone legend_like panel_label True True
520 56 16 figure_title g. [394, 694, 425, 729] figure_inner_text 0.9 ["panel label / figure inner text: g."] figure_inner_text 0.9 display_zone legend_like panel_label True True
521 56 17 image [626, 457, 813, 917] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
522 56 18 image [380, 691, 614, 886] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
523 56 19 figure_title j. [850, 456, 868, 492] figure_inner_text 0.9 ["panel label / figure inner text: j."] figure_inner_text 0.9 display_zone legend_like panel_label True True
524 56 20 figure_title d. [146, 926, 178, 961] figure_inner_text 0.9 ["panel label / figure inner text: d."] figure_inner_text 0.9 display_zone legend_like panel_label True True
525 56 21 image [847, 450, 1066, 674] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
526 56 22 image [221, 934, 297, 1136] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
527 56 23 figure_title h. [394, 926, 425, 960] figure_inner_text 0.9 ["panel label / figure inner text: h."] figure_inner_text 0.9 display_zone legend_like panel_label True True
528 56 24 image [394, 925, 534, 1138] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
529 56 25 figure_title k. [850, 691, 876, 723] figure_inner_text 0.9 ["panel label / figure inner text: k."] figure_inner_text 0.9 display_zone legend_like panel_label True True
530 56 26 image [848, 685, 1084, 909] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
531 56 27 figure_title 1. [850, 925, 870, 959] figure_caption_candidate 0.85 ["figure_title label: 1."] figure_caption 0.85 unknown_like short_fragment False False
532 56 28 image [846, 919, 1084, 1156] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
533 56 29 number 55 [1055, 1392, 1086, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
534 57 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
535 57 1 image [143, 143, 656, 649] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
536 57 2 number 56 [1056, 1393, 1086, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
537 58 0 header ACCEPTED MANUSCRIPT [385, 31, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
538 58 1 image [142, 143, 610, 468] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
539 58 2 figure_title a [585, 147, 607, 171] figure_inner_text 0.9 ["panel label / figure inner text: a"] figure_inner_text 0.9 display_zone legend_like panel_label True True
540 58 3 image [621, 142, 1086, 471] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
541 58 4 image [143, 479, 611, 805] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
542 58 5 image [621, 478, 1086, 807] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
543 58 6 image [144, 812, 609, 1144] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
544 58 7 image [620, 817, 1085, 1137] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
545 58 8 number 57 [1055, 1392, 1085, 1419] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
546 59 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
547 59 1 figure_title Figure 1: Light microscopy of gold nanoparticle biosynthesis inside the moss leaf. The purple color indicates the presence of gold nanoparticles inside the cells (picture taken and kindly provided by [135, 142, 1087, 284] figure_caption 0.92 ["figure_title label: Figure 1: Light microscopy of gold nanoparticle biosynthesis"] figure_caption 0.92 display_zone legend_like figure_number True True
548 59 2 figure_title Figure 2: Antimicrobial activity of AgNPs synthesized by S. hygroscopicus. (a) Candida albicans; (b) Bacillus subtilis; (c) Escherichia coli; (d) Enterococcus faecalis; (e) Salmonella typhimurium; (f) [137, 309, 1087, 562] figure_caption 0.92 ["figure_title label: Figure 2: Antimicrobial activity of AgNPs synthesized by S. "] figure_caption 0.92 display_zone legend_like figure_number True True
549 59 3 figure_title Figure 3: Probable anti-proliferative mechanism of AuNP. Reprinted from [49] with kind permission from Springer Science and Business Media. [136, 583, 1087, 669] figure_caption 0.92 ["figure_title label: Figure 3: Probable anti-proliferative mechanism of AuNP. Rep"] figure_caption 0.92 display_zone legend_like figure_number True True
550 59 4 figure_title Figure 4: Optical images (right column) and reconstructed images from the intensity of Raman spectra with excitation at 514 nm (left column) and 633nm (middle column), for encapsulated cell before (to [136, 696, 1087, 948] figure_caption 0.92 ["figure_title label: Figure 4: Optical images (right column) and reconstructed im"] figure_caption 0.92 display_zone legend_like figure_number True True
551 59 5 figure_title Figure 5: Electron micrograph of “palladized” cells of Shewanella oneidensis (kindly provided by Simon de Corte) [135, 971, 1088, 1056] figure_caption 0.92 ["figure_title label: Figure 5: Electron micrograph of \u201cpalladized\u201d cells of Shewa"] figure_caption 0.92 display_zone legend_like figure_number True True
552 59 6 figure_title Figure 6: Electron micrographs of crystal morphologies and intracellular organization of magnetosomes found in various magnetotactic bacteria. Shapes of magnetic crystals include cubo-octahedral (a), [136, 1082, 1088, 1392] reference_item 0.92 ["figure_title label: Figure 6: Electron micrographs of crystal morphologies and i"] figure_caption 0.92 display_zone legend_like figure_number True True
553 59 7 number 58 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
554 60 0 paragraph_title ACCEPTED MANUSCRIPT [384, 32, 840, 69] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: ACCEPTED MANUSCRIPT"] section_heading 0.6 unknown_like short_fragment False True
555 60 1 text biotechnological applications. Applied Microbiology and Biotechnology, 52(4), 464-473" with kind permission from Springer Science and Business Media. [136, 142, 1087, 229] frontmatter_noise 0.7 ["keyword-like block: biotechnological applications. Applied Microbiology and Biot"] frontmatter_noise 0.7 body_like none False False
556 60 2 number 59 [1056, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
557 61 0 header ACCEPTED MANUSCRIPT [384, 31, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
558 61 1 figure_title Table 1. Antibacterial activity [136, 142, 491, 172] table_caption 0.9 ["table prefix matched: Table 1. Antibacterial activity"] table_caption 0.9 display_zone table_caption_like table_number True True
559 61 2 table <table><tr><td>NP</td><td>Organism used</td><td>Activity against</td><td>Reference</td></tr><tr><td>Ag</td><td>Pleurotus sajor-caju</td><td>Staphylococcus aureus, Klebsiella pneumonia</td><td>Vigneshw [131, 165, 1004, 1368] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
560 61 3 number 60 [1055, 1393, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
561 62 0 doc_title ACCEPTED MANUSCRIPT [384, 32, 841, 69] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 unknown_like short_fragment False True
562 62 1 table <table><tr><td>Ag</td><td>Fusarium oxysporum</td><td>S. aureus on cotton fabrics</td><td>Durán et al.</td></tr><tr><td>Ag</td><td>Fusarium solani</td><td>S. aureus, E. coli on cotton fabrics</td><td>E [136, 147, 1013, 609] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
563 62 2 number 61 [1055, 1394, 1084, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
564 63 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
565 63 1 figure_title Table 2. Antifungal, antiviral and anti-parasite activity [136, 199, 727, 228] table_caption 0.9 ["table prefix matched: Table 2. Antifungal, antiviral and anti-parasite activity"] table_caption 0.9 display_zone table_caption_like table_number True True
566 63 2 table <table><tr><td>NP</td><td>Organism used</td><td>Activity against</td><td>Reference</td></tr><tr><td>Ag</td><td>Alternaria alternate</td><td>Phoma glomerata, Phoma herbarum, Fusarium semitectum, Tricho [135, 238, 1075, 1013] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
567 63 3 number 62 [1055, 1393, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
568 64 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
569 64 1 figure_title Table 3. Drug delivery and cancer treatment applications [136, 263, 750, 290] table_caption 0.9 ["table prefix matched: Table 3. Drug delivery and cancer treatment applications"] table_caption 0.9 display_zone table_caption_like table_number True True
570 64 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Ag</td><td>Camellia sinensis</td><td>biocompatible</td><td>Moulton et al.</td></tr><tr><td>Au</td><td>Zin [132, 296, 1090, 1098] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
571 64 3 number 63 [1056, 1394, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
572 65 0 header ACCEPTED MANUSCRIPT [385, 32, 839, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
573 65 1 figure_title Table 4. Medical diagnostics and sensors [136, 222, 599, 251] table_caption 0.9 ["table prefix matched: Table 4. Medical diagnostics and sensors"] table_caption 0.9 display_zone table_caption_like table_number True True
574 65 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>eggshell membrane</td><td>glucose sensor</td><td>Zheng et al.</td></tr><tr><td>Au</td><td>eggs [135, 262, 1061, 502] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
575 65 3 number 64 [1056, 1394, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
576 66 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
577 66 1 figure_title Table 5. Imaging and other medical applications [135, 238, 669, 268] table_caption 0.9 ["table prefix matched: Table 5. Imaging and other medical applications"] table_caption 0.9 display_zone table_caption_like table_number True True
578 66 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Klebsiella pneumoniae</td><td>photosynthesis-based environmental biosensor</td><td>Sicard et a [133, 276, 1056, 986] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
579 66 3 number 65 [1055, 1393, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
580 67 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
581 67 1 figure_title Table 6. Metal biosorption, bioremediation and biorecovery [136, 254, 778, 283] table_caption 0.9 ["table prefix matched: Table 6. Metal biosorption, bioremediation and biorecovery"] table_caption 0.9 display_zone table_caption_like table_number True True
582 67 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Lyngbya majuscula, Spirulina subsalsa, Rhizoclonium hieroglyphicum</td><td>bioaccumulation</td [135, 289, 1075, 830] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
583 67 3 number 66 [1055, 1394, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
584 68 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
585 68 1 figure_title Table 7. Catalytic dehalogenation [137, 277, 526, 306] table_caption 0.9 ["table prefix matched: Table 7. Catalytic dehalogenation"] table_caption 0.9 display_zone table_caption_like table_number True True
586 68 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>Desulfovibrio vulgaris, D. desulfuricans</td><td>dechlorination of CP and PCBs</td><td>Baxter- [135, 314, 1032, 1153] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
587 68 3 number 67 [1056, 1394, 1084, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
588 69 0 header ACCEPTED MANUSCRIPT [385, 31, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
589 69 1 figure_title Table 8. Catalytic 4-nitrophenol degradation and catalytic treatment of other aqueous organic compounds [136, 143, 1087, 202] table_caption 0.9 ["table prefix matched: Table 8. Catalytic 4-nitrophenol degradation and catalytic t"] table_caption 0.9 display_zone table_caption_like table_number True True
590 69 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Sesbania drummondii</td><td>reduction of 4-nitrophenol</td><td>Sharma et al.</td></tr><tr><td> [133, 207, 1086, 915] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
591 69 3 number 68 [1056, 1393, 1085, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
592 70 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
593 70 1 figure_title Table 9. Catalytic Cr(VI) reduction [137, 222, 514, 251] table_caption 0.9 ["table prefix matched: Table 9. Catalytic Cr(VI) reduction"] table_caption 0.9 display_zone table_caption_like table_number True True
594 70 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>E. coli mutant strains</td><td>reduction of Cr(VI) to Cr(III)</td><td>Deplanche et al.</td></t [135, 261, 1081, 723] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
595 70 3 vision_footnote * mixed precious metals [137, 717, 382, 744] footnote 0.7 ["vision_footnote label: * mixed precious metals"] footnote 0.7 unknown_like none True True
596 70 4 number 69 [1056, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
597 71 0 header ACCEPTED MANUSCRIPT [384, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
598 71 1 figure_title Table 10. Catalytic organic synthesis [136, 222, 546, 251] table_caption 0.9 ["table prefix matched: Table 10. Catalytic organic synthesis"] table_caption 0.9 display_zone table_caption_like table_number True True
599 71 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>D. desulfuricans, Bacillus sphaericus</td><td>hydrogenation of itaconic acid</td><td>Creamer e [132, 261, 1099, 1001] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
600 71 3 number 70 [1056, 1393, 1086, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
601 72 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
602 72 1 figure_title Table 11. Energy-related applications [137, 277, 552, 306] table_caption 0.9 ["table prefix matched: Table 11. Energy-related applications"] table_caption 0.9 display_zone table_caption_like table_number True True
603 72 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Pd</td><td>Cupriavidus necator, Pseudomonas putida, Paracoccus denitrificans</td><td>hydrogen production [135, 314, 1122, 784] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
604 72 3 number 71 [1056, 1393, 1084, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
605 73 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
606 73 1 figure_title Table 12. Electrodes and sensors [137, 198, 507, 226] table_caption 0.9 ["table prefix matched: Table 12. Electrodes and sensors"] table_caption 0.9 display_zone table_caption_like table_number True True
607 73 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>Au</td><td>Scutellaria barbata</td><td>direct electrochemistry of 4-NP</td><td>Wang et al.</td></tr><tr>< [131, 236, 1080, 741] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
608 73 3 number 72 [1055, 1392, 1086, 1418] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
609 74 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 68] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
610 74 1 figure_title Table 13. Application enhancements using magnetically responsive NPs [135, 222, 886, 251] table_caption 0.9 ["table prefix matched: Table 13. Application enhancements using magnetically respon"] table_caption 0.9 display_zone table_caption_like table_number True True
611 74 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>$ Fe_{3}O_{4} $</td><td>Thermoanaerobacter sp. TOR-39</td><td>magnetite substituted with Zn</td><td>Yeary [132, 263, 1074, 796] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
612 74 3 number 73 [1056, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
613 75 0 header ACCEPTED MANUSCRIPT [385, 32, 840, 69] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
614 75 1 figure_title Table 14. Unique formulations and geometries [136, 222, 640, 251] table_caption 0.9 ["table prefix matched: Table 14. Unique formulations and geometries"] table_caption 0.9 display_zone table_caption_like table_number True True
615 75 2 table <table><tr><td>NP</td><td>Organism used</td><td>Application</td><td>Reference</td></tr><tr><td>$ CuAlO_{2} $</td><td>Humicola sp.</td><td>difficult-to-synthesize NPs</td><td>Ahmad et al.</td></tr><tr> [134, 261, 1077, 689] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
616 75 3 number 74 [1056, 1393, 1085, 1417] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
617 76 0 image [1, 0, 481, 759] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
618 76 1 image [493, 0, 1910, 737] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True

View file

@ -0,0 +1,635 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,doc_title,Electromagnetic fields for treating osteoarthritis (Review),"[175, 152, 1051, 191]",paper_title,0.8,"[""page-1 zone title_zone: Electromagnetic fields for treating osteoarthritis (Review)""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,1,text,"Li S, Yu B, Zhou D, He C, Zhuo Q, Hulme JM","[377, 254, 851, 285]",frontmatter_noise,0.7,"[""keyword-like block: Li S, Yu B, Zhou D, He C, Zhuo Q, Hulme JM""]",frontmatter_noise,0.7,body_zone,reference_like,citation_line,False,False
1,2,image,,"[415, 411, 789, 776]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,3,text,"THE COCHRANE
COLLABORATION $ ^{\textregistered} $","[409, 794, 820, 890]",affiliation,0.8,"[""page-1 zone affiliation_zone: THE COCHRANE\nCOLLABORATION $ ^{\\textregistered} $""]",affiliation,0.8,frontmatter_main_zone,support_like,none,True,True
1,4,text,"This is a reprint of a Cochrane review, prepared and maintained by The Cochrane Collaboration and published in The Cochrane Library 2013, Issue 12","[148, 1068, 1081, 1118]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,5,text,http://www.thecochranelibrary.com,"[487, 1114, 745, 1139]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,6,text,WILEY,"[531, 1264, 698, 1307]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,unknown_like,short_fragment,False,True
1,7,text,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1389, 710, 1430]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Electromagnetic fields for treating osteoarthritis (Review)\n""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
2,0,paragraph_title,TABLE OF CONTENTS,"[466, 160, 763, 183]",section_heading,0.6,"[""unnumbered paragraph_title, inferred level section_heading: TABLE OF CONTENTS""]",section_heading,0.6,body_zone,table_caption_like,short_fragment,True,True
2,1,content,"HEADER ..... 1
ABSTRACT ..... 1
PLAIN LANGUAGE SUMMARY ..... 2
SUMMARY OF FINDINGS FOR THE MAIN COMPARISON ..... 4
BACKGROUND ..... 7
OBJECTIVES ..... 8
METHODS ..... 8
RESULTS ..... 10
Figure 1. ....","[146, 188, 1083, 740]",unknown_structural,0.2,"[""unrecognized label 'content'""]",unknown_structural,0.2,body_zone,body_like,none,False,True
2,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,3,number,i,"[1068, 1392, 1080, 1410]",figure_inner_text,0.9,"[""panel label / figure inner text: i""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,0,doc_title,"[Intervention Review]
Electromagnetic fields for treating osteoarthritis","[147, 159, 880, 234]",unknown_structural,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,body_like,none,False,True
3,1,text,"Shasha Li $ ^{1} $, Bo Yu $ ^{2} $, Dong Zhou $ ^{3} $, Chengqi He $ ^{1} $, Qi Zhuo $ ^{4} $, Jennifer M Hulme $ ^{5} $","[147, 280, 715, 304]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,2,text," $ ^{1} $Department of Rehabilitation Medicine, West China Hospital, Sichuan University, Chengdu, China. $ ^{2} $Department of Paediatrics, Sichuan Provincial Hospital for Women and Children, Chengdu","[147, 324, 1079, 417]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
3,3,text,"Contact address: Chengqi He, Department of Rehabilitation Medicine, West China Hospital, Sichuan University, No.37 Guo-xue-xiang Street, Chengdu, Sichuan Province, 610041, China. chengqi.he623477@gmai","[147, 435, 1079, 483]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,4,text,"Editorial group: Cochrane Musculoskeletal Group.
Publication status and date: New search for studies and content updated (no change to conclusions), published in Issue 12, 2013.
Review content assesse","[147, 502, 1065, 571]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,text,"Citation: Li S, Yu B, Zhou D, He C, Zhuo Q, Hulme JM. Electromagnetic fields for treating osteoarthritis. Cochrane Database of Systematic Reviews 2013, Issue 12. Art. No.: CD003523. DOI: 10.1002/14651","[148, 589, 1084, 636]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,"Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 658, 768, 683]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,7,paragraph_title,ABSTRACT,"[540, 741, 688, 764]",abstract_heading,0.95,"[""abstract heading""]",abstract_heading,0.95,body_zone,body_like,short_fragment,True,True
3,8,paragraph_title,Background,"[148, 779, 248, 803]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Background""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
3,9,abstract,"This is an update of a Cochrane review first published in 2002. Osteoarthritis is a disease that affects the synovial joints, causing degeneration and destruction of hyaline cartilage and subchondral ","[145, 815, 1082, 909]",unknown_structural,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,,unknown_like,none,False,True
3,10,paragraph_title,Objectives,"[148, 921, 232, 943]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Objectives""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
3,11,text,To assess the benefits and harms of electromagnetic fields for the treatment of osteoarthritis as compared to placebo or sham.,"[147, 957, 1018, 981]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,12,paragraph_title,Search methods,"[148, 994, 272, 1015]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Search methods""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
3,13,abstract,"We searched the Cochrane Central Register of Controlled Trials (CENTRAL) (The Cochrane Library 2013, Issue 9), PreMEDLINE for trials published before 1966, MEDLINE from 1966 to October 2013, CINAHL an","[148, 1029, 1078, 1100]",unknown_structural,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,,unknown_like,none,False,True
3,14,paragraph_title,Selection criteria,"[148, 1112, 280, 1133]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Selection criteria""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
3,15,text,"Randomised controlled trials of electromagnetic fields in osteoarthritis, with four or more weeks treatment duration. We included papers in any language.","[148, 1147, 1078, 1196]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,16,paragraph_title,Data collection and analysis,"[148, 1207, 363, 1229]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Data collection and analysis""]",subsection_heading,0.6,body_zone,body_like,none,True,True
3,17,abstract,Two review authors independently assessed studies for inclusion in the review and resolved differences by consensus with a third review author. We extracted data using pre-developed data extraction fo,"[149, 1243, 1082, 1381]",body_paragraph,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,body_zone,body_like,none,True,True
3,18,footnote,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 709, 1430]",footnote,0.7,"[""footnote label: Electromagnetic fields for treating osteoarthritis (Review)\n""]",footnote,0.7,body_zone,body_like,none,True,True
3,19,number,1,"[1066, 1392, 1078, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,0,paragraph_title,Main results,"[148, 163, 247, 183]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Main results""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
4,1,text,"Nine studies with a total of 636 participants with osteoarthritis were included, six of which were added in this update of the review. Selective outcome reporting was unclear in all nine included stud","[147, 198, 1081, 289]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,2,text,"Participants who were randomised to electromagnetic field treatment rated their pain relief 15.10 points more on a scale of 0 to 100 (MD 15.10, 95% CI 9.08 to 21.13; absolute improvement 15%) after 4 ","[147, 303, 1083, 534]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,3,paragraph_title,Authors' conclusions,"[148, 547, 310, 569]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Authors' conclusions""]",subsection_heading,0.6,body_zone,body_like,none,True,True
4,4,text,Current evidence suggests that electromagnetic field treatment may provide moderate benefit for osteoarthritis sufferers in terms of pain relief. Further studies are required to confirm whether this t,"[147, 583, 1082, 653]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,5,paragraph_title,PLAIN LANGUAGE SUMMARY,"[147, 713, 536, 735]",section_heading,0.6,"[""unnumbered paragraph_title, inferred level section_heading: PLAIN LANGUAGE SUMMARY""]",section_heading,0.6,body_zone,body_like,none,True,True
4,6,paragraph_title,Electromagnetic fields for the treatment of osteoarthritis Review question,"[148, 750, 571, 809]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Electromagnetic fields for the treatment of osteoarthritis R""]",subsection_heading,0.6,body_zone,body_like,none,True,True
4,7,footer,,"[148, 787, 277, 809]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
4,8,paragraph_title,Background: what is osteoarthritis and what are electromagnetic fields?,"[148, 858, 680, 881]",section_heading,0.6,"[""unnumbered paragraph_title, inferred level section_heading: Background: what is osteoarthritis and what are electromagne""]",section_heading,0.6,body_zone,body_like,none,True,True
4,9,text,We conducted a review of the effect of electromagnetic fields on osteoarthritis. We found nine studies with 636 people.,"[147, 822, 981, 845]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,10,text,"Osteoarthritis is the most common form of arthritis that can affect the hands, hips, shoulders and knees. In osteoarthritis, the cartilage that protects the ends of the bones breaks down and causes pa","[148, 895, 1080, 941]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,11,text,An electromagnetic field is the invisible force that attracts things to magnets. This invisible attraction can be created using an electrical current that may affect the cartilage around the joints. I,"[147, 954, 1081, 1047]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,12,paragraph_title,Study characteristics,"[148, 1060, 306, 1081]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Study characteristics""]",subsection_heading,0.6,body_zone,body_like,none,True,True
4,13,text,"After searching for all relevant studies up to October 2013, we found nine studies that reviewed the effect of electromagnetic field treatment compared to a sham or fake treatment in 636 adults with o","[146, 1095, 1080, 1141]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,14,paragraph_title,Key results Pain (on a 0 to 100 scale; higher scores mean worse or more severe pain),"[148, 1155, 687, 1213]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Key results Pain (on a 0 to 100 scale; higher scores mean wo""]",subsection_heading,0.6,body_zone,body_like,none,True,True
4,15,footer,,"[148, 1191, 687, 1213]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
4,16,text,- Electromagnetic fields probably relieve pain in osteoarthritis.,"[149, 1227, 586, 1250]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,17,text,- People who received electromagnetic field treatment experienced pain relief of 15 points more compared with people who received fake treatment (15% improvement).,"[148, 1263, 1080, 1309]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,18,text,- People who received electromagnetic field treatment rated their pain to be 26 points lower on a scale of 0 to 100.,"[148, 1322, 947, 1345]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,19,text,- People who received fake treatment rated their pain to be 11 points lower on a scale of 0 to 100.,"[150, 1357, 832, 1380]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,20,footer,Electromagnetic fields for treating osteoarthritis (Review),"[149, 1392, 535, 1409]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,21,number,2,"[1067, 1393, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,0,paragraph_title,Physical function,"[148, 162, 285, 184]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Physical function""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
5,1,text,- Electromagnetic fields may improve physical function but this may have happened by chance.,"[146, 196, 815, 219]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,2,paragraph_title,Overall health and well-being,"[148, 231, 376, 254]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Overall health and well-being""]",subsection_heading,0.6,body_zone,body_like,none,True,True
5,3,text,- Electromagnetic fields probably make no difference to overall health and well-being.,"[147, 266, 748, 289]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,4,paragraph_title,Side effects,"[148, 300, 238, 321]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Side effects""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
5,5,text,"- Electromagnetic fields probably make no difference to whether people have side effects or stop taking the treatment because of side effects, but this may have happened by chance.","[146, 334, 1079, 380]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,6,text,We do not have precise information about side effects and complications. This is particularly true for rare but serious side effects. Possible side effects could include skin rash and aggravated pain.,"[147, 392, 1078, 438]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,paragraph_title,X-ray changes,"[148, 451, 259, 473]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: X-ray changes""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
5,8,text,There was no information available on whether electromagnetic fields show any improvement to a joint with osteoarthritis on an X-ray.,"[148, 484, 1078, 530]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,paragraph_title,Quality of the evidence,"[148, 542, 328, 564]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Quality of the evidence""]",subsection_heading,0.6,body_zone,body_like,none,True,True
5,10,text,- Electromagnetic fields probably improve pain and make no difference to overall health and well-being and side effects. This may change with further research.,"[146, 576, 1079, 623]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,11,text,- Electromagnetic fields may improve physical function. This is very likely to change with further research.,"[148, 633, 894, 657]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,12,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 709, 1430]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
5,13,number,3,"[1066, 1392, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,0,aside_text,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[150, 149, 187, 708]",unknown_structural,0.2,"[""unrecognized label 'aside_text'""]",unknown_structural,0.2,frontmatter_side_zone,support_like,none,False,True
6,1,figure_title,SUMMARY OF FINDINGS FOR THE MAIN COMPARISON [Explanation],"[204, 152, 1128, 180]",figure_caption_candidate,0.85,"[""figure_title label: SUMMARY OF FINDINGS FOR THE MAIN COMPARISON [Explanation]""]",figure_caption,0.85,body_zone,legend_like,none,False,False
6,2,table,"<table><tr><td colspan=""6"">Electromagnetic field treatment compared to placebo for the treatment of osteoarthritis</td></tr><tr><td colspan=""6"">Patient or population: patients with osteoarthritis Sett","[185, 224, 1503, 1053]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
7,0,aside_text,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[151, 149, 187, 709]",unknown_structural,0.2,"[""unrecognized label 'aside_text'""]",unknown_structural,0.2,frontmatter_side_zone,support_like,none,False,True
7,1,table,<table><tr><td>Quality of lifeSF-36 itemScale from: 0 to 100(Lower scores mean worse quality)Follow-up: mean 16 weeks</td><td>The mean change in quality of life in the control groups was 2.4</td><td>T,"[196, 194, 1501, 927]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
7,2,vision_footnote,*The basis for the assumed risk (e.g. the median control group risk across studies) is provided in footnotes. The corresponding risk (and its 95% confidence interval) is based on the assumed risk in t,"[208, 940, 1501, 1037]",footnote,0.7,"[""vision_footnote label: *The basis for the assumed risk (e.g. the median control gro""]",footnote,0.7,body_zone,body_like,none,True,True
7,3,number,5,"[173, 1066, 191, 1080]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
8,0,aside_text,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[150, 150, 188, 709]",unknown_structural,0.2,"[""unrecognized label 'aside_text'""]",unknown_structural,0.2,frontmatter_side_zone,support_like,none,False,True
8,1,text,"GRADE Working Group grades of evidence
High quality: Further research is very unlikely to change our confidence in the estimate of effect.
Moderate quality: Further research is likely to have an impor","[207, 210, 1246, 329]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
8,2,text," $ ^{1} $Downgraded for moderate heterogeneity ( $ I^{2} = 55\% $); unclear risk for random sequence generation (Zizic 1995), allocation concealment (Zizic 1995), blinding of outcome assessors (Fary 2","[206, 341, 1137, 410]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
8,3,text," $ ^{2} $Downgraded for considerable heterogeneity ( $ I^{2} = 84\% $); Zizic 1995: unclear risk for random sequence generation, allocation concealment, blinding of outcome assessors, selective report","[203, 411, 1136, 480]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
8,4,text," $ ^{3} $Fary 2011: unclear risk for blinding of outcome assessors and selective reporting. Pipitone 2001: high risk for incomplete outcome data.
$ ^{4} $Unclear risk for random sequence generation (","[203, 480, 1136, 571]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
8,5,text," $ ^{5} $Only Zizic 1995 reported this outcome. Downgraded for imprecision (wide confidence interval and few events); unclear risk for random sequence generation, allocation concealment, blinding of o","[203, 572, 1136, 641]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
9,0,header,BACKGROUND,"[148, 162, 361, 184]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,1,paragraph_title,Description of the condition,"[147, 238, 418, 262]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Description of the condition""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
9,2,text,Osteoarthritis is a progressive rheumatic disease which occurs most commonly in older populations. It is becoming increasingly common due to the ageing population in many societies. The degeneration a,"[147, 273, 605, 460]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,3,paragraph_title,Description of the intervention,"[147, 509, 445, 533]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Description of the intervention""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
9,4,text,Current osteoarthritis treatment options include pharmacological and non-pharmacological procedures to decrease progression and treat the pain associated with this condition. They include:,"[147, 543, 606, 611]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,5,text,"1. oral pharmacological medications: analgesics such as acetaminophen, aspirin, non-steroidal anti-inflammatory drugs (NSAIDs); symptomatic slow-acting drugs for osteoarthritis (SYSADOA) such as gluco","[147, 612, 604, 771]",body_paragraph,0.6,"[""reference-like pattern: 1. oral pharmacological medications: analgesics such as acet""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
9,6,text,"2. topical therapies (applied as gels or creams), including NSAIDs and capsaicin;","[148, 773, 567, 817]",body_paragraph,0.6,"[""reference-like pattern: 2. topical therapies (applied as gels or creams), including ""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
9,7,text,"3. intra-articular therapies, including corticosteroid and hyaluronic acid injections (Bellamy 2006a; Bellamy 2006b);","[148, 819, 571, 865]",body_paragraph,0.6,"[""reference-like pattern: 3. intra-articular therapies, including corticosteroid and h""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
9,8,text,"4. non-pharmacological therapies, including aquatic exercise therapy (Bartels 2007), balneotherapy (Verhagen 2007), physical therapy (Rutjes 2010), occupational therapy, strengthening exercises (Frans","[148, 866, 603, 978]",body_paragraph,0.6,"[""reference-like pattern: 4. non-pharmacological therapies, including aquatic exercise""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
9,9,text,5. surgical treatment: joint replacement (Singh 2013a; Singh 2013b) and arthroscopic debridement (Laupattarakasem 2008) of the affected joint.,"[148, 981, 594, 1047]",body_paragraph,0.6,"[""reference-like pattern: 5. surgical treatment: joint replacement (Singh 2013a; Singh""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
9,10,text,"Management of osteoarthritis of the knee aims to relieve pain, maintain or improve mobility, and minimise disability. However, these goals are seldom achieved through drug therapy alone, as many treat","[147, 1049, 606, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,11,text,,"[621, 161, 1080, 323]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
9,12,text,Electromagnetic fields can be delivered to biological systems by the direct placement of an electrode or non-invasively by two means:,"[621, 323, 1079, 368]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,13,text,"- capacitive coupling, in which opposing electrodes are placed within a conducting medium, that is, in contact with the skin surface overlying a target tissue (e.g. bone, joint, wound);","[620, 371, 1076, 437]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,14,text,"• inductive coupling, in which a time-varying pulsed electromagnetic field induces an electrical current in the target tissue. This technique does not require direct contact with the skin or biologica","[621, 439, 1063, 531]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,15,text,"Although the former relies on direct application of an electrical field rather than creating induced current through magnetic impulses, they act by the same mechanism. Thus both pulsed electromagnetic","[620, 544, 1081, 661]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,16,paragraph_title,How the intervention might work,"[622, 714, 945, 738]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: How the intervention might work""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
9,17,text,"Three basic principles of physics are proposed to explain how electromagnetic fields may promote the growth and repair of bone and cartilage: Wolff's Law, the piezoelectric effect and the concept of s","[621, 748, 1080, 840]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,18,text,Electromagnetic field stimulation first garnered interest as treatment for osteoarthritis following the discovery of evidence that stimulation of chondrocytes increased the synthesis of the major comp,"[621, 841, 1081, 1047]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,19,text,Electromagnetic field treatments might also help to preserve extracellular matrix integrity in the early stages of osteoarthritis by down-regulating proteoglycan production and degradation (Ciombor 20,"[621, 1048, 1080, 1162]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,20,text,"Through these improvements in bone and cartilage maintenance and repair, pulsed electromagnetic field stimulation could influence the osteoarthritic disease process by decreasing inflammation and prov","[621, 1164, 1080, 1277]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,21,text,Why it is important to do this review,"[622, 1332, 975, 1357]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,22,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
9,23,number,7,"[1066, 1392, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,0,text,Electromagnetic field therapy is already being widely used for the management of joint pain associated with osteoarthritis and has a promising theoretical basis for clinical application. Clinical tria,"[147, 161, 607, 463]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,1,paragraph_title,OBJECTIVES,"[147, 551, 333, 576]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: OBJECTIVES""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
10,2,text,To assess the benefits and harms of electromagnetic fields for the treatment of osteoarthritis as compared to placebo or sham.,"[147, 591, 606, 639]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,3,paragraph_title,METHODS,"[147, 696, 296, 720]",section_heading,0.9,"[""explicit scholarly heading: METHODS""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
10,4,paragraph_title,Types of studies,"[149, 863, 289, 887]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Types of studies""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
10,5,text,"Randomised controlled trials or quasi-randomised trials which examined the effects of electromagnetic fields for treating osteoarthritis, with four or more weeks treatment duration.","[147, 894, 605, 965]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,6,paragraph_title,Types of participants,"[148, 1010, 330, 1033]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Types of participants""]",subsection_heading,0.6,body_zone,body_like,none,True,True
10,7,text,"Participants over 18 years of age, with clinical or radiological confirmation of the diagnosis (or both) were considered. The diagnosis of osteoarthritis was defined using the American College of Rheu","[147, 1040, 606, 1203]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,8,paragraph_title,Types of interventions Criteria for considering studies for this review,"[148, 784, 583, 1270]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Types of interventions Criteria for considering studies for ""]",subsection_heading,0.6,body_zone,body_like,none,True,True
10,9,footer,,"[148, 784, 583, 809]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
10,10,paragraph_title,Types of outcome measures,"[622, 162, 865, 184]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Types of outcome measures""]",subsection_heading,0.6,body_zone,body_like,none,True,True
10,11,text,"All types of pulsed electromagnetic fields and pulsed electrical stimulation were included. Trials that compared the intervention group using electromagnetic fields to usual care were included, as wel","[147, 1277, 606, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,12,text,,"[620, 190, 1081, 422]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
10,13,paragraph_title,Major outcomes,"[623, 460, 752, 480]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Major outcomes""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
10,14,text,1. Pain,"[638, 490, 696, 510]",body_paragraph,0.6,"[""reference-like pattern: 1. Pain""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
10,15,text,2. Physical function,"[637, 511, 787, 533]",body_paragraph,0.6,"[""reference-like pattern: 2. Physical function""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
10,16,text,3. Health-related quality of life measure,"[636, 535, 925, 558]",body_paragraph,0.6,"[""reference-like pattern: 3. Health-related quality of life measure""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
10,17,text,4. Radiographic joint structure changes,"[637, 558, 923, 581]",body_paragraph,0.6,"[""reference-like pattern: 4. Radiographic joint structure changes""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
10,18,text,5. Number of patients experiencing any adverse event,"[637, 582, 1021, 603]",body_paragraph,0.6,"[""reference-like pattern: 5. Number of patients experiencing any adverse event""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
10,19,text,6. Patients who withdrew because of adverse events,"[636, 605, 1004, 627]",body_paragraph,0.6,"[""reference-like pattern: 6. Patients who withdrew because of adverse events""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
10,20,text,7. Patients experiencing any serious adverse event,"[636, 628, 992, 650]",body_paragraph,0.6,"[""reference-like pattern: 7. Patients experiencing any serious adverse event""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
10,21,paragraph_title,Search methods for identification of studies,"[621, 704, 1036, 728]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Search methods for identification of studies""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
10,22,paragraph_title,Electronic searches,"[622, 776, 793, 797]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Electronic searches""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
10,23,text,"We identified relevant studies by searching the Cochrane Central Register of Controlled Trials (CENTRAL) (The Cochrane Library 2013, Issue 9), PreMEDLINE for trials published before 1966, MEDLINE from","[620, 805, 1082, 1038]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,24,paragraph_title,Searching other resources,"[622, 1073, 850, 1096]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Searching other resources""]",subsection_heading,0.6,body_zone,body_like,none,True,True
10,25,text,We complemented the electronic searches with handsearching:,"[623, 1102, 1064, 1127]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,26,text,• bibliographic references; and,"[641, 1127, 867, 1148]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,27,text,• abstracts published in special issues of specialised journals or in conference proceedings (American Orthopaedic Physicians Annual Meeting; Asia-Pacific Orthopedic Society for Sports Medicine Meetin,"[621, 1149, 1075, 1242]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,28,text,We contacted the Trial Search Co-ordinators of the Cochrane Rehabilitation and Related Therapies Field and the Cochrane Musculoskeletal Group.,"[621, 1255, 1079, 1323]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,29,text,"We manually searched conference proceedings, used the Science Citation Index to retrieve reports citing relevant articles, contacted","[620, 1325, 1081, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,30,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1391, 709, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
10,31,number,8,"[1066, 1392, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,0,text,"content experts and trialists, and screened the references of all articles obtained, including related reviews. We did not use abstracts if additional data could not be obtained.","[146, 161, 605, 229]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,1,text,"Finally, we searched several clinical trial registries (www.clinicaltrials.gov, http://www.controlled-trials.com, http://www.anzctr.org.au/, www.umin.ac.jp/ctr) to identify ongoing trials.","[147, 230, 605, 321]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,2,text,The last update of the manual search was conducted on 3 October 2013.,"[148, 323, 604, 367]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,3,paragraph_title,Data collection and analysis,"[147, 417, 413, 442]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Data collection and analysis""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
11,4,paragraph_title,Selection of studies,"[147, 484, 319, 505]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Selection of studies""]",subsection_heading,0.6,body_zone,body_like,none,True,True
11,5,text,"Two review authors (SL and BY) independently screened the abstract, keywords and publication type of all publications obtained from the searches described. We obtained all studies which might be eligi","[147, 512, 606, 650]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,6,text,"When necessary, we sought information from the authors of the primary studies.","[147, 651, 606, 698]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,7,paragraph_title,Data extraction and management,"[147, 729, 442, 751]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Data extraction and management""]",subsection_heading,0.6,body_zone,body_like,none,True,True
11,8,text,"Two review authors (SL, BY) extracted data using a standard, predeveloped form that we pilot-tested. We extracted details of trial design, patient characteristics, treatment duration and the mechanics","[146, 757, 607, 1012]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,9,paragraph_title,Assessment of risk of bias in included studies,"[147, 1044, 531, 1065]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Assessment of risk of bias in included studies""]",subsection_heading,0.6,body_zone,body_like,none,True,True
11,10,text,"The review authors assessed the risk of bias in the included studies using The Cochrane Collaboration 'Risk of bias' tool (Higgins 2011). We considered six domains: random sequence generation, allocat","[146, 1071, 606, 1232]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,11,text,We assessed two components of randomisation: generation of allocation sequence and concealment of allocation. We considered the generation of sequence adequate if it resulted in an unpredictable alloc,"[147, 1233, 606, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,12,text,,"[620, 161, 1080, 253]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
11,13,text,We considered concealment of allocation adequate if both the patients and the investigators responsible for patient selection were unable to predict allocation to treatment or placebo groups. Adequate,"[621, 254, 1081, 368]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,14,text,"Since the primary measure of effectiveness was patient-reported pain relief, we considered blinding of patients adequate if experimental and control preparations were explicitly described as indisting","[621, 369, 1080, 460]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,15,text,We considered analyses adequate if all randomised patients were included in the analysis according to the intention-to-treat principle. We further assessed the reporting of major outcomes.,"[620, 461, 1080, 532]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,16,paragraph_title,Measures of treatment effect,"[620, 561, 875, 583]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Measures of treatment effect""]",subsection_heading,0.6,body_zone,body_like,none,True,True
11,17,text,"For continuous data, we presented results as a mean difference (MD). However, where different scales were used to measure the same concept or outcome, we used standardised mean difference (SMD). For d","[620, 590, 1081, 776]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,18,paragraph_title,Unit of analysis issues,"[621, 806, 812, 828]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Unit of analysis issues""]",subsection_heading,0.6,body_zone,body_like,none,True,True
11,19,text,"If we identified cross-over trials presenting continuous outcome data which precluded paired analysis, we did not plan to include these data in a meta-analysis to avoid unit of analysis error. Where c","[620, 835, 1081, 976]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,20,paragraph_title,Dealing with missing data,"[621, 1005, 847, 1029]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Dealing with missing data""]",subsection_heading,0.6,body_zone,body_like,none,True,True
11,21,text,"We contacted the study investigators for missing data via email. Where possible, the analyses were based on intention-to-treat data from individual clinical trials.","[620, 1033, 1080, 1103]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,22,paragraph_title,Assessment of heterogeneity,"[621, 1136, 873, 1158]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Assessment of heterogeneity""]",subsection_heading,0.6,body_zone,body_like,none,True,True
11,23,text,"We assessed statistical heterogeneity by examining the $ I^{2} $ statistic (Higgins 2011), a quantity that describes approximately the proportion of variation in point estimates due to heterogeneity ","[620, 1163, 1081, 1373]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,24,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[147, 1390, 710, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
11,25,number,9,"[1066, 1392, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,0,paragraph_title,Assessment of reporting biases,"[148, 162, 417, 183]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Assessment of reporting biases""]",subsection_heading,0.6,body_zone,body_like,none,True,True
12,1,text,We planned to assess reporting bias by screening the clinical trials register at the International Clinical Trials Registry Platform of the World Health Organization (http://apps.who.int/trialsearch/),"[147, 190, 607, 400]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,2,paragraph_title,Data synthesis,"[148, 431, 277, 452]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Data synthesis""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
12,3,text,"We planned to pool clinically homogeneous studies using the fixed-effect model for meta-analysis. When there was important heterogeneity ( $ I^{2} > 25\% $), we pooled studies using the random-effects","[147, 460, 605, 553]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,4,paragraph_title,Subgroup analysis and investigation of heterogeneity,"[147, 585, 596, 608]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Subgroup analysis and investigation of heterogeneity""]",subsection_heading,0.6,body_zone,body_like,none,True,True
12,5,text,"We planned to conduct subgroup analysis to examine the ethcacy of electromagnetic fields with different application methods and modalities, including frequency, length of treatment and different techn","[147, 613, 606, 708]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,6,paragraph_title,Sensitivity analysis,"[148, 740, 311, 761]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Sensitivity analysis""]",subsection_heading,0.6,body_zone,body_like,none,True,True
12,7,text,We conducted a sensitivity analysis based on the methodological quality of each trial. We undertook sensitivity analyses to explore the impact of studies with poor ratings for domains described in the,"[147, 767, 606, 861]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,8,text,1. concealment of allocation:,"[162, 862, 375, 882]",body_paragraph,0.6,"[""reference-like pattern: 1. concealment of allocation:""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
12,9,text,2. blinding of outcome assessors;,"[162, 884, 402, 905]",body_paragraph,0.6,"[""reference-like pattern: 2. blinding of outcome assessors;""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
12,10,text,3. extent of drop-outs (we considered 20% as a cut-point).,"[161, 907, 577, 929]",body_paragraph,0.6,"[""reference-like pattern: 3. extent of drop-outs (we considered 20% as a cut-point).""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
12,11,paragraph_title,'Summary of findings' table,"[148, 963, 386, 985]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: 'Summary of findings' table""]",subsection_heading,0.6,body_zone,body_like,none,True,True
12,12,text,"We presented key findings in a 'Summary of findings' table. These included the magnitude of effect of the interventions examined, the sum of available data on the main outcomes and the quality of the ","[147, 991, 605, 1083]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,13,text,"For dichotomous outcomes, we calculated the absolute risk difference using the risk difference (RD) statistic in RevMan (RevMan 2012) (RR - 1 calculated the weighted relative per cent change). We calc","[148, 1084, 606, 1131]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,14,text,,"[621, 161, 1080, 275]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
12,15,text,"For continuous outcomes, we calculated the absolute benefit as the improvement in the treatment group (follow-up mean minus baseline mean) less the improvement in the control group (follow-up mean min","[621, 278, 1083, 600]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,16,paragraph_title,RESULTS,"[622, 684, 758, 708]",section_heading,0.9,"[""explicit scholarly heading: RESULTS""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
12,17,paragraph_title,Description of studies,"[622, 769, 833, 793]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Description of studies""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
12,18,paragraph_title,Results of the search,"[622, 846, 804, 867]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Results of the search""]",subsection_heading,0.6,body_zone,body_like,none,True,True
12,19,text,"The search strategies retrieved 2037 articles (Figure 1). The literature search identified 25 potentially relevant articles. Of these, only nine studies met the inclusion criteria (Fary 2011; Garland ","[620, 875, 1082, 1131]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,20,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 709, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
12,21,number,10,"[1060, 1392, 1080, 1410]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,0,figure_title,Figure I. Study flow diagram.,"[490, 161, 754, 186]",figure_caption_candidate,0.85,"[""figure_title label: Figure I. Study flow diagram.""]",figure_caption,0.85,,reference_like,citation_line,False,False
13,1,image,,"[293, 179, 943, 1261]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
13,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[147, 1390, 711, 1430]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
13,3,number,||,"[1058, 1391, 1079, 1411]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
14,0,paragraph_title,Included studies,"[148, 219, 292, 241]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Included studies""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
14,1,text,The eligible RCTs collectively involved 327 participants in active electromagnetic field treatment groups and 309 participants in placebo groups.,"[147, 261, 606, 330]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,2,text,Six trials used pulsed electromagnetic fields (Nelson 2013; Nicolakis 2002; Pipitone 2001; Thamsborg 2005; Trock 1993; Trock 1994) while three studies (Fary 2011; Garland 2007; Zizic 1995) used pulsed,"[148, 331, 605, 422]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,3,text,One study used a pulsed electromagnetic field signal consisting of a 7 ms burst of 6.8 MHz sinusoidal waves repeating at one burst/s and delivering a peak induced electrical field of $ 34 \pm 8 $ V/m,"[147, 422, 606, 560]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,4,text,Another study reviewed a pulsed electromagnetic field device (Medicur) that generates pulses of magnetic energy via a soft iron core treated with 62 trace elements. Pulses are selected at base frequen,"[147, 561, 606, 767]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,5,text,"In one study a pulsed electromagnetic field was administered to the whole body using a mat which produced a field from 1 Hz to 3000 Hz with a mean intensity of 40 μT (wave ranger professional, program","[148, 768, 605, 951]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,6,text,"A fourth study measured the effect of a pulse generator that yields G50V in 50 Hz pulses, changing voltage at 3 ms intervals. This results in a maximal electrical gradient of 1 to 100 mV/cm as sensed ","[147, 952, 605, 1135]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,7,text,"Two other trials used a non-contact device that delivered three signals in a stepwise fashion, ranging from 5 Hz to 12 Hz frequency at 10 G to 25 G of magnetic energy (Trock 1993; Trock 1994). These s","[147, 1136, 605, 1250]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,8,text,"In one study a commercially available TENS stimulator (Metron Digi-10s) was modified by a biomedical engineer to deliver pulsed electrical stimulation current parameters as follows: pulsed, asymmetric","[147, 1250, 607, 1345]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,9,text,,"[620, 206, 1080, 321]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
14,10,text,Two other pulsed electrical stimulation studies used a pulsed electrical device to deliver a 100 Hz low-amplitude signal to the knee joint via skin surface electrodes. The patients were exposed for 6 ,"[621, 321, 1081, 436]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,11,text,"All studies reported on patients with knee osteoarthritis and Trock 1994 also included patients with cervical osteoarthritis, with their results reported separately. The main outcome measures related ","[620, 438, 1082, 807]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,12,paragraph_title,Excluded studies,"[621, 841, 771, 863]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Excluded studies""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
14,13,text,We excluded nine RCTs with a shorter duration than four weeks since this time frame may be too short to assess harms and benefits based on biological plausibility (Alcidi 2007; Ay 2009; Battisti 2004;,"[620, 869, 1082, 1215]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,14,paragraph_title,Risk of bias in included studies,"[621, 1240, 912, 1263]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Risk of bias in included studies""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
14,15,text,"Two review authors (SL, BY) assessed risk of bias independently. Differences were resolved by consensus with a third review author (DZ).","[620, 1273, 1080, 1343]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,16,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1391, 709, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
14,17,number,12,"[1059, 1391, 1080, 1410]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
15,0,text,The overall assessment of the methodological quality of the trials in this review was as follows: we judged seven studies (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Pipitone 2001; Trock 19,"[147, 162, 606, 300]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,1,reference_content,Nine of the included studies met the allocation concealment criterion (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Pipitone 2001; Thamsborg 2005; Trock 1993; Trock 1994).,"[147, 301, 606, 369]",body_paragraph,0.85,"[""reference content label: Nine of the included studies met the allocation concealment ""]",reference_item,0.85,,body_like,none,True,True
15,2,text,"Seven trials (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Pipitone 2001; Trock 1993; Zizic 1995) had appropriate, well-described placebo treatments and we assessed them as low risk of bias f","[148, 370, 606, 439]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,3,text,,"[622, 162, 797, 184]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
15,4,text,We assessed seven studies (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Thamsborg 2005; Trock 1994; Zizic 1995) as low risk of bias for incomplete outcome data; six trials reported loss to fo,"[622, 186, 1080, 345]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,5,text,No information on selective outcome reporting was found in any study.,"[621, 347, 1079, 391]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,6,text,See the 'Risk of bias' graph (Figure 2) and 'Risk of bias' summary (Figure 3).,"[621, 392, 1078, 439]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,7,figure_title,Figure 2. 'Risk of bias' graph: review authors' judgements about each risk of bias item presented as percentages across all included studies.,"[201, 475, 1044, 524]",figure_caption,0.92,"[""figure_title label: Figure 2. 'Risk of bias' graph: review authors' judgements a""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
15,8,chart,,"[199, 540, 1032, 824]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,9,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
15,10,number,13,"[1059, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
16,0,figure_title,Figure 3. 'Risk of bias' summary: review authors' judgements about each risk of bias item for each included study.,"[166, 160, 1079, 205]",figure_caption_candidate,0.92,"[""figure_title label: Figure 3. 'Risk of bias' summary: review authors' judgements""]",figure_caption,0.92,display_zone,legend_like,figure_number,False,False
16,1,chart,,"[383, 222, 850, 1255]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
16,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
16,3,number,14,"[1059, 1392, 1080, 1410]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
17,0,paragraph_title,Effects of interventions,"[148, 199, 372, 223]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Effects of interventions""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
17,1,text,See: Summary of findings for the main comparison Electromagnetic field treatment compared to placebo for the treatment of osteoarthritis,"[146, 232, 606, 300]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,2,text,"In the nine controlled trials included in the analysis, a total of 636 participants were randomised: 327 participants to electromagnetic field treatment and 309 to a placebo device. The pulsed electro","[146, 302, 607, 648]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,3,paragraph_title,Pain,"[147, 755, 190, 775]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Pain""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
17,4,text,Electromagnetic field treatment versus placebo for osteoarthritis,"[147, 658, 585, 703]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,5,text,The combined results from the six included studies of electromagnetic field treatment which measured pain as an outcome (Fary 2011; Garland 2007; Nelson 2013; Trock 1993; Trock 1994; Zizic 1995) showe,"[146, 782, 606, 992]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,6,paragraph_title,Physical function,"[148, 1034, 281, 1056]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Physical function""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
17,7,text,Three studies including 107 patients in the electromagnetic field treatment group and 90 patients in the placebo group measured function as an outcome (Fary 2011; Garland 2007; Pipitone 2001). Improve,"[146, 1062, 607, 1224]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,8,paragraph_title,Health-related quality of life measure,"[147, 1268, 434, 1289]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Health-related quality of life measure""]",subsection_heading,0.6,body_zone,body_like,none,True,True
17,9,text,Two studies including 68 patients in the electromagnetic field treatment group and 71 patients in the placebo group measured quality of life as an outcome (Fary 2011). Improvement in quality of life w,"[146, 1296, 606, 1345]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,10,text,,"[620, 206, 1081, 322]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
17,11,paragraph_title,Radiographic joint structure changes,"[621, 367, 905, 389]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Radiographic joint structure changes""]",subsection_heading,0.6,body_zone,body_like,none,True,True
17,12,text,Only two studies (Thamsborg 2005; Trock 1993) mentioned radiographic joint structure change but no data were available.,"[620, 395, 1079, 444]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,13,paragraph_title,Number of patients experiencing any adverse event,"[621, 487, 1015, 510]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Number of patients experiencing any adverse event""]",subsection_heading,0.6,body_zone,body_like,none,True,True
17,14,text,"Adverse events were presented in four studies with 156 participants in the intervention group and 132 participants in the control group (Garland 2007; Pipitone 2001; Thamsborg 2005; Zizic 1995), altho","[620, 516, 1081, 702]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,15,paragraph_title,Patients who withdrew because of adverse events,"[621, 745, 999, 767]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Patients who withdrew because of adverse events""]",subsection_heading,0.6,body_zone,body_like,none,True,True
17,16,text,Specific reasons for withdrawals were unrelated to the therapy except in the case of adverse skin reactions which were encountered in Zizic 1995 and occurred in patients receiving both placebo and act,"[620, 774, 1081, 938]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,17,paragraph_title,Patients experiencing any serious adverse event,"[621, 982, 987, 1003]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Patients experiencing any serious adverse event""]",subsection_heading,0.6,body_zone,body_like,none,True,True
17,18,text,No study reported any serious adverse events.,"[621, 1010, 945, 1033]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,19,paragraph_title,Subgroup analyses,"[622, 1078, 768, 1100]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Subgroup analyses""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
17,20,text,We did not conduct the pre-planned subgroup analyses of the most effective means of delivering therapy due to the small number of trials and insufficient data.,"[620, 1107, 1081, 1177]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,21,paragraph_title,Sensitivity analyses,"[621, 1221, 773, 1243]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Sensitivity analyses""]",subsection_heading,0.6,body_zone,body_like,none,True,True
17,22,text,"We undertook sensitivity analyses to explore the impact of studies with poor ratings for concealment of allocation, blinding of outcome assessors and extent of drop-out and there was no change in the ","[620, 1250, 1081, 1344]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,23,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
17,24,number,15,"[1059, 1391, 1080, 1410]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
18,0,header,DISCUSSION,"[148, 160, 338, 182]",noise,0.9,"[""header label""]",noise,0.9,body_zone,heading_like,canonical_section_name,False,False
18,1,paragraph_title,Summary of main results,"[147, 234, 393, 257]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Summary of main results""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
18,2,text,"Osteoarthritis is the most common of the rheumatic diseases. With an estimated 40,000 new cases of osteoarthritis diagnosed each year, it is the third leading cause of life-years lost due to disabilit","[146, 266, 606, 474]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,3,text,Osteoarthritis results from a failure of chondrocytes within the joint to synthesise a good-quality matrix and to maintain a balance between synthesis and degradation of the extracellular matrix. The ,"[147, 474, 606, 934]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,4,text,"All of the studies' participants had osteoarthritis of one or both knees, or cervical osteoarthritis, diagnosed by clinical symptoms and radiographic evidence, and the osteoarthritis was painful despi","[147, 934, 606, 1025]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,5,text,"The protocols for pulsed electrical stimulation or pulsed electromagnetic field device setting and application varied widely between studies, as did the outcome measures. Some pulsed electrical stimul","[147, 1026, 606, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,6,text,,"[620, 161, 1081, 344]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
18,7,text,Pain relief was measured using visual analogue scales (VAS). We pooled this outcome from six trials and found a significant difference between the electromagnetic field and placebo-treated groups (Far,"[620, 346, 1081, 552]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,8,text,The improvement in physical function in patients with knee osteoarthritis treated with pulsed electromagnetic fields was not statistically significant (Fary 2011; Garland 2007; Pipitone 2001). There w,"[621, 553, 1081, 781]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,9,text,Quality of life was not statistically significantly different between the treatment and placebo groups (Fary 2011; Pipitone 2001). This might be explained by the small sample sizes of the included stu,"[621, 782, 1080, 920]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,10,text,There were no life-threatening events reported among participants exposed to electromagnetic fields.,"[620, 921, 1080, 968]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,11,paragraph_title,Overall completeness and applicability of evidence,"[620, 1014, 1014, 1062]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Overall completeness and applicability of evidence""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
18,12,text,A comprehensive search of the literature revealed a number of studies of electromagnetic field interventions for osteoarthritis. Although the studies presented differences between placebo and active t,"[620, 1071, 1081, 1302]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,13,text,"In summary, electromagnetic field treatment has a moderate benefit for patients' pain relief. There is inconclusive evidence that electromagnetic field treatment improves physical function, qual-","[620, 1302, 1081, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,14,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[147, 1391, 710, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
18,15,number,16,"[1059, 1392, 1080, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
19,0,text,ity of life or radiographic joint structure. No serious adverse effects of electromagnetic field treatment were reported in the included trials. This might be because of the relative safety of electro,"[147, 161, 607, 370]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,1,paragraph_title,Quality of the evidence,"[148, 418, 372, 442]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Quality of the evidence""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
19,2,text,"The quality of the evidence of all included trials was moderate or low. Six trials described generation of allocation sequence or concealment of allocation, or reported whether primary outcomes were s","[147, 453, 606, 616]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,3,paragraph_title,Agreements and disagreements with other studies or reviews Potential biases in the review process,"[146, 663, 556, 978]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Agreements and disagreements with other studies or reviews P""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
19,4,footer,,"[147, 663, 503, 687]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
19,5,text,"We believe that we identified all relevant studies. We devised a thorough search strategy and searched all major databases for relevant studies, and we applied no language restrictions. Two review aut","[147, 697, 607, 884]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,6,text,"A systematic review has assessed the effectiveness of pulsed electromagnetic fields compared with placebo in the management of osteoarthritis of the knee (Vavken 2009). Nine studies, including 483 pat","[146, 987, 608, 1058]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,7,text,,"[620, 161, 1081, 301]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
19,8,paragraph_title,AUTHORS' CONCLUSIONS,"[621, 373, 1012, 397]",section_heading,0.6,"[""unnumbered paragraph_title, inferred level section_heading: AUTHORS' CONCLUSIONS""]",section_heading,0.6,body_zone,heading_like,none,True,True
19,9,paragraph_title,Implications for practice,"[621, 420, 859, 445]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Implications for practice""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
19,10,text,"The current, limited evidence shows a moderate clinically important benefit of electromagnetic field treatment for the relief of pain in the treatment of knee or cervical osteoarthritis.","[620, 453, 1080, 524]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,11,paragraph_title,Implications for research,"[621, 544, 863, 568]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Implications for research""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
19,12,text,"More trials are needed in this field. New trials should compare different treatments and provide an accurate description of the length of treatment, dosage and the frequency of the applications. Large","[621, 578, 1081, 718]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,13,paragraph_title,ACKNOWLEDGEMENTS,"[621, 790, 961, 814]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: ACKNOWLEDGEMENTS""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
19,14,text,The authors wish to thank Louise Falzon (CMSG Trial Search Co-ordinator) for developing the search strategy. Thanks also to the Cochrane Musculoskeletal Group (CMSG) editorial team and Elizabeth Tanjo,"[620, 827, 1081, 1058]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,15,paragraph_title,REFERENCES,"[527, 1120, 702, 1142]",reference_heading,0.9,"[""references heading: REFERENCES""]",reference_heading,0.9,reference_zone,unknown_like,short_fragment,True,True
19,16,paragraph_title,References to studies included in this review,"[148, 1157, 518, 1180]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: References to studies included in this review""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
19,17,text,"Fary RE, Carroll GJ, Briffa TG, Briffa NK. The effectiveness of pulsed electrical stimulation in the management of osteoarthritis of the knee: results of a double-blind, randomized, placebo-controlled","[151, 1217, 558, 1329]",body_paragraph,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
19,18,text,"Garland 2007 {published data only}
Garland D, Holt P, Harrington JT, Caldwell J, Zizic T,","[148, 1337, 535, 1381]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,19,text,"Cholewczynski J. A 3-month, randomized, double-blind, placebo-controlled study to evaluate the safety and efficacy of a highly optimized, capacitively coupled, pulsed electrical stimulator in patients","[654, 1159, 1032, 1264]",body_paragraph,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
19,20,text,"Nelson 2013 {published data only}
Nelson FR, Zvirbulis R, Pilla AA. Non-invasive electromagnetic field therapy produces rapid and substantial pain reduction in early knee osteoarthritis: a randomized ","[623, 1275, 1034, 1381]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,21,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1391, 710, 1429]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
19,22,number,17,"[1060, 1392, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
20,0,text,33(8):216973.,"[182, 163, 286, 183]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
20,1,reference_content,"Nicolakis 2002 {published data only}
Nicolakis P, Kollmitzer J, Crevenna R, Bittner C, Erdogmus CB, Nicolakis J. Pulsed magnetic field therapy for osteoarthritis of the knee - a double-blind sham-cont","[151, 189, 557, 312]",reference_item,0.85,"[""reference content label: Nicolakis 2002 {published data only}\nNicolakis P, Kollmitzer""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,2,reference_content,"Pipitone 2001 {published data only}
Pipitone N, Scott DL. Magnetic pulse treatment for knee osteoarthritis: a randomised, double-blind, placebo-controlled study. Current Medical Research and Opinion 2","[151, 319, 546, 423]",reference_item,0.85,"[""reference content label: Pipitone 2001 {published data only}\nPipitone N, Scott DL. Ma""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,3,reference_content,"Thamsborg 2005 {published data only}
Thamsborg G, Florescu A, Oturai P, Fallentin E, Tritaris K, Dissing S. Treatment of knee osteoarthritis with pulsed electromagnetic fields: a randomized, double-bl","[151, 430, 554, 555]",reference_item,0.85,"[""reference content label: Thamsborg 2005 {published data only}\nThamsborg G, Florescu A""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,4,reference_content,"Trock 1993 {published data only}
Trock DH, Bollet AJ, Dyer RH Jr, Fielding LP, Miner WK, Markoll R. A double-blind trial of the clinical effects of pulsed electromagnetic fields in osteoarthritis. Jou","[150, 562, 555, 666]",reference_item,0.85,"[""reference content label: Trock 1993 {published data only}\nTrock DH, Bollet AJ, Dyer R""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,5,reference_content,"Trock 1994 {published data only}
Trock DH, Bollet AJ, Markoll R. The effect of pulsed electromagnetic fields in the treatment of osteoarthritis of the knee and cervical spine. Report of randomized, do","[150, 674, 551, 798]",reference_item,0.85,"[""reference content label: Trock 1994 {published data only}\nTrock DH, Bollet AJ, Markol""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,6,reference_content,"Zizic 1995 {published data only}
Zizic TM, Hoffman KC, Holt PA, Hungerford DS, O'Dell JR, Jacobs MA, et al. The treatment of osteoarthritis of the knee with pulsed electrical stimulation. Journal of R","[150, 805, 554, 910]",reference_item,0.85,"[""reference content label: Zizic 1995 {published data only}\nZizic TM, Hoffman KC, Holt ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,7,paragraph_title,References to studies excluded from this review,"[149, 924, 541, 947]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: References to studies excluded from this review""]",subsection_heading,0.6,tail_nonref_hold_zone,heading_like,none,False,True
20,8,reference_content,"Alcidi 2007 {published data only}
Alcidi L, Beneforti E, Maresca M, Santosuosso U, Zoppi M. Low power radiofrequency electromagnetic radiation for the treatment of pain due to osteoarthritis of the kn","[150, 963, 547, 1067]",reference_item,0.85,"[""reference content label: Alcidi 2007 {published data only}\nAlcidi L, Beneforti E, Mar""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,9,reference_content,"Ay 2009 {published data only}
Ay S, Evcik D. The effects of pulsed electromagnetic fields in the treatment of knee osteoarthritis: a randomized, placebo-controlled trial. Rheumatology International 20","[151, 1073, 549, 1177]",reference_item,0.85,"[""reference content label: Ay 2009 {published data only}\nAy S, Evcik D. The effects of ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,10,reference_content,"Battisti 2004 {published data only}
Battisti E, Piazza E, Rigato M, Nuti R, Bianciardi L, Scribano A, et al. Efficacy and safety of a musically modulated electromagnetic field (TAMMEF) in patients aff","[151, 1184, 546, 1309]",reference_item,0.85,"[""reference content label: Battisti 2004 {published data only}\nBattisti E, Piazza E, Ri""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,11,reference_content,"Danao-Camara 2001 {published data only}
Danao-Camara T, Tabrah FL. The use of pulsed electromagnetic fields (PEMF) in osteoarthritis (OA) of the","[150, 1317, 557, 1380]",reference_item,0.85,"[""reference content label: Danao-Camara 2001 {published data only}\nDanao-Camara T, Tabr""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,12,reference_content,"knee preliminary report. Hawaii Medical Journal 2001;60(11):288,300.","[655, 163, 1022, 204]",reference_item,0.85,"[""reference content label: knee preliminary report. Hawaii Medical Journal 2001;60(11):""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,13,reference_content,"Fischer 2005 {published data only}
Fischer G, Pelka RB, Barovic J. Adjuvant treatment of osteoarthritis of the knee with weak pulsing magnetic fields. Results of a prospective, placebo controlled tria","[623, 211, 1027, 397]",reference_item,0.85,"[""reference content label: Fischer 2005 {published data only}\nFischer G, Pelka RB, Baro""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,14,reference_content,"Fischer 2006 {published data only}
Fischer G, Pelka RB, Barovic J. Adjuvant treatment of osteoarthritis of the knee with weak pulsing magnetic fields - results of a prospective, placebo controlled tri","[623, 405, 1028, 571]",reference_item,0.85,"[""reference content label: Fischer 2006 {published data only}\nFischer G, Pelka RB, Baro""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,15,text,"Hinman 2002 {published data only}
Hinman MR, Ford J, Heyl H. Effects of static magnets on chronic knee pain and physical function: a double-blind study. Alternative Therapies in Health and Medicine 20","[623, 579, 1026, 681]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
20,16,text,"Jack 2006 {published data only}
Farr J, Mont MA, Garland D, Caldwell JR, Zizic TM. Pulsed electrical stimulation in patients with osteoarthritis of the knee: follow up in 288 patients who had failed n","[622, 689, 1027, 812]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
20,17,reference_content,"Jacobson 2001 {published data only}
Jacobson JI, Gorman R, Yamanashi WS, Saxena BB, Clayton L. Low-amplitude, extremely low frequency magnetic fields for the treatment of osteoarthritic knees: a doubl","[622, 819, 1025, 943]",reference_item,0.85,"[""reference content label: Jacobson 2001 {published data only}\nJacobson JI, Gorman R, Y""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,18,reference_content,"Kulcu 2009 {published data only}
Kulcu DG, Guslen G, Altunok E. Short-term efficacy of pulsed electromagnetic field therapy on pain and functional level in knee osteoarthritis: a randomized controlled","[624, 950, 1029, 1054]",reference_item,0.85,"[""reference content label: Kulcu 2009 {published data only}\nKulcu DG, Guslen G, Altunok""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,19,reference_content,"Liu 2004 {published data only}
Liu WC, Liu Y, Zhang J. Effect of electromagnetic field on treating knee osteoarthritis. Proceedings of Clinical Medicine Journal 2004;13(4):2812.","[624, 1061, 1029, 1144]",reference_item,0.85,"[""reference content label: Liu 2004 {published data only}\nLiu WC, Liu Y, Zhang J. Effec""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,20,reference_content,"Ozgüçlü 2010 {published data only}
Ozgüçlü E, Cetin A, Cetin M, Calp E. Additional effect of pulsed electromagnetic field therapy on knee osteoarthritis treatment: a randomized, placebo-controlled stu","[624, 1150, 1033, 1256]",reference_item,0.85,"[""reference content label: Ozg\u00fc\u00e7l\u00fc 2010 {published data only}\nOzg\u00fc\u00e7l\u00fc E, Cetin A, Cetin""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,21,reference_content,"Pavlović 2012 {published data only}
Pavlović: AS, Djurasić LM. The effect of low frequency pulsing electromagnetic field in treatment of patients with knee joint osteoarthritis. Acta Chirurgica Iugosl","[623, 1271, 1026, 1379]",reference_item,0.85,"[""reference content label: Pavlovi\u0107 2012 {published data only}\nPavlovi\u0107: AS, Djurasi\u0107 L""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,22,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1391, 711, 1429]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
20,23,number,18,"[1060, 1392, 1080, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
21,0,paragraph_title,Rigato 2002 {published data only},"[149, 163, 384, 184]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Rigato 2002 {published data only}""]",subsection_heading,0.6,body_zone,unknown_like,none,True,True
21,1,text,"Rigato M, Battisti E, Fortunato M, Giordano N. Comparison between the analgesic and therapeutic effects of a musically modulated electromagnetic field (TAMMEF) and those of a 100 Hz electromagnetic fi","[166, 185, 557, 333]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,2,paragraph_title,Sutbeyaz 2006 {published data only},"[149, 340, 399, 361]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Sutbeyaz 2006 {published data only}""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,none,False,True
21,3,text,"Sutbeyaz 2006 {published data only}
Sutbeyaz ST, Sezer N, Koseoglu BF. The effect of pulsed electromagnetic fields in the treatment of cervical osteoarthritis: a randomized, double-blind, sham-control","[149, 347, 557, 445]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,4,paragraph_title,Tomruk 2007 {published data only},"[150, 455, 394, 474]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Tomruk 2007 {published data only}""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,none,False,True
21,5,text,"Tomruk S, Sezer N, Albayrak N, Koseoglu F. Effectiveness of low frequency pulsed electromagnetic fields in the treatment of knee osteoarthritis: randomized, controlled trial. [Turkish]. Journal of Rhe","[151, 468, 550, 579]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,6,paragraph_title,Additional references Aaron 1989,"[149, 594, 329, 656]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Additional references Aaron 1989""]",backmatter_boundary_candidate,0.5,,heading_like,none,True,True
21,7,footer,,"[149, 636, 234, 656]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,empty,False,False
21,8,text,"Aaron RK, Ciombor DM, Jolly G. Stimulation of experimental endochondral ossification by low-energy pulsing electromagnetic fields. Journal of Bone and Mineral Research 1989;4(2):22733.","[179, 658, 555, 741]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,9,paragraph_title,Aaron 1993,"[149, 749, 233, 768]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Aaron 1993""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,10,text,"Aaron RK, Ciombor DM. Therapeutic effects of electromagnetic fields in the stimulation of connective tissue repair. Journal of Cellular Biochemistry 1993;52:426.","[175, 769, 558, 834]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,11,paragraph_title,Altman 1986,"[149, 841, 243, 861]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Altman 1986""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,12,text,"Altman R, Asch E, Bloch D, Bole G, Borenstein D, Brandt K, et al. Development of criteria for the classification and reporting of osteoarthritis. Classification of osteoarthritis of the knee. Diagnost","[178, 864, 559, 988]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,13,paragraph_title,Altman 1997,"[150, 997, 241, 1015]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Altman 1997""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,14,text,Altman RD. The syndrome of osteoarthritis. Journal of Rheumatology 1997;24(4):7667.,"[176, 1016, 538, 1060]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,15,paragraph_title,Baker 1974,"[150, 1068, 232, 1088]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Baker 1974""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,16,text,"Baker B, Spadaro J, Marino A, Becker RO. Electrical stimulation of articular cartilage regeneration. Annals of the New York Academy of Sciences 1974;238:4919.","[162, 1084, 555, 1152]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,17,paragraph_title,Bartels 2007,"[150, 1161, 238, 1181]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Bartels 2007""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,18,text,"Bartels EM, Lund H, Hagen KB, Dagfinrud H, Christensen R, Danneskiold-Samsøe B. Aquatic exercise for the treatment of knee and hip osteoarthritis. Cochrane Database of Systematic Reviews 2007, Issue 4","[159, 1182, 559, 1287]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,19,text,"Bassett 1974
Bassett CA, Pawluk RJ, Pilla AA. Augmentation of bone repair by inductively coupled electromagnetic fields. Science 1974;184(4136):5757.","[151, 1298, 561, 1379]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,20,paragraph_title,Bellamy 1988,"[624, 163, 722, 182]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Bellamy 1988""]",subsection_heading,0.6,body_zone,unknown_like,short_fragment,True,True
21,21,text,"Bellamy N, Buchanan WW, Goldsmith CH, Campbell J, Stitt LW. Validation study of WOMAC: a health status instrument for measuring clinically important patient relevant outcomes to antirheumatic drug the","[631, 184, 1021, 310]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,22,text,"Bellamy 1997
Bellamy N, Kirwan J, Boers M, Brooks P, Strand V, Tugwell P, et al. Recommendations for a core set of outcome measures for future phase III clinical trials in knee, hip, and hand osteoart","[625, 322, 1032, 443]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,23,paragraph_title,Bellamy 2006a,"[624, 450, 728, 470]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Bellamy 2006a""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,24,text,"Bellamy N, Campbell J, Robinson V, Gee T, Bourne R, Wells G. Intraarticular corticosteroid for treatment of osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2006, Issue 2. [DOI: 10.","[624, 462, 1000, 575]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,25,paragraph_title,Bellamy 2006b,"[624, 583, 729, 603]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Bellamy 2006b""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,26,text,"Bellamy N, Campbell J, Welch V, Gee TL, Bourne R, Wells GA. Visco supplementation for the treatment of osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2006, Issue 2. [DOI: 10.1002/","[628, 598, 1004, 709]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,27,paragraph_title,Blower 1996,"[624, 717, 715, 736]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Blower 1996""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,28,text,Blower AL. Consideration for non-steroidal anti-inflammatory drug therapy: safety. Scandinavian Journal of Rheumatology 1996;25 (Suppl 105):1326.,"[627, 732, 1033, 802]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,29,paragraph_title,Brosseau 2003,"[624, 807, 725, 825]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Brosseau 2003""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,30,text,"Brosseau L, Yonge KA, Welch V, Marchand S, Judd M, Wells GA, et al. Thermotherapy for treatment of osteoarthritis. Cochrane Database of Systematic Reviews 2003, Issue 4. [DOI: 10.1002/14651858.CD00452","[647, 826, 1030, 912]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,31,paragraph_title,Brouwer 2005,"[624, 916, 723, 935]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Brouwer 2005""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,32,text,"Brouwer RW, Jakma TS, Verhagen AP, Verhaar JA, Bierma-Zeinstra SM. Braces and orthoses for treating osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2005, Issue 1. [DOI: 10.1002/146","[652, 937, 1027, 1021]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,33,paragraph_title,Carlsson 1983,"[624, 1028, 723, 1047]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Carlsson 1983""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,34,text,Carlsson AM. Assessment of chronic pain. I. Aspects of the reliability and validity of the visual analogue scale. Pain 1983;16(1):87101.,"[629, 1045, 1030, 1111]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,35,text,"Cates 2004
Cates C. Visual Rx NNT Calculator version 2.0. EBM website. Available from: http://www.nntonline.net/ 2004.","[623, 1117, 1021, 1180]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,36,text,"Ciombor 2001
Ciombor DM, Aaron RK, Simon B. Modification of osteoarthritis by electromagnetic field exposure. Arthritis and Rheumatism 2001;44S:S41.","[623, 1192, 1029, 1269]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
21,37,paragraph_title,Darendeliler 1997,"[624, 1276, 750, 1294]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Darendeliler 1997""]",subsection_heading,0.6,tail_nonref_hold_zone,unknown_like,short_fragment,False,True
21,38,text,"Darendeliler MA, Darendeliler A, Sinclair PM. Effects of static magnetic and pulsed electromagnetic fields on bone healing. International Journal of Adult Orthodontics and Orthognathic Surgery 1997;12","[637, 1295, 1020, 1380]",reference_item,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
21,39,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1391, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
21,40,number,19,"[1060, 1392, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
22,0,reference_content,"De Angelis C, Drazen JM, Frizelle FA, Haug C, Hoey J, Horton R, et al. Clinical trial registration: a statement from the International Committee of Medical Journal Editors. Annals of Internal Medicine","[150, 176, 553, 270]",reference_item,0.85,"[""reference content label: De Angelis C, Drazen JM, Frizelle FA, Haug C, Hoey J, Horton""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,1,reference_content,"De Mattei 2001
De Mattei M, Caruso A, Pezzetti F, Pellati A, Stabellini G, Sollazzo V, et al. Effects of pulsed electromagnetic fields on human articular chondrocyte proliferation. Connective Tissue R","[150, 276, 547, 378]",reference_item,0.85,"[""reference content label: De Mattei 2001\nDe Mattei M, Caruso A, Pezzetti F, Pellati A,""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,2,reference_content,"De Mattei 2003
De Mattei M, Pasello M, Pellati A, Stabellini G, Massari L, Gemmati D, et al. Effects of electromagnetic fields on proteoglycan metabolism of bovine articular cartilage explants. Connec","[150, 383, 540, 489]",reference_item,0.85,"[""reference content label: De Mattei 2003\nDe Mattei M, Pasello M, Pellati A, Stabellini""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,3,reference_content,"De Mattei 2004
De Mattei M, Pellati A, Pasello M, Ongaro A, Setti S, Massari L, et al. Effects of physical stimulation with electromagnetic field and insulin growth factor-I treatment on proteoglycan ","[150, 498, 552, 619]",reference_item,0.85,"[""reference content label: De Mattei 2004\nDe Mattei M, Pellati A, Pasello M, Ongaro A, ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,4,reference_content,"Fidelix 2006
Fidelix TS, Soares BG, Trevisani VF. Diacerein for osteoarthritis. Cochrane Database of Systematic Reviews 2006, Issue 1. [DOI: 10.1002/14651858.CD005117.pub2]","[149, 627, 556, 711]",reference_item,0.85,"[""reference content label: Fidelix 2006\nFidelix TS, Soares BG, Trevisani VF. Diacerein ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,5,reference_content,"Fini 2005
Fini M, Giavaresi G, Carpi A, Nicolini A, Setti S, Giardino R. Effects of pulsed electromagnetic fields on articular hyaline cartilage: review of experimental and clinical studies. Biomedici","[149, 716, 556, 821]",reference_item,0.85,"[""reference content label: Fini 2005\nFini M, Giavaresi G, Carpi A, Nicolini A, Setti S,""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,6,reference_content,"Fioravanti 2002
Fioravanti A, Nerucci F, Collodel G, Markoll R, Marcolongo R. Biochemical and morphological study of human articular chondrocytes cultivated in the presence of pulsed signal therapy. A","[149, 829, 557, 951]",reference_item,0.85,"[""reference content label: Fioravanti 2002\nFioravanti A, Nerucci F, Collodel G, Markoll""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,7,reference_content,"Fransen 2008
Fransen M, McConnell S. Exercise for osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2008, Issue 4. [DOI: 10.1002/14651858.CD004376.pub2]","[149, 955, 551, 1040]",reference_item,0.85,"[""reference content label: Fransen 2008\nFransen M, McConnell S. Exercise for osteoarthr""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,8,reference_content,"Fransen 2009
Fransen M, McConnell S, Hernandez-Molina G, Reichenbach S. Exercise for osteoarthritis of the hip. Cochrane Database of Systematic Reviews 2009, Issue 3. [DOI: 10.1002/14651858.CD007912]","[150, 1047, 527, 1151]",reference_item,0.85,"[""reference content label: Fransen 2009\nFransen M, McConnell S, Hernandez-Molina G, Rei""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,9,reference_content,"Graziana 1990
Graziana A, Ranjeva R, Teissé J. External electric fields stimulate the electrogenic calcium/sodium exchange in plant protoplasts. Biochemistry 1990;29(36):83138.","[150, 1156, 534, 1239]",reference_item,0.85,"[""reference content label: Graziana 1990\nGraziana A, Ranjeva R, Teiss\u00e9 J. External elec""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,10,reference_content,"Guyatt 2008
Guyatt G, Oxman AD, Vist GE, Kunz R, Falck-Ytter Y, Alonso-Coello P, et al. GRADE Working Group. GRADE: an emerging consensus on rating quality of evidence and strength of recommendations.","[150, 1245, 553, 1369]",reference_item,0.85,"[""reference content label: Guyatt 2008\nGuyatt G, Oxman AD, Vist GE, Kunz R, Falck-Ytter""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,11,reference_content,"Hennekens 1987
Hennekens CH, Buring JE. Measures of Disease Frequency and Association. Boston: Little, Brown and Co., 1987.","[623, 164, 1019, 226]",reference_item,0.85,"[""reference content label: Hennekens 1987\nHennekens CH, Buring JE. Measures of Disease ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,12,reference_content,"Higgins 2011
Higgins JPT, Green S (editors). Cochrane Handbook for Systematic Reviews of Interventions Version 5.1.0 [updated March 2011]. The Cochrane Collaboration, 2011. Available from www.cochrane","[623, 231, 1003, 335]",reference_item,0.85,"[""reference content label: Higgins 2011\nHiggins JPT, Green S (editors). Cochrane Handbo""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,13,reference_content,"Hulme 2002
Hulme J, Robinson V, DeBie R, Wells G, Judd M, Tugwell P. Electromagnetic fields for the treatment of osteoarthritis. Cochrane Database of Systematic Reviews 2002, Issue 1. [DOI: 10.1002/14","[624, 342, 1027, 448]",reference_item,0.85,"[""reference content label: Hulme 2002\nHulme J, Robinson V, DeBie R, Wells G, Judd M, Tu""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,14,reference_content,"Laupattarakasem 2008
Laupattarakasem W, Laopaiboon M, Laupattarakasem P, Sumananont C. Arthroscopic debridement for knee osteoarthritis. Cochrane Database of Systematic Reviews 2008, Issue 1. [DOI: 10","[624, 453, 1030, 557]",reference_item,0.85,"[""reference content label: Laupattarakasem 2008\nLaupattarakasem W, Laopaiboon M, Laupat""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,15,reference_content,"Lee 1993
Lee RC, Canaday DJ, Doong H. Review of the biophysical basis for the clinical application of electric fields in soft-tissue repair. Journal of Burn Care Rehabilitation 1993;54(14):31935.","[623, 563, 1028, 666]",reference_item,0.85,"[""reference content label: Lee 1993\nLee RC, Canaday DJ, Doong H. Review of the biophysi""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,16,reference_content,"Lee 1997
Lee EW, Maffulli N, Li CK, Chan KM. Pulsed magnetic and electromagnetic fields in experimental achilles tendonitis in the rat: a prospective randomised study. Archives of Physical Medicine an","[623, 673, 1031, 777]",reference_item,0.85,"[""reference content label: Lee 1997\nLee EW, Maffulli N, Li CK, Chan KM. Pulsed magnetic""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,17,reference_content,"Lequesne 1987
Lequesne MG, Mery C, Samson M, Gerard P. Indexes of severity for osteoarthritis of the hip and knee. Validation - value in comparison with other assessment tests. Scandinavian Journal of","[623, 784, 1032, 907]",reference_item,0.85,"[""reference content label: Lequesne 1987\nLequesne MG, Mery C, Samson M, Gerard P. Index""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,18,reference_content,"Liu 1997
Liu H, Lees P, Abbott J, Bee JA. Pulsed electromagnetic fields preserve proteoglycan composition of extracellular matrix in embryonic chick cartilage. Biochimica et Biophysica Acta 1997;1336(","[623, 911, 1032, 1015]",reference_item,0.85,"[""reference content label: Liu 1997\nLiu H, Lees P, Abbott J, Bee JA. Pulsed electromagn""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,19,reference_content,"March 2004
March LM, Bagga H. Epidemiology of osteoarthritis in Australia. Medical Journal of Australia 2004;180(5 Suppl):S110.","[623, 1020, 1024, 1104]",reference_item,0.85,"[""reference content label: March 2004\nMarch LM, Bagga H. Epidemiology of osteoarthritis""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,20,reference_content,"Petitti 2000
Petitti DB. Meta-analysis, Decision analysis, and Cost-effectiveness Analysis: Method for Quantitative Synthesis in Medicine. Oxford: Oxford University Press, 2000.","[624, 1107, 1015, 1191]",reference_item,0.85,"[""reference content label: Petitti 2000\nPetitti DB. Meta-analysis, Decision analysis, a""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,21,reference_content,"Pezzetti 1999
Pezzetti F, De Mattei M, Caruso A, Cadossi R, Zucchini P, Carinci F, et al. Effects of pulsed electromagnetic fields on human chondrocytes: an in vitro study. Calcified Tissue Internatio","[623, 1199, 1026, 1301]",reference_item,0.85,"[""reference content label: Pezzetti 1999\nPezzetti F, De Mattei M, Caruso A, Cadossi R, ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,22,reference_content,"Pham 2003
Pham T, Van Der Heijde D, Lassere M, Altman RD, Anderson JJ, Bellamy N, et al. OMERACT-OARSI.","[623, 1307, 998, 1371]",reference_item,0.85,"[""reference content label: Pham 2003\nPham T, Van Der Heijde D, Lassere M, Altman RD, An""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
22,23,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 711, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
22,24,number,20,"[1058, 1392, 1080, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
23,0,reference_content,Outcome variables for osteoarthritis clinical trials: the OMERACT-OARSI set of responder criteria. Journal of Rheumatology 2003;30(7):164854.,"[181, 163, 544, 226]",reference_item,0.85,"[""reference content label: Outcome variables for osteoarthritis clinical trials: the OM""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,1,reference_content,"RevMan 2012
The Nordic Cochrane Centre, The Cochrane Collaboration.
Review Manager (RevMan). 5.1. Copenhagen: The Nordic Cochrane Centre, The Cochrane Collaboration, 2012.","[150, 235, 557, 319]",reference_item,0.85,"[""reference content label: RevMan 2012\nThe Nordic Cochrane Centre, The Cochrane Collabo""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,2,reference_content,"Rodan 1978
Rodan GA, Bourret LA, Norton LA. DNA synthesis in cartilage cells is stimulated by oscillating electric fields. Science 1978;54(199):6902.","[149, 325, 534, 409]",reference_item,0.85,"[""reference content label: Rodan 1978\nRodan GA, Bourret LA, Norton LA. DNA synthesis in""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,3,reference_content,"Rutjes 2010
Rutjes AWS, Nüesch E, Sterchi R, Jüni P. Therapeutic ultrasound for osteoarthritis of the knee or hip. Cochrane Database of Systematic Reviews 2010, Issue 1. [DOI: 10.1002/14651858.CD00313","[150, 416, 544, 523]",reference_item,0.85,"[""reference content label: Rutjes 2010\nRutjes AWS, N\u00fcesch E, Sterchi R, J\u00fcni P. Therape""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,4,reference_content,"Shupak 2003
Shupak NM. Therapeutic uses of pulsed magnetic-field exposure: a review. The Radio Science Bulletin 2003;12(307):932.","[148, 531, 536, 614]",reference_item,0.85,"[""reference content label: Shupak 2003\nShupak NM. Therapeutic uses of pulsed magnetic-f""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,5,reference_content,"Singh 2013a
Singh JA, Kundukulam JA, Kalore NV. Total hip replacement surgery versus conservative care for hip osteoarthritis and other non-traumatic diseases. Cochrane Database of Systematic Reviews ","[149, 624, 544, 749]",reference_item,0.85,"[""reference content label: Singh 2013a\nSingh JA, Kundukulam JA, Kalore NV. Total hip re""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,6,reference_content,"Singh 2013b
Singh JA, Dohm M, Borkhoff C. Total joint replacement surgery versus conservative care for knee osteoarthritis","[149, 756, 545, 820]",reference_item,0.85,"[""reference content label: Singh 2013b\nSingh JA, Dohm M, Borkhoff C. Total joint replac""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,7,reference_content,"and other non-traumatic diseases. Cochrane Database of Systematic Reviews 2013, Issue 9. [DOI: 10.1002/14651858.CD010732]","[655, 164, 997, 225]",reference_item,0.85,"[""reference content label: and other non-traumatic diseases. Cochrane Database of Syste""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,8,reference_content,"Towheed 2004
Towheed T, Judd M, Hochberg M, Wells G.
Acetaminophen for osteoarthritis. Cochrane Database of Systematic Reviews 2004, Issue 3. [DOI: 10.1002/14651858.CD004257.pub2]","[624, 231, 998, 336]",reference_item,0.85,"[""reference content label: Towheed 2004\nTowheed T, Judd M, Hochberg M, Wells G.\nAcetami""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,9,reference_content,"Towheed 2005
Towheed TE, Maxwell L, Anastassiades TP, Shea B, Houpt J, Robinson V, et al. Glucosamine therapy for treating osteoarthritis. Cochrane Database of Systematic Reviews 2005, Issue 2. [DOI: ","[623, 342, 1030, 448]",reference_item,0.85,"[""reference content label: Towheed 2005\nTowheed TE, Maxwell L, Anastassiades TP, Shea B""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,10,reference_content,"Trock 2000
Trock DH. Electromagnetic fields and magnets.
Investigational treatment for musculoskeletal disorders.
Rheumatic Diseases Clinics of North America 2000;26(1):5162.","[623, 454, 1012, 558]",reference_item,0.85,"[""reference content label: Trock 2000\nTrock DH. Electromagnetic fields and magnets.\nInv""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,11,reference_content,"Vavken 2009
Vavken P, Arrich F, Schuhfried O, Dorotka R. Effectiveness of pulsed electromagnetic field therapy in the management of osteoarthritis of the knee: a meta-analysis of randomized controlled","[622, 562, 1029, 687]",reference_item,0.85,"[""reference content label: Vavken 2009\nVavken P, Arrich F, Schuhfried O, Dorotka R. Eff""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,12,reference_content,"Verhagen 2007
Verhagen AP, Bierma-Zeinstra SM, Boers M, Cardoso JR, Lambeck J, de Bie R, et al. Balneotherapy for osteoarthritis. Cochrane Database of Systematic Reviews 2007, Issue 4. [DOI: 10.1002/1","[624, 694, 1024, 799]",reference_item,0.85,"[""reference content label: Verhagen 2007\nVerhagen AP, Bierma-Zeinstra SM, Boers M, Card""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
23,13,reference_content, $ ^{*} $ Indicates the major publication for the study,"[624, 799, 902, 819]",reference_item,0.85,"[""reference content label: $ ^{*} $ Indicates the major publication for the study""]",reference_item,0.85,reference_zone,unknown_like,affiliation_marker,True,True
23,14,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 709, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
23,15,number,21,"[1057, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
24,0,paragraph_title,CHARACTERISTICS OF STUDIES,"[148, 160, 626, 183]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: CHARACTERISTICS OF STUDIES""]",section_heading,0.6,,heading_like,none,False,True
24,1,paragraph_title,Characteristics of included studies [ordered by study ID],"[148, 232, 644, 256]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Characteristics of included studies [ordered by study ID]""]",subsection_heading,0.6,,heading_like,none,False,True
24,2,figure_title,Fary 2011,"[149, 282, 229, 304]",figure_caption_candidate,0.85,"[""figure_title label: Fary 2011""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
24,3,table,"<table><tr><td>Methods</td><td>Randomised, double-blind, placebo-controlled trial Sample size at entry: 70 patients (34 in the active and 36 in the placebo group) Withdrawals: 3 participants (2 in the","[150, 322, 1078, 1376]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
24,4,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1389, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
24,5,number,22,"[1058, 1392, 1080, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
25,0,figure_title,Fary 2011 (Continued),"[148, 161, 333, 186]",figure_caption_candidate,0.85,"[""figure_title label: Fary 2011 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
25,1,table,"<table><tr><td></td><td colspan=""2"">36 v. 2) health survey) (2) Joint stiffness (WOMAC 3.1) (3) Physical activity (Human Activity Profile and Actigraph GT1M accelerometers worn for 7 consecutive days)","[150, 223, 1079, 1373]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
25,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 711, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
25,3,number,23,"[1058, 1391, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
26,0,figure_title,Fary 2011 (Continued),"[148, 161, 333, 185]",figure_caption_candidate,0.85,"[""figure_title label: Fary 2011 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
26,1,table,<table><tr><td></td><td></td><td>(failed to attend final appointment)</td></tr><tr><td>Selective reporting (reporting bias)</td><td>Unclear risk</td><td>No information provided</td></tr></table>,"[150, 223, 1077, 306]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
26,2,table,"<table><tr><td>Methods</td><td>Randomised, double-blind, placebo-controlled trialSample size at entry: 58 patients (39 in the active and 19 in the placebo group)Withdrawals: 2 patientsTreatment durati","[150, 350, 1076, 1365]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
26,3,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
26,4,number,24,"[1058, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
27,0,header,Garland 2007 (Continued),"[149, 161, 361, 184]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
27,1,table,"<table><tr><td></td><td colspan=""2"">The occurrence of rashes and other adverse device effects was solicited and recorded at each visit</td></tr><tr><td>Notes</td><td colspan=""2"">Supported by a grant f","[150, 222, 1080, 1355]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
27,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 711, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
27,3,number,25,"[1058, 1392, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
28,0,figure_title,Garland 2007 (Continued),"[149, 161, 361, 185]",figure_caption_candidate,0.85,"[""figure_title label: Garland 2007 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
28,1,table,"<table><tr><td>Incomplete outcome data (attrition bias)</td><td rowspan=""2"">Low risk</td><td rowspan=""2"">1/39 missing from active group (discontinued study participation before the second month follow","[151, 221, 1076, 433]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
28,2,figure_title,Nelson 2013,"[150, 468, 248, 490]",figure_caption_candidate,0.85,"[""figure_title label: Nelson 2013""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
28,3,table,"<table><tr><td>Methods</td><td>Double-blind, placebo-controlled, randomised pilot study Sample size at entry: 34 patients (15 in the active and 19 in the sham group) Withdrawals: 10 participants (3 in","[151, 491, 1078, 1319]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
28,4,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
28,5,number,26,"[1058, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
29,0,figure_title,Nelson 2013 (Continued),"[148, 161, 352, 185]",figure_caption_candidate,0.85,"[""figure_title label: Nelson 2013 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
29,1,table,<table><tr><td>Bias</td><td>Authors&#x27; judgement</td><td>Support for judgement</td></tr><tr><td>Random sequence generation (selection bias)</td><td>Low risk</td><td>Quote: &quot;Randomization was p,"[149, 219, 1078, 1379]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
29,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1389, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
29,3,number,27,"[1058, 1392, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
30,0,figure_title,Nelson 2013 (Continued),"[149, 161, 352, 185]",figure_caption_candidate,0.85,"[""figure_title label: Nelson 2013 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
30,1,table,<table><tr><td>Selective reporting (reporting bias)</td><td>Unclear risk</td><td>No information provided</td></tr></table>,"[150, 224, 1077, 269]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
30,2,table,"<table><tr><td colspan=""2"">Nicolakis 2002</td></tr><tr><td>Methods</td><td>Randomised, double-blind, controlled trial Sample size at entry: 36 patients Withdrawals: 4 patients Treatment duration: 30 m","[149, 259, 1078, 1338]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
30,3,vision_footnote,Electromagnetic fields for treating osteoarthritis (Review),"[148, 1390, 536, 1410]",footnote,0.7,"[""vision_footnote label: Electromagnetic fields for treating osteoarthritis (Review)""]",footnote,0.7,,unknown_like,none,True,True
30,4,number,28,"[1058, 1392, 1080, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
31,0,figure_title,Nicolakis 2002 (Continued),"[148, 161, 370, 185]",figure_caption_candidate,0.85,"[""figure_title label: Nicolakis 2002 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
31,1,table,<table><tr><td>Random sequence generation (selection bias)</td><td>Low risk</td><td>Quote: “The study coordinator assigned the devices on a random basis to patient according to a list created by rando,"[150, 220, 1080, 1156]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
31,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
31,3,number,29,"[1058, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
32,0,figure_title,Pipitone 2001,"[150, 176, 260, 200]",figure_caption_candidate,0.85,"[""figure_title label: Pipitone 2001""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
32,1,table,"<table><tr><td>Methods</td><td colspan=""2"">Randomised, double-blind, placebo-controlled trialSample size at entry: 75 patientsWithdrawals: 16 patientsTreatment duration: 3 times a day for 30 minutes o","[151, 200, 1079, 1300]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
32,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
32,3,number,30,"[1058, 1392, 1080, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
33,0,figure_title,Pipitone 2001 (Continued),"[149, 161, 364, 186]",figure_caption_candidate,0.85,"[""figure_title label: Pipitone 2001 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
33,1,table,<table><tr><td>Allocation concealment (selection bias)</td><td>Low risk</td><td>Quote: “Neither the patients nor the medical assessor were aware of the treatment group”. “The code numbers were not bro,"[151, 218, 1076, 1021]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
33,2,paragraph_title,Thamsborg 2005,"[150, 1053, 282, 1077]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Thamsborg 2005""]",subsection_heading,0.6,,unknown_like,short_fragment,False,True
33,3,table,"<table><tr><td>Methods</td><td>Randomised, double-blind, placebo-controlled trial Sample size at entry: 90 patients (pulsed electromagnetic field 45, placebo 45) Withdrawals: 7 patients Treatment dura","[150, 1080, 1076, 1372]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
33,4,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[147, 1388, 711, 1431]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
33,5,number,31,"[1057, 1391, 1078, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
34,0,figure_title,Thamsborg 2005 (Continued),"[150, 161, 385, 185]",figure_caption_candidate,0.85,"[""figure_title label: Thamsborg 2005 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
34,1,table,"<table><tr><td></td><td colspan=""2"">nancy or lack of contraception use in women of childbearing age, and use of pacemaker or any implanted electrical deviceNumber of patients who finished this study: ","[150, 223, 1078, 1388]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
34,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[149, 1389, 712, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
34,3,number,32,"[1058, 1392, 1080, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
35,0,figure_title,Thamsborg 2005 (Continued),"[150, 161, 385, 186]",figure_caption_candidate,0.85,"[""figure_title label: Thamsborg 2005 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
35,1,table,"<table><tr><td>Blinding (performance bias and detection bias) Blinding of outcome assessors?</td><td>Unclear risk</td><td>Quote: “This was a 1:1 randomized, controlled, double-blind add-on study.” No ","[151, 220, 1077, 438]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
35,2,figure_title,Trock 1993,"[150, 472, 240, 494]",figure_caption_candidate,0.85,"[""figure_title label: Trock 1993""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
35,3,table,"<table><tr><td>Methods</td><td>Randomised, placebo-controlled trialSample size at entry: 27 patients (pulsed electromagnetic field 15, placebo 12)Withdrawals: 7 patientsTreatment duration: 18 half-hou","[150, 494, 1079, 1321]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
35,4,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1389, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
35,5,number,33,"[1058, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
36,0,figure_title,Trock 1993 (Continued),"[149, 161, 344, 185]",figure_caption_candidate,0.85,"[""figure_title label: Trock 1993 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
36,1,table,<table><tr><td>Random sequence generation (selection bias)</td><td>Low risk</td><td>Quote: “Patients were randomized to receive active pulsed electromagnetic fields or placebo using a table of 1000 ra,"[152, 218, 1077, 859]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
36,2,figure_title,Trock 1994,"[150, 891, 241, 914]",figure_caption_candidate,0.85,"[""figure_title label: Trock 1994""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
36,3,table,"<table><tr><td>Methods</td><td>Randomised, double-blind, multicentre controlled trial Sample size at entry: 86 patients with osteoarthritis of the knee and 81 patients with osteoarthritis of the cervi","[151, 913, 1075, 1376]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
36,4,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1389, 710, 1431]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
36,5,number,34,"[1058, 1391, 1080, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
37,0,figure_title,Trock 1994 (Continued),"[149, 160, 343, 185]",figure_caption_candidate,0.85,"[""figure_title label: Trock 1994 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
37,1,table,<table><tr><td></td><td>before evaluation were excludedNumber of patients who finished this study: 86 knee osteoarthritis and 81 cervical osteoarthritisMale/female: unclearAge: at least 35 yearsInterv,"[151, 221, 1078, 1377]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
37,2,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[149, 1389, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
37,3,number,35,"[1058, 1392, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
38,0,figure_title,Trock 1994 (Continued),"[150, 161, 344, 185]",figure_caption_candidate,0.85,"[""figure_title label: Trock 1994 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
38,1,table,"<table><tr><td>Blinding (performance bias and detection bias) Blinding of patients?</td><td>Low risk</td><td>Quote: “Neither patient in the trial nor any patient in the center, nor any other staff cou","[152, 218, 1076, 807]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
38,2,figure_title,Zizic 1995,"[150, 840, 235, 863]",figure_caption_candidate,0.85,"[""figure_title label: Zizic 1995""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
38,3,table,"<table><tr><td>Methods</td><td>Randomised, multicentre, double-blind, placebo-controlled trial Sample size at entry: 78 patients (41 in the active and 37 in the placebo group) Withdrawals: 7 patients ","[151, 864, 1077, 1375]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
38,4,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1389, 710, 1431]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
38,5,number,36,"[1058, 1392, 1080, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
39,0,figure_title,Zizic 1995 (Continued),"[148, 161, 337, 185]",figure_caption_candidate,0.85,"[""figure_title label: Zizic 1995 (Continued)""]",figure_caption,0.85,,unknown_like,none,False,False
39,1,table,"<table><tr><td></td><td colspan=""2"">active device. Patients were advised to use the instrument for 6 to 10 hours/day during the 4-week treatment period</td></tr><tr><td>Outcomes</td><td colspan=""2"">1)","[150, 214, 1079, 1297]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
39,2,vision_footnote,ACR: American College of Rheumatology,"[149, 1334, 449, 1358]",footnote,0.7,"[""vision_footnote label: ACR: American College of Rheumatology""]",footnote,0.7,,unknown_like,none,True,True
39,3,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1388, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
39,4,number,37,"[1058, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
40,0,text,MD: medical doctor,"[148, 161, 302, 183]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
40,1,text,NSAID: non-steroidal anti-inflammatory drug,"[148, 185, 482, 208]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
40,2,text,PMF: pulsed magnetic field,"[149, 207, 349, 230]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
40,3,text,TENS: transcutaneous electrical nerve stimulation,"[149, 231, 505, 253]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
40,4,text,VAS: visual analogue scale,"[149, 254, 339, 277]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
40,5,paragraph_title,Characteristics of excluded studies [ordered by study ID],"[148, 322, 650, 347]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Characteristics of excluded studies [ordered by study ID]""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
40,6,table,<table><tr><td>Study</td><td>Reason for exclusion</td></tr><tr><td>Alcidi 2007</td><td>The duration of treatment was only 5 days (once daily). Efficacy requires at least 4 weeks&#x27; treatment durati,"[150, 397, 1080, 1364]",reference_item,0.95,"[""inline table HTML""]",table_html,0.95,reference_zone,unknown_like,none,True,True
40,7,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1389, 709, 1429]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
40,8,number,38,"[1058, 1392, 1080, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
41,0,text,(Continued),"[150, 161, 239, 184]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
41,1,table,<table><tr><td>Rigato 2002</td><td>The study included patients with cervical spondylosis and shoulder periarthritis without separately reported results and we could not extract data on cervical osteoa,"[150, 222, 1077, 448]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
41,2,text,PEMF: pulsed electromagnetic field therapy,"[148, 482, 462, 507]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
41,3,text,RCT: randomised controlled trial,"[149, 507, 390, 530]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
41,4,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1429]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
41,5,number,39,"[1058, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
42,0,paragraph_title,DATA AND ANALYSES,"[147, 160, 478, 183]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: DATA AND ANALYSES""]",section_heading,0.6,,heading_like,short_fragment,False,True
42,1,paragraph_title,Comparison 1. Electromagnetic fields versus placebo for osteoarthritis,"[149, 240, 742, 266]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Comparison 1. Electromagnetic fields versus placebo for oste""]",subsection_heading,0.6,,unknown_like,none,False,True
42,2,table,<table><tr><td>Outcome or subgroup title</td><td>No. of studies</td><td>No. of participants</td><td>Statistical method</td><td>Effect size</td></tr><tr><td>1 Pain</td><td>6</td><td>434</td><td>Mean Di,"[148, 295, 1074, 566]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
42,3,paragraph_title,WHAT'S NEW,"[147, 704, 354, 728]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: WHAT'S NEW""]",section_heading,0.6,,heading_like,short_fragment,False,True
42,4,text,Last assessed as up-to-date: 3 October 2013.,"[148, 741, 462, 765]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
42,5,table,<table><tr><td>Date</td><td>Event</td><td>Description</td></tr><tr><td>3 October 2013</td><td>New search has been performed</td><td>New search with six new studies.</td></tr><tr><td>3 October 2013</td,"[150, 804, 1078, 953]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
42,6,paragraph_title,HISTORY,"[147, 1020, 285, 1044]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: HISTORY""]",sub_subsection_heading,0.6,,heading_like,short_fragment,True,True
42,7,text,"Review first published: Issue 1, 2002","[149, 1057, 411, 1081]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
42,8,table,<table><tr><td>Date</td><td>Event</td><td>Description</td></tr><tr><td>8 May 2008</td><td>Amended</td><td>CMSG ID: C031-R.</td></tr></table>,"[149, 1119, 1077, 1221]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
42,9,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1430]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
42,10,number,40,"[1059, 1391, 1079, 1410]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
43,0,paragraph_title,CONTRIBUTIONS OF AUTHORS,"[146, 160, 615, 183]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: CONTRIBUTIONS OF AUTHORS""]",section_heading,0.6,,heading_like,none,False,True
43,1,text,"Dr. Shasha Li and Bo Yu performed the bibliographic searches, identified the studies, assessed their methodological quality, extracted the data and produced the first draft of the review. Dr. Chengqi ","[146, 196, 1082, 290]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
43,2,paragraph_title,DECLARATIONS OF INTEREST,"[146, 338, 596, 361]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: DECLARATIONS OF INTEREST""]",backmatter_boundary_candidate,0.5,,heading_like,none,True,True
43,3,text,None known.,"[148, 376, 251, 397]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
43,4,paragraph_title,SOURCES OF SUPPORT,"[147, 448, 491, 471]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: SOURCES OF SUPPORT""]",section_heading,0.6,,heading_like,short_fragment,False,True
43,5,paragraph_title,Internal sources,"[147, 500, 307, 522]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Internal sources""]",subsection_heading,0.6,,heading_like,short_fragment,False,True
43,6,text,"• Chinese Cochrane Centre, Chinese EBM Centre, INCLEN CERTC in West China Hospital, Sichuan University, China.","[163, 534, 1034, 556]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
43,7,paragraph_title,External sources,"[148, 603, 312, 625]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: External sources""]",subsection_heading,0.6,,heading_like,short_fragment,False,True
43,8,text,• No sources of support supplied,"[165, 637, 408, 660]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
43,9,paragraph_title,DIFFERENCES BETWEEN PROTOCOL AND REVIEW,"[146, 710, 893, 733]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: DIFFERENCES BETWEEN PROTOCOL AND REVIEW""]",section_heading,0.6,,unknown_like,none,False,True
43,10,text,"The major outcomes were changed to pain, physical function, radiographic joint structure changes, health-related quality of life measure, number of patients experiencing any adverse event, patients wh","[146, 747, 1081, 839]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
43,11,paragraph_title,INDEX TERMS,"[146, 889, 357, 912]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: INDEX TERMS""]",section_heading,0.6,,heading_like,short_fragment,False,True
43,12,paragraph_title,Medical Subject Headings (MeSH),"[147, 932, 473, 957]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Medical Subject Headings (MeSH)""]",subsection_heading,0.6,,heading_like,none,False,True
43,13,text,*Electric Stimulation Therapy; Clinical Trials as Topic; Electromagnetic Fields; Osteoarthritis [*therapy],"[148, 966, 880, 990]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
43,14,text,MeSH check words,"[148, 1008, 335, 1030]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
43,15,text,Humans,"[148, 1042, 216, 1062]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
43,16,footer,"Electromagnetic fields for treating osteoarthritis (Review)
Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.","[148, 1390, 710, 1429]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
43,17,number,41,"[1058, 1392, 1079, 1409]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 doc_title Electromagnetic fields for treating osteoarthritis (Review) [175, 152, 1051, 191] paper_title 0.8 ["page-1 zone title_zone: Electromagnetic fields for treating osteoarthritis (Review)"] paper_title 0.8 frontmatter_main_zone support_like none True True
3 1 1 text Li S, Yu B, Zhou D, He C, Zhuo Q, Hulme JM [377, 254, 851, 285] frontmatter_noise 0.7 ["keyword-like block: Li S, Yu B, Zhou D, He C, Zhuo Q, Hulme JM"] frontmatter_noise 0.7 body_zone reference_like citation_line False False
4 1 2 image [415, 411, 789, 776] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
5 1 3 text THE COCHRANE COLLABORATION $ ^{\textregistered} $ [409, 794, 820, 890] affiliation 0.8 ["page-1 zone affiliation_zone: THE COCHRANE\nCOLLABORATION $ ^{\\textregistered} $"] affiliation 0.8 frontmatter_main_zone support_like none True True
6 1 4 text This is a reprint of a Cochrane review, prepared and maintained by The Cochrane Collaboration and published in The Cochrane Library 2013, Issue 12 [148, 1068, 1081, 1118] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
7 1 5 text http://www.thecochranelibrary.com [487, 1114, 745, 1139] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
8 1 6 text WILEY [531, 1264, 698, 1307] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone unknown_like short_fragment False True
9 1 7 text Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1389, 710, 1430] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Electromagnetic fields for treating osteoarthritis (Review)\n"] frontmatter_noise 0.8 body_zone body_like none False False
10 2 0 paragraph_title TABLE OF CONTENTS [466, 160, 763, 183] section_heading 0.6 ["unnumbered paragraph_title, inferred level section_heading: TABLE OF CONTENTS"] section_heading 0.6 body_zone table_caption_like short_fragment True True
11 2 1 content HEADER ..... 1 ABSTRACT ..... 1 PLAIN LANGUAGE SUMMARY ..... 2 SUMMARY OF FINDINGS FOR THE MAIN COMPARISON ..... 4 BACKGROUND ..... 7 OBJECTIVES ..... 8 METHODS ..... 8 RESULTS ..... 10 Figure 1. .... [146, 188, 1083, 740] unknown_structural 0.2 ["unrecognized label 'content'"] unknown_structural 0.2 body_zone body_like none False True
12 2 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
13 2 3 number i [1068, 1392, 1080, 1410] figure_inner_text 0.9 ["panel label / figure inner text: i"] figure_inner_text 0.9 display_zone legend_like panel_label True True
14 3 0 doc_title [Intervention Review] Electromagnetic fields for treating osteoarthritis [147, 159, 880, 234] unknown_structural 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone body_like none False True
15 3 1 text Shasha Li $ ^{1} $, Bo Yu $ ^{2} $, Dong Zhou $ ^{3} $, Chengqi He $ ^{1} $, Qi Zhuo $ ^{4} $, Jennifer M Hulme $ ^{5} $ [147, 280, 715, 304] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
16 3 2 text $ ^{1} $Department of Rehabilitation Medicine, West China Hospital, Sichuan University, Chengdu, China. $ ^{2} $Department of Paediatrics, Sichuan Provincial Hospital for Women and Children, Chengdu [147, 324, 1079, 417] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
17 3 3 text Contact address: Chengqi He, Department of Rehabilitation Medicine, West China Hospital, Sichuan University, No.37 Guo-xue-xiang Street, Chengdu, Sichuan Province, 610041, China. chengqi.he623477@gmai [147, 435, 1079, 483] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
18 3 4 text Editorial group: Cochrane Musculoskeletal Group. Publication status and date: New search for studies and content updated (no change to conclusions), published in Issue 12, 2013. Review content assesse [147, 502, 1065, 571] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
19 3 5 text Citation: Li S, Yu B, Zhou D, He C, Zhuo Q, Hulme JM. Electromagnetic fields for treating osteoarthritis. Cochrane Database of Systematic Reviews 2013, Issue 12. Art. No.: CD003523. DOI: 10.1002/14651 [148, 589, 1084, 636] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
20 3 6 text Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 658, 768, 683] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 3 7 paragraph_title ABSTRACT [540, 741, 688, 764] abstract_heading 0.95 ["abstract heading"] abstract_heading 0.95 body_zone body_like short_fragment True True
22 3 8 paragraph_title Background [148, 779, 248, 803] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Background"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
23 3 9 abstract This is an update of a Cochrane review first published in 2002. Osteoarthritis is a disease that affects the synovial joints, causing degeneration and destruction of hyaline cartilage and subchondral [145, 815, 1082, 909] unknown_structural 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 unknown_like none False True
24 3 10 paragraph_title Objectives [148, 921, 232, 943] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Objectives"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
25 3 11 text To assess the benefits and harms of electromagnetic fields for the treatment of osteoarthritis as compared to placebo or sham. [147, 957, 1018, 981] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
26 3 12 paragraph_title Search methods [148, 994, 272, 1015] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Search methods"] subsection_heading 0.6 body_zone body_like short_fragment True True
27 3 13 abstract We searched the Cochrane Central Register of Controlled Trials (CENTRAL) (The Cochrane Library 2013, Issue 9), PreMEDLINE for trials published before 1966, MEDLINE from 1966 to October 2013, CINAHL an [148, 1029, 1078, 1100] unknown_structural 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 unknown_like none False True
28 3 14 paragraph_title Selection criteria [148, 1112, 280, 1133] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Selection criteria"] subsection_heading 0.6 body_zone body_like short_fragment True True
29 3 15 text Randomised controlled trials of electromagnetic fields in osteoarthritis, with four or more weeks treatment duration. We included papers in any language. [148, 1147, 1078, 1196] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 3 16 paragraph_title Data collection and analysis [148, 1207, 363, 1229] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Data collection and analysis"] subsection_heading 0.6 body_zone body_like none True True
31 3 17 abstract Two review authors independently assessed studies for inclusion in the review and resolved differences by consensus with a third review author. We extracted data using pre-developed data extraction fo [149, 1243, 1082, 1381] body_paragraph 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 body_zone body_like none True True
32 3 18 footnote Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 709, 1430] footnote 0.7 ["footnote label: Electromagnetic fields for treating osteoarthritis (Review)\n"] footnote 0.7 body_zone body_like none True True
33 3 19 number 1 [1066, 1392, 1078, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
34 4 0 paragraph_title Main results [148, 163, 247, 183] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Main results"] subsection_heading 0.6 body_zone body_like short_fragment True True
35 4 1 text Nine studies with a total of 636 participants with osteoarthritis were included, six of which were added in this update of the review. Selective outcome reporting was unclear in all nine included stud [147, 198, 1081, 289] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
36 4 2 text Participants who were randomised to electromagnetic field treatment rated their pain relief 15.10 points more on a scale of 0 to 100 (MD 15.10, 95% CI 9.08 to 21.13; absolute improvement 15%) after 4 [147, 303, 1083, 534] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
37 4 3 paragraph_title Authors' conclusions [148, 547, 310, 569] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Authors' conclusions"] subsection_heading 0.6 body_zone body_like none True True
38 4 4 text Current evidence suggests that electromagnetic field treatment may provide moderate benefit for osteoarthritis sufferers in terms of pain relief. Further studies are required to confirm whether this t [147, 583, 1082, 653] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
39 4 5 paragraph_title PLAIN LANGUAGE SUMMARY [147, 713, 536, 735] section_heading 0.6 ["unnumbered paragraph_title, inferred level section_heading: PLAIN LANGUAGE SUMMARY"] section_heading 0.6 body_zone body_like none True True
40 4 6 paragraph_title Electromagnetic fields for the treatment of osteoarthritis Review question [148, 750, 571, 809] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Electromagnetic fields for the treatment of osteoarthritis R"] subsection_heading 0.6 body_zone body_like none True True
41 4 7 footer [148, 787, 277, 809] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
42 4 8 paragraph_title Background: what is osteoarthritis and what are electromagnetic fields? [148, 858, 680, 881] section_heading 0.6 ["unnumbered paragraph_title, inferred level section_heading: Background: what is osteoarthritis and what are electromagne"] section_heading 0.6 body_zone body_like none True True
43 4 9 text We conducted a review of the effect of electromagnetic fields on osteoarthritis. We found nine studies with 636 people. [147, 822, 981, 845] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
44 4 10 text Osteoarthritis is the most common form of arthritis that can affect the hands, hips, shoulders and knees. In osteoarthritis, the cartilage that protects the ends of the bones breaks down and causes pa [148, 895, 1080, 941] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
45 4 11 text An electromagnetic field is the invisible force that attracts things to magnets. This invisible attraction can be created using an electrical current that may affect the cartilage around the joints. I [147, 954, 1081, 1047] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
46 4 12 paragraph_title Study characteristics [148, 1060, 306, 1081] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Study characteristics"] subsection_heading 0.6 body_zone body_like none True True
47 4 13 text After searching for all relevant studies up to October 2013, we found nine studies that reviewed the effect of electromagnetic field treatment compared to a sham or fake treatment in 636 adults with o [146, 1095, 1080, 1141] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
48 4 14 paragraph_title Key results Pain (on a 0 to 100 scale; higher scores mean worse or more severe pain) [148, 1155, 687, 1213] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Key results Pain (on a 0 to 100 scale; higher scores mean wo"] subsection_heading 0.6 body_zone body_like none True True
49 4 15 footer [148, 1191, 687, 1213] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
50 4 16 text - Electromagnetic fields probably relieve pain in osteoarthritis. [149, 1227, 586, 1250] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 4 17 text - People who received electromagnetic field treatment experienced pain relief of 15 points more compared with people who received fake treatment (15% improvement). [148, 1263, 1080, 1309] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
52 4 18 text - People who received electromagnetic field treatment rated their pain to be 26 points lower on a scale of 0 to 100. [148, 1322, 947, 1345] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
53 4 19 text - People who received fake treatment rated their pain to be 11 points lower on a scale of 0 to 100. [150, 1357, 832, 1380] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
54 4 20 footer Electromagnetic fields for treating osteoarthritis (Review) [149, 1392, 535, 1409] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
55 4 21 number 2 [1067, 1393, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
56 5 0 paragraph_title Physical function [148, 162, 285, 184] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Physical function"] subsection_heading 0.6 body_zone body_like short_fragment True True
57 5 1 text - Electromagnetic fields may improve physical function but this may have happened by chance. [146, 196, 815, 219] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
58 5 2 paragraph_title Overall health and well-being [148, 231, 376, 254] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Overall health and well-being"] subsection_heading 0.6 body_zone body_like none True True
59 5 3 text - Electromagnetic fields probably make no difference to overall health and well-being. [147, 266, 748, 289] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
60 5 4 paragraph_title Side effects [148, 300, 238, 321] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Side effects"] subsection_heading 0.6 body_zone body_like short_fragment True True
61 5 5 text - Electromagnetic fields probably make no difference to whether people have side effects or stop taking the treatment because of side effects, but this may have happened by chance. [146, 334, 1079, 380] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
62 5 6 text We do not have precise information about side effects and complications. This is particularly true for rare but serious side effects. Possible side effects could include skin rash and aggravated pain. [147, 392, 1078, 438] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
63 5 7 paragraph_title X-ray changes [148, 451, 259, 473] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: X-ray changes"] subsection_heading 0.6 body_zone body_like short_fragment True True
64 5 8 text There was no information available on whether electromagnetic fields show any improvement to a joint with osteoarthritis on an X-ray. [148, 484, 1078, 530] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 5 9 paragraph_title Quality of the evidence [148, 542, 328, 564] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Quality of the evidence"] subsection_heading 0.6 body_zone body_like none True True
66 5 10 text - Electromagnetic fields probably improve pain and make no difference to overall health and well-being and side effects. This may change with further research. [146, 576, 1079, 623] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 5 11 text - Electromagnetic fields may improve physical function. This is very likely to change with further research. [148, 633, 894, 657] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
68 5 12 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 709, 1430] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
69 5 13 number 3 [1066, 1392, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
70 6 0 aside_text Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [150, 149, 187, 708] unknown_structural 0.2 ["unrecognized label 'aside_text'"] unknown_structural 0.2 frontmatter_side_zone support_like none False True
71 6 1 figure_title SUMMARY OF FINDINGS FOR THE MAIN COMPARISON [Explanation] [204, 152, 1128, 180] figure_caption_candidate 0.85 ["figure_title label: SUMMARY OF FINDINGS FOR THE MAIN COMPARISON [Explanation]"] figure_caption 0.85 body_zone legend_like none False False
72 6 2 table <table><tr><td colspan="6">Electromagnetic field treatment compared to placebo for the treatment of osteoarthritis</td></tr><tr><td colspan="6">Patient or population: patients with osteoarthritis Sett [185, 224, 1503, 1053] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
73 7 0 aside_text Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [151, 149, 187, 709] unknown_structural 0.2 ["unrecognized label 'aside_text'"] unknown_structural 0.2 frontmatter_side_zone support_like none False True
74 7 1 table <table><tr><td>Quality of lifeSF-36 itemScale from: 0 to 100(Lower scores mean worse quality)Follow-up: mean 16 weeks</td><td>The mean change in quality of life in the control groups was 2.4</td><td>T [196, 194, 1501, 927] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
75 7 2 vision_footnote *The basis for the assumed risk (e.g. the median control group risk across studies) is provided in footnotes. The corresponding risk (and its 95% confidence interval) is based on the assumed risk in t [208, 940, 1501, 1037] footnote 0.7 ["vision_footnote label: *The basis for the assumed risk (e.g. the median control gro"] footnote 0.7 body_zone body_like none True True
76 7 3 number 5 [173, 1066, 191, 1080] noise 0.9 ["page number label"] noise 0.9 body_zone unknown_like short_fragment False False
77 8 0 aside_text Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [150, 150, 188, 709] unknown_structural 0.2 ["unrecognized label 'aside_text'"] unknown_structural 0.2 frontmatter_side_zone support_like none False True
78 8 1 text GRADE Working Group grades of evidence High quality: Further research is very unlikely to change our confidence in the estimate of effect. Moderate quality: Further research is likely to have an impor [207, 210, 1246, 329] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
79 8 2 text $ ^{1} $Downgraded for moderate heterogeneity ( $ I^{2} = 55\% $); unclear risk for random sequence generation (Zizic 1995), allocation concealment (Zizic 1995), blinding of outcome assessors (Fary 2 [206, 341, 1137, 410] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
80 8 3 text $ ^{2} $Downgraded for considerable heterogeneity ( $ I^{2} = 84\% $); Zizic 1995: unclear risk for random sequence generation, allocation concealment, blinding of outcome assessors, selective report [203, 411, 1136, 480] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
81 8 4 text $ ^{3} $Fary 2011: unclear risk for blinding of outcome assessors and selective reporting. Pipitone 2001: high risk for incomplete outcome data. $ ^{4} $Unclear risk for random sequence generation ( [203, 480, 1136, 571] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
82 8 5 text $ ^{5} $Only Zizic 1995 reported this outcome. Downgraded for imprecision (wide confidence interval and few events); unclear risk for random sequence generation, allocation concealment, blinding of o [203, 572, 1136, 641] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
83 9 0 header BACKGROUND [148, 162, 361, 184] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
84 9 1 paragraph_title Description of the condition [147, 238, 418, 262] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Description of the condition"] subsection_heading 0.6 body_zone heading_like none True True
85 9 2 text Osteoarthritis is a progressive rheumatic disease which occurs most commonly in older populations. It is becoming increasingly common due to the ageing population in many societies. The degeneration a [147, 273, 605, 460] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
86 9 3 paragraph_title Description of the intervention [147, 509, 445, 533] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Description of the intervention"] subsection_heading 0.6 body_zone heading_like none True True
87 9 4 text Current osteoarthritis treatment options include pharmacological and non-pharmacological procedures to decrease progression and treat the pain associated with this condition. They include: [147, 543, 606, 611] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
88 9 5 text 1. oral pharmacological medications: analgesics such as acetaminophen, aspirin, non-steroidal anti-inflammatory drugs (NSAIDs); symptomatic slow-acting drugs for osteoarthritis (SYSADOA) such as gluco [147, 612, 604, 771] body_paragraph 0.6 ["reference-like pattern: 1. oral pharmacological medications: analgesics such as acet"] reference_item 0.6 reference_like reference_numeric_dot True True
89 9 6 text 2. topical therapies (applied as gels or creams), including NSAIDs and capsaicin; [148, 773, 567, 817] body_paragraph 0.6 ["reference-like pattern: 2. topical therapies (applied as gels or creams), including "] reference_item 0.6 reference_like reference_numeric_dot True True
90 9 7 text 3. intra-articular therapies, including corticosteroid and hyaluronic acid injections (Bellamy 2006a; Bellamy 2006b); [148, 819, 571, 865] body_paragraph 0.6 ["reference-like pattern: 3. intra-articular therapies, including corticosteroid and h"] reference_item 0.6 reference_like reference_numeric_dot True True
91 9 8 text 4. non-pharmacological therapies, including aquatic exercise therapy (Bartels 2007), balneotherapy (Verhagen 2007), physical therapy (Rutjes 2010), occupational therapy, strengthening exercises (Frans [148, 866, 603, 978] body_paragraph 0.6 ["reference-like pattern: 4. non-pharmacological therapies, including aquatic exercise"] reference_item 0.6 reference_like reference_numeric_dot True True
92 9 9 text 5. surgical treatment: joint replacement (Singh 2013a; Singh 2013b) and arthroscopic debridement (Laupattarakasem 2008) of the affected joint. [148, 981, 594, 1047] body_paragraph 0.6 ["reference-like pattern: 5. surgical treatment: joint replacement (Singh 2013a; Singh"] reference_item 0.6 reference_like reference_numeric_dot True True
93 9 10 text Management of osteoarthritis of the knee aims to relieve pain, maintain or improve mobility, and minimise disability. However, these goals are seldom achieved through drug therapy alone, as many treat [147, 1049, 606, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
94 9 11 text [621, 161, 1080, 323] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
95 9 12 text Electromagnetic fields can be delivered to biological systems by the direct placement of an electrode or non-invasively by two means: [621, 323, 1079, 368] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
96 9 13 text - capacitive coupling, in which opposing electrodes are placed within a conducting medium, that is, in contact with the skin surface overlying a target tissue (e.g. bone, joint, wound); [620, 371, 1076, 437] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
97 9 14 text • inductive coupling, in which a time-varying pulsed electromagnetic field induces an electrical current in the target tissue. This technique does not require direct contact with the skin or biologica [621, 439, 1063, 531] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
98 9 15 text Although the former relies on direct application of an electrical field rather than creating induced current through magnetic impulses, they act by the same mechanism. Thus both pulsed electromagnetic [620, 544, 1081, 661] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
99 9 16 paragraph_title How the intervention might work [622, 714, 945, 738] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: How the intervention might work"] subsection_heading 0.6 body_zone heading_like none True True
100 9 17 text Three basic principles of physics are proposed to explain how electromagnetic fields may promote the growth and repair of bone and cartilage: Wolff's Law, the piezoelectric effect and the concept of s [621, 748, 1080, 840] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
101 9 18 text Electromagnetic field stimulation first garnered interest as treatment for osteoarthritis following the discovery of evidence that stimulation of chondrocytes increased the synthesis of the major comp [621, 841, 1081, 1047] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
102 9 19 text Electromagnetic field treatments might also help to preserve extracellular matrix integrity in the early stages of osteoarthritis by down-regulating proteoglycan production and degradation (Ciombor 20 [621, 1048, 1080, 1162] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
103 9 20 text Through these improvements in bone and cartilage maintenance and repair, pulsed electromagnetic field stimulation could influence the osteoarthritic disease process by decreasing inflammation and prov [621, 1164, 1080, 1277] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 9 21 text Why it is important to do this review [622, 1332, 975, 1357] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
105 9 22 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
106 9 23 number 7 [1066, 1392, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
107 10 0 text Electromagnetic field therapy is already being widely used for the management of joint pain associated with osteoarthritis and has a promising theoretical basis for clinical application. Clinical tria [147, 161, 607, 463] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
108 10 1 paragraph_title OBJECTIVES [147, 551, 333, 576] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: OBJECTIVES"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
109 10 2 text To assess the benefits and harms of electromagnetic fields for the treatment of osteoarthritis as compared to placebo or sham. [147, 591, 606, 639] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
110 10 3 paragraph_title METHODS [147, 696, 296, 720] section_heading 0.9 ["explicit scholarly heading: METHODS"] section_heading 0.9 body_zone heading_like canonical_section_name True True
111 10 4 paragraph_title Types of studies [149, 863, 289, 887] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Types of studies"] subsection_heading 0.6 body_zone body_like short_fragment True True
112 10 5 text Randomised controlled trials or quasi-randomised trials which examined the effects of electromagnetic fields for treating osteoarthritis, with four or more weeks treatment duration. [147, 894, 605, 965] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
113 10 6 paragraph_title Types of participants [148, 1010, 330, 1033] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Types of participants"] subsection_heading 0.6 body_zone body_like none True True
114 10 7 text Participants over 18 years of age, with clinical or radiological confirmation of the diagnosis (or both) were considered. The diagnosis of osteoarthritis was defined using the American College of Rheu [147, 1040, 606, 1203] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
115 10 8 paragraph_title Types of interventions Criteria for considering studies for this review [148, 784, 583, 1270] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Types of interventions Criteria for considering studies for "] subsection_heading 0.6 body_zone body_like none True True
116 10 9 footer [148, 784, 583, 809] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
117 10 10 paragraph_title Types of outcome measures [622, 162, 865, 184] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Types of outcome measures"] subsection_heading 0.6 body_zone body_like none True True
118 10 11 text All types of pulsed electromagnetic fields and pulsed electrical stimulation were included. Trials that compared the intervention group using electromagnetic fields to usual care were included, as wel [147, 1277, 606, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
119 10 12 text [620, 190, 1081, 422] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
120 10 13 paragraph_title Major outcomes [623, 460, 752, 480] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Major outcomes"] subsection_heading 0.6 body_zone body_like short_fragment True True
121 10 14 text 1. Pain [638, 490, 696, 510] body_paragraph 0.6 ["reference-like pattern: 1. Pain"] reference_item 0.6 reference_like reference_numeric_dot True True
122 10 15 text 2. Physical function [637, 511, 787, 533] body_paragraph 0.6 ["reference-like pattern: 2. Physical function"] reference_item 0.6 reference_like reference_numeric_dot True True
123 10 16 text 3. Health-related quality of life measure [636, 535, 925, 558] body_paragraph 0.6 ["reference-like pattern: 3. Health-related quality of life measure"] reference_item 0.6 reference_like reference_numeric_dot True True
124 10 17 text 4. Radiographic joint structure changes [637, 558, 923, 581] body_paragraph 0.6 ["reference-like pattern: 4. Radiographic joint structure changes"] reference_item 0.6 reference_like reference_numeric_dot True True
125 10 18 text 5. Number of patients experiencing any adverse event [637, 582, 1021, 603] body_paragraph 0.6 ["reference-like pattern: 5. Number of patients experiencing any adverse event"] reference_item 0.6 reference_like reference_numeric_dot True True
126 10 19 text 6. Patients who withdrew because of adverse events [636, 605, 1004, 627] body_paragraph 0.6 ["reference-like pattern: 6. Patients who withdrew because of adverse events"] reference_item 0.6 reference_like reference_numeric_dot True True
127 10 20 text 7. Patients experiencing any serious adverse event [636, 628, 992, 650] body_paragraph 0.6 ["reference-like pattern: 7. Patients experiencing any serious adverse event"] reference_item 0.6 reference_like reference_numeric_dot True True
128 10 21 paragraph_title Search methods for identification of studies [621, 704, 1036, 728] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Search methods for identification of studies"] subsection_heading 0.6 body_zone heading_like none True True
129 10 22 paragraph_title Electronic searches [622, 776, 793, 797] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Electronic searches"] subsection_heading 0.6 body_zone body_like short_fragment True True
130 10 23 text We identified relevant studies by searching the Cochrane Central Register of Controlled Trials (CENTRAL) (The Cochrane Library 2013, Issue 9), PreMEDLINE for trials published before 1966, MEDLINE from [620, 805, 1082, 1038] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
131 10 24 paragraph_title Searching other resources [622, 1073, 850, 1096] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Searching other resources"] subsection_heading 0.6 body_zone body_like none True True
132 10 25 text We complemented the electronic searches with handsearching: [623, 1102, 1064, 1127] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
133 10 26 text • bibliographic references; and [641, 1127, 867, 1148] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
134 10 27 text • abstracts published in special issues of specialised journals or in conference proceedings (American Orthopaedic Physicians Annual Meeting; Asia-Pacific Orthopedic Society for Sports Medicine Meetin [621, 1149, 1075, 1242] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
135 10 28 text We contacted the Trial Search Co-ordinators of the Cochrane Rehabilitation and Related Therapies Field and the Cochrane Musculoskeletal Group. [621, 1255, 1079, 1323] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
136 10 29 text We manually searched conference proceedings, used the Science Citation Index to retrieve reports citing relevant articles, contacted [620, 1325, 1081, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
137 10 30 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1391, 709, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
138 10 31 number 8 [1066, 1392, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
139 11 0 text content experts and trialists, and screened the references of all articles obtained, including related reviews. We did not use abstracts if additional data could not be obtained. [146, 161, 605, 229] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
140 11 1 text Finally, we searched several clinical trial registries (www.clinicaltrials.gov, http://www.controlled-trials.com, http://www.anzctr.org.au/, www.umin.ac.jp/ctr) to identify ongoing trials. [147, 230, 605, 321] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
141 11 2 text The last update of the manual search was conducted on 3 October 2013. [148, 323, 604, 367] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
142 11 3 paragraph_title Data collection and analysis [147, 417, 413, 442] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Data collection and analysis"] subsection_heading 0.6 body_zone heading_like none True True
143 11 4 paragraph_title Selection of studies [147, 484, 319, 505] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Selection of studies"] subsection_heading 0.6 body_zone body_like none True True
144 11 5 text Two review authors (SL and BY) independently screened the abstract, keywords and publication type of all publications obtained from the searches described. We obtained all studies which might be eligi [147, 512, 606, 650] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
145 11 6 text When necessary, we sought information from the authors of the primary studies. [147, 651, 606, 698] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
146 11 7 paragraph_title Data extraction and management [147, 729, 442, 751] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Data extraction and management"] subsection_heading 0.6 body_zone body_like none True True
147 11 8 text Two review authors (SL, BY) extracted data using a standard, predeveloped form that we pilot-tested. We extracted details of trial design, patient characteristics, treatment duration and the mechanics [146, 757, 607, 1012] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
148 11 9 paragraph_title Assessment of risk of bias in included studies [147, 1044, 531, 1065] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Assessment of risk of bias in included studies"] subsection_heading 0.6 body_zone body_like none True True
149 11 10 text The review authors assessed the risk of bias in the included studies using The Cochrane Collaboration 'Risk of bias' tool (Higgins 2011). We considered six domains: random sequence generation, allocat [146, 1071, 606, 1232] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
150 11 11 text We assessed two components of randomisation: generation of allocation sequence and concealment of allocation. We considered the generation of sequence adequate if it resulted in an unpredictable alloc [147, 1233, 606, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 11 12 text [620, 161, 1080, 253] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
152 11 13 text We considered concealment of allocation adequate if both the patients and the investigators responsible for patient selection were unable to predict allocation to treatment or placebo groups. Adequate [621, 254, 1081, 368] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
153 11 14 text Since the primary measure of effectiveness was patient-reported pain relief, we considered blinding of patients adequate if experimental and control preparations were explicitly described as indisting [621, 369, 1080, 460] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
154 11 15 text We considered analyses adequate if all randomised patients were included in the analysis according to the intention-to-treat principle. We further assessed the reporting of major outcomes. [620, 461, 1080, 532] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
155 11 16 paragraph_title Measures of treatment effect [620, 561, 875, 583] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Measures of treatment effect"] subsection_heading 0.6 body_zone body_like none True True
156 11 17 text For continuous data, we presented results as a mean difference (MD). However, where different scales were used to measure the same concept or outcome, we used standardised mean difference (SMD). For d [620, 590, 1081, 776] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
157 11 18 paragraph_title Unit of analysis issues [621, 806, 812, 828] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Unit of analysis issues"] subsection_heading 0.6 body_zone body_like none True True
158 11 19 text If we identified cross-over trials presenting continuous outcome data which precluded paired analysis, we did not plan to include these data in a meta-analysis to avoid unit of analysis error. Where c [620, 835, 1081, 976] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
159 11 20 paragraph_title Dealing with missing data [621, 1005, 847, 1029] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Dealing with missing data"] subsection_heading 0.6 body_zone body_like none True True
160 11 21 text We contacted the study investigators for missing data via email. Where possible, the analyses were based on intention-to-treat data from individual clinical trials. [620, 1033, 1080, 1103] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
161 11 22 paragraph_title Assessment of heterogeneity [621, 1136, 873, 1158] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Assessment of heterogeneity"] subsection_heading 0.6 body_zone body_like none True True
162 11 23 text We assessed statistical heterogeneity by examining the $ I^{2} $ statistic (Higgins 2011), a quantity that describes approximately the proportion of variation in point estimates due to heterogeneity [620, 1163, 1081, 1373] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
163 11 24 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [147, 1390, 710, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
164 11 25 number 9 [1066, 1392, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
165 12 0 paragraph_title Assessment of reporting biases [148, 162, 417, 183] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Assessment of reporting biases"] subsection_heading 0.6 body_zone body_like none True True
166 12 1 text We planned to assess reporting bias by screening the clinical trials register at the International Clinical Trials Registry Platform of the World Health Organization (http://apps.who.int/trialsearch/) [147, 190, 607, 400] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
167 12 2 paragraph_title Data synthesis [148, 431, 277, 452] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Data synthesis"] subsection_heading 0.6 body_zone body_like short_fragment True True
168 12 3 text We planned to pool clinically homogeneous studies using the fixed-effect model for meta-analysis. When there was important heterogeneity ( $ I^{2} > 25\% $), we pooled studies using the random-effects [147, 460, 605, 553] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
169 12 4 paragraph_title Subgroup analysis and investigation of heterogeneity [147, 585, 596, 608] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Subgroup analysis and investigation of heterogeneity"] subsection_heading 0.6 body_zone body_like none True True
170 12 5 text We planned to conduct subgroup analysis to examine the ethcacy of electromagnetic fields with different application methods and modalities, including frequency, length of treatment and different techn [147, 613, 606, 708] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
171 12 6 paragraph_title Sensitivity analysis [148, 740, 311, 761] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Sensitivity analysis"] subsection_heading 0.6 body_zone body_like none True True
172 12 7 text We conducted a sensitivity analysis based on the methodological quality of each trial. We undertook sensitivity analyses to explore the impact of studies with poor ratings for domains described in the [147, 767, 606, 861] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
173 12 8 text 1. concealment of allocation: [162, 862, 375, 882] body_paragraph 0.6 ["reference-like pattern: 1. concealment of allocation:"] reference_item 0.6 reference_like reference_numeric_dot True True
174 12 9 text 2. blinding of outcome assessors; [162, 884, 402, 905] body_paragraph 0.6 ["reference-like pattern: 2. blinding of outcome assessors;"] reference_item 0.6 reference_like reference_numeric_dot True True
175 12 10 text 3. extent of drop-outs (we considered 20% as a cut-point). [161, 907, 577, 929] body_paragraph 0.6 ["reference-like pattern: 3. extent of drop-outs (we considered 20% as a cut-point)."] reference_item 0.6 reference_like reference_numeric_dot True True
176 12 11 paragraph_title 'Summary of findings' table [148, 963, 386, 985] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: 'Summary of findings' table"] subsection_heading 0.6 body_zone body_like none True True
177 12 12 text We presented key findings in a 'Summary of findings' table. These included the magnitude of effect of the interventions examined, the sum of available data on the main outcomes and the quality of the [147, 991, 605, 1083] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
178 12 13 text For dichotomous outcomes, we calculated the absolute risk difference using the risk difference (RD) statistic in RevMan (RevMan 2012) (RR - 1 calculated the weighted relative per cent change). We calc [148, 1084, 606, 1131] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
179 12 14 text [621, 161, 1080, 275] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
180 12 15 text For continuous outcomes, we calculated the absolute benefit as the improvement in the treatment group (follow-up mean minus baseline mean) less the improvement in the control group (follow-up mean min [621, 278, 1083, 600] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
181 12 16 paragraph_title RESULTS [622, 684, 758, 708] section_heading 0.9 ["explicit scholarly heading: RESULTS"] section_heading 0.9 body_zone heading_like canonical_section_name True True
182 12 17 paragraph_title Description of studies [622, 769, 833, 793] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Description of studies"] subsection_heading 0.6 body_zone heading_like none True True
183 12 18 paragraph_title Results of the search [622, 846, 804, 867] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Results of the search"] subsection_heading 0.6 body_zone body_like none True True
184 12 19 text The search strategies retrieved 2037 articles (Figure 1). The literature search identified 25 potentially relevant articles. Of these, only nine studies met the inclusion criteria (Fary 2011; Garland [620, 875, 1082, 1131] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
185 12 20 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 709, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
186 12 21 number 10 [1060, 1392, 1080, 1410] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
187 13 0 figure_title Figure I. Study flow diagram. [490, 161, 754, 186] figure_caption_candidate 0.85 ["figure_title label: Figure I. Study flow diagram."] figure_caption 0.85 reference_like citation_line False False
188 13 1 image [293, 179, 943, 1261] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
189 13 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [147, 1390, 711, 1430] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
190 13 3 number || [1058, 1391, 1079, 1411] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
191 14 0 paragraph_title Included studies [148, 219, 292, 241] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Included studies"] subsection_heading 0.6 body_zone body_like short_fragment True True
192 14 1 text The eligible RCTs collectively involved 327 participants in active electromagnetic field treatment groups and 309 participants in placebo groups. [147, 261, 606, 330] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
193 14 2 text Six trials used pulsed electromagnetic fields (Nelson 2013; Nicolakis 2002; Pipitone 2001; Thamsborg 2005; Trock 1993; Trock 1994) while three studies (Fary 2011; Garland 2007; Zizic 1995) used pulsed [148, 331, 605, 422] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
194 14 3 text One study used a pulsed electromagnetic field signal consisting of a 7 ms burst of 6.8 MHz sinusoidal waves repeating at one burst/s and delivering a peak induced electrical field of $ 34 \pm 8 $ V/m [147, 422, 606, 560] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
195 14 4 text Another study reviewed a pulsed electromagnetic field device (Medicur) that generates pulses of magnetic energy via a soft iron core treated with 62 trace elements. Pulses are selected at base frequen [147, 561, 606, 767] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
196 14 5 text In one study a pulsed electromagnetic field was administered to the whole body using a mat which produced a field from 1 Hz to 3000 Hz with a mean intensity of 40 μT (wave ranger professional, program [148, 768, 605, 951] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
197 14 6 text A fourth study measured the effect of a pulse generator that yields G50V in 50 Hz pulses, changing voltage at 3 ms intervals. This results in a maximal electrical gradient of 1 to 100 mV/cm as sensed [147, 952, 605, 1135] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
198 14 7 text Two other trials used a non-contact device that delivered three signals in a stepwise fashion, ranging from 5 Hz to 12 Hz frequency at 10 G to 25 G of magnetic energy (Trock 1993; Trock 1994). These s [147, 1136, 605, 1250] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
199 14 8 text In one study a commercially available TENS stimulator (Metron Digi-10s) was modified by a biomedical engineer to deliver pulsed electrical stimulation current parameters as follows: pulsed, asymmetric [147, 1250, 607, 1345] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
200 14 9 text [620, 206, 1080, 321] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
201 14 10 text Two other pulsed electrical stimulation studies used a pulsed electrical device to deliver a 100 Hz low-amplitude signal to the knee joint via skin surface electrodes. The patients were exposed for 6 [621, 321, 1081, 436] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
202 14 11 text All studies reported on patients with knee osteoarthritis and Trock 1994 also included patients with cervical osteoarthritis, with their results reported separately. The main outcome measures related [620, 438, 1082, 807] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
203 14 12 paragraph_title Excluded studies [621, 841, 771, 863] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Excluded studies"] subsection_heading 0.6 body_zone body_like short_fragment True True
204 14 13 text We excluded nine RCTs with a shorter duration than four weeks since this time frame may be too short to assess harms and benefits based on biological plausibility (Alcidi 2007; Ay 2009; Battisti 2004; [620, 869, 1082, 1215] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
205 14 14 paragraph_title Risk of bias in included studies [621, 1240, 912, 1263] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Risk of bias in included studies"] subsection_heading 0.6 body_zone heading_like none True True
206 14 15 text Two review authors (SL, BY) assessed risk of bias independently. Differences were resolved by consensus with a third review author (DZ). [620, 1273, 1080, 1343] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
207 14 16 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1391, 709, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
208 14 17 number 12 [1059, 1391, 1080, 1410] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
209 15 0 text The overall assessment of the methodological quality of the trials in this review was as follows: we judged seven studies (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Pipitone 2001; Trock 19 [147, 162, 606, 300] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
210 15 1 reference_content Nine of the included studies met the allocation concealment criterion (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Pipitone 2001; Thamsborg 2005; Trock 1993; Trock 1994). [147, 301, 606, 369] body_paragraph 0.85 ["reference content label: Nine of the included studies met the allocation concealment "] reference_item 0.85 body_like none True True
211 15 2 text Seven trials (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Pipitone 2001; Trock 1993; Zizic 1995) had appropriate, well-described placebo treatments and we assessed them as low risk of bias f [148, 370, 606, 439] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
212 15 3 text [622, 162, 797, 184] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
213 15 4 text We assessed seven studies (Fary 2011; Garland 2007; Nelson 2013; Nicolakis 2002; Thamsborg 2005; Trock 1994; Zizic 1995) as low risk of bias for incomplete outcome data; six trials reported loss to fo [622, 186, 1080, 345] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
214 15 5 text No information on selective outcome reporting was found in any study. [621, 347, 1079, 391] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
215 15 6 text See the 'Risk of bias' graph (Figure 2) and 'Risk of bias' summary (Figure 3). [621, 392, 1078, 439] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
216 15 7 figure_title Figure 2. 'Risk of bias' graph: review authors' judgements about each risk of bias item presented as percentages across all included studies. [201, 475, 1044, 524] figure_caption 0.92 ["figure_title label: Figure 2. 'Risk of bias' graph: review authors' judgements a"] figure_caption 0.92 display_zone legend_like figure_number True True
217 15 8 chart [199, 540, 1032, 824] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
218 15 9 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
219 15 10 number 13 [1059, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
220 16 0 figure_title Figure 3. 'Risk of bias' summary: review authors' judgements about each risk of bias item for each included study. [166, 160, 1079, 205] figure_caption_candidate 0.92 ["figure_title label: Figure 3. 'Risk of bias' summary: review authors' judgements"] figure_caption 0.92 display_zone legend_like figure_number False False
221 16 1 chart [383, 222, 850, 1255] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
222 16 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
223 16 3 number 14 [1059, 1392, 1080, 1410] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
224 17 0 paragraph_title Effects of interventions [148, 199, 372, 223] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Effects of interventions"] subsection_heading 0.6 body_zone heading_like none True True
225 17 1 text See: Summary of findings for the main comparison Electromagnetic field treatment compared to placebo for the treatment of osteoarthritis [146, 232, 606, 300] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
226 17 2 text In the nine controlled trials included in the analysis, a total of 636 participants were randomised: 327 participants to electromagnetic field treatment and 309 to a placebo device. The pulsed electro [146, 302, 607, 648] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
227 17 3 paragraph_title Pain [147, 755, 190, 775] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Pain"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
228 17 4 text Electromagnetic field treatment versus placebo for osteoarthritis [147, 658, 585, 703] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
229 17 5 text The combined results from the six included studies of electromagnetic field treatment which measured pain as an outcome (Fary 2011; Garland 2007; Nelson 2013; Trock 1993; Trock 1994; Zizic 1995) showe [146, 782, 606, 992] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
230 17 6 paragraph_title Physical function [148, 1034, 281, 1056] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Physical function"] subsection_heading 0.6 body_zone body_like short_fragment True True
231 17 7 text Three studies including 107 patients in the electromagnetic field treatment group and 90 patients in the placebo group measured function as an outcome (Fary 2011; Garland 2007; Pipitone 2001). Improve [146, 1062, 607, 1224] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
232 17 8 paragraph_title Health-related quality of life measure [147, 1268, 434, 1289] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Health-related quality of life measure"] subsection_heading 0.6 body_zone body_like none True True
233 17 9 text Two studies including 68 patients in the electromagnetic field treatment group and 71 patients in the placebo group measured quality of life as an outcome (Fary 2011). Improvement in quality of life w [146, 1296, 606, 1345] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
234 17 10 text [620, 206, 1081, 322] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
235 17 11 paragraph_title Radiographic joint structure changes [621, 367, 905, 389] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Radiographic joint structure changes"] subsection_heading 0.6 body_zone body_like none True True
236 17 12 text Only two studies (Thamsborg 2005; Trock 1993) mentioned radiographic joint structure change but no data were available. [620, 395, 1079, 444] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
237 17 13 paragraph_title Number of patients experiencing any adverse event [621, 487, 1015, 510] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Number of patients experiencing any adverse event"] subsection_heading 0.6 body_zone body_like none True True
238 17 14 text Adverse events were presented in four studies with 156 participants in the intervention group and 132 participants in the control group (Garland 2007; Pipitone 2001; Thamsborg 2005; Zizic 1995), altho [620, 516, 1081, 702] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
239 17 15 paragraph_title Patients who withdrew because of adverse events [621, 745, 999, 767] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Patients who withdrew because of adverse events"] subsection_heading 0.6 body_zone body_like none True True
240 17 16 text Specific reasons for withdrawals were unrelated to the therapy except in the case of adverse skin reactions which were encountered in Zizic 1995 and occurred in patients receiving both placebo and act [620, 774, 1081, 938] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
241 17 17 paragraph_title Patients experiencing any serious adverse event [621, 982, 987, 1003] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Patients experiencing any serious adverse event"] subsection_heading 0.6 body_zone body_like none True True
242 17 18 text No study reported any serious adverse events. [621, 1010, 945, 1033] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
243 17 19 paragraph_title Subgroup analyses [622, 1078, 768, 1100] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Subgroup analyses"] subsection_heading 0.6 body_zone body_like short_fragment True True
244 17 20 text We did not conduct the pre-planned subgroup analyses of the most effective means of delivering therapy due to the small number of trials and insufficient data. [620, 1107, 1081, 1177] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
245 17 21 paragraph_title Sensitivity analyses [621, 1221, 773, 1243] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Sensitivity analyses"] subsection_heading 0.6 body_zone body_like none True True
246 17 22 text We undertook sensitivity analyses to explore the impact of studies with poor ratings for concealment of allocation, blinding of outcome assessors and extent of drop-out and there was no change in the [620, 1250, 1081, 1344] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
247 17 23 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
248 17 24 number 15 [1059, 1391, 1080, 1410] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
249 18 0 header DISCUSSION [148, 160, 338, 182] noise 0.9 ["header label"] noise 0.9 body_zone heading_like canonical_section_name False False
250 18 1 paragraph_title Summary of main results [147, 234, 393, 257] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Summary of main results"] subsection_heading 0.6 body_zone heading_like none True True
251 18 2 text Osteoarthritis is the most common of the rheumatic diseases. With an estimated 40,000 new cases of osteoarthritis diagnosed each year, it is the third leading cause of life-years lost due to disabilit [146, 266, 606, 474] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
252 18 3 text Osteoarthritis results from a failure of chondrocytes within the joint to synthesise a good-quality matrix and to maintain a balance between synthesis and degradation of the extracellular matrix. The [147, 474, 606, 934] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
253 18 4 text All of the studies' participants had osteoarthritis of one or both knees, or cervical osteoarthritis, diagnosed by clinical symptoms and radiographic evidence, and the osteoarthritis was painful despi [147, 934, 606, 1025] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
254 18 5 text The protocols for pulsed electrical stimulation or pulsed electromagnetic field device setting and application varied widely between studies, as did the outcome measures. Some pulsed electrical stimul [147, 1026, 606, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
255 18 6 text [620, 161, 1081, 344] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
256 18 7 text Pain relief was measured using visual analogue scales (VAS). We pooled this outcome from six trials and found a significant difference between the electromagnetic field and placebo-treated groups (Far [620, 346, 1081, 552] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
257 18 8 text The improvement in physical function in patients with knee osteoarthritis treated with pulsed electromagnetic fields was not statistically significant (Fary 2011; Garland 2007; Pipitone 2001). There w [621, 553, 1081, 781] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
258 18 9 text Quality of life was not statistically significantly different between the treatment and placebo groups (Fary 2011; Pipitone 2001). This might be explained by the small sample sizes of the included stu [621, 782, 1080, 920] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
259 18 10 text There were no life-threatening events reported among participants exposed to electromagnetic fields. [620, 921, 1080, 968] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
260 18 11 paragraph_title Overall completeness and applicability of evidence [620, 1014, 1014, 1062] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Overall completeness and applicability of evidence"] subsection_heading 0.6 body_zone heading_like none True True
261 18 12 text A comprehensive search of the literature revealed a number of studies of electromagnetic field interventions for osteoarthritis. Although the studies presented differences between placebo and active t [620, 1071, 1081, 1302] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
262 18 13 text In summary, electromagnetic field treatment has a moderate benefit for patients' pain relief. There is inconclusive evidence that electromagnetic field treatment improves physical function, qual- [620, 1302, 1081, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
263 18 14 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [147, 1391, 710, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
264 18 15 number 16 [1059, 1392, 1080, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
265 19 0 text ity of life or radiographic joint structure. No serious adverse effects of electromagnetic field treatment were reported in the included trials. This might be because of the relative safety of electro [147, 161, 607, 370] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
266 19 1 paragraph_title Quality of the evidence [148, 418, 372, 442] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Quality of the evidence"] subsection_heading 0.6 body_zone heading_like none True True
267 19 2 text The quality of the evidence of all included trials was moderate or low. Six trials described generation of allocation sequence or concealment of allocation, or reported whether primary outcomes were s [147, 453, 606, 616] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
268 19 3 paragraph_title Agreements and disagreements with other studies or reviews Potential biases in the review process [146, 663, 556, 978] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Agreements and disagreements with other studies or reviews P"] subsection_heading 0.6 body_zone heading_like none True True
269 19 4 footer [147, 663, 503, 687] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
270 19 5 text We believe that we identified all relevant studies. We devised a thorough search strategy and searched all major databases for relevant studies, and we applied no language restrictions. Two review aut [147, 697, 607, 884] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
271 19 6 text A systematic review has assessed the effectiveness of pulsed electromagnetic fields compared with placebo in the management of osteoarthritis of the knee (Vavken 2009). Nine studies, including 483 pat [146, 987, 608, 1058] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
272 19 7 text [620, 161, 1081, 301] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
273 19 8 paragraph_title AUTHORS' CONCLUSIONS [621, 373, 1012, 397] section_heading 0.6 ["unnumbered paragraph_title, inferred level section_heading: AUTHORS' CONCLUSIONS"] section_heading 0.6 body_zone heading_like none True True
274 19 9 paragraph_title Implications for practice [621, 420, 859, 445] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Implications for practice"] subsection_heading 0.6 body_zone heading_like none True True
275 19 10 text The current, limited evidence shows a moderate clinically important benefit of electromagnetic field treatment for the relief of pain in the treatment of knee or cervical osteoarthritis. [620, 453, 1080, 524] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
276 19 11 paragraph_title Implications for research [621, 544, 863, 568] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Implications for research"] subsection_heading 0.6 body_zone heading_like none True True
277 19 12 text More trials are needed in this field. New trials should compare different treatments and provide an accurate description of the length of treatment, dosage and the frequency of the applications. Large [621, 578, 1081, 718] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
278 19 13 paragraph_title ACKNOWLEDGEMENTS [621, 790, 961, 814] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: ACKNOWLEDGEMENTS"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
279 19 14 text The authors wish to thank Louise Falzon (CMSG Trial Search Co-ordinator) for developing the search strategy. Thanks also to the Cochrane Musculoskeletal Group (CMSG) editorial team and Elizabeth Tanjo [620, 827, 1081, 1058] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
280 19 15 paragraph_title REFERENCES [527, 1120, 702, 1142] reference_heading 0.9 ["references heading: REFERENCES"] reference_heading 0.9 reference_zone unknown_like short_fragment True True
281 19 16 paragraph_title References to studies included in this review [148, 1157, 518, 1180] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: References to studies included in this review"] subsection_heading 0.6 body_zone heading_like none True True
282 19 17 text Fary RE, Carroll GJ, Briffa TG, Briffa NK. The effectiveness of pulsed electrical stimulation in the management of osteoarthritis of the knee: results of a double-blind, randomized, placebo-controlled [151, 1217, 558, 1329] body_paragraph 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
283 19 18 text Garland 2007 {published data only} Garland D, Holt P, Harrington JT, Caldwell J, Zizic T, [148, 1337, 535, 1381] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
284 19 19 text Cholewczynski J. A 3-month, randomized, double-blind, placebo-controlled study to evaluate the safety and efficacy of a highly optimized, capacitively coupled, pulsed electrical stimulator in patients [654, 1159, 1032, 1264] body_paragraph 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
285 19 20 text Nelson 2013 {published data only} Nelson FR, Zvirbulis R, Pilla AA. Non-invasive electromagnetic field therapy produces rapid and substantial pain reduction in early knee osteoarthritis: a randomized [623, 1275, 1034, 1381] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
286 19 21 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1391, 710, 1429] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
287 19 22 number 17 [1060, 1392, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
288 20 0 text 33(8):2169–73. [182, 163, 286, 183] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
289 20 1 reference_content Nicolakis 2002 {published data only} Nicolakis P, Kollmitzer J, Crevenna R, Bittner C, Erdogmus CB, Nicolakis J. Pulsed magnetic field therapy for osteoarthritis of the knee - a double-blind sham-cont [151, 189, 557, 312] reference_item 0.85 ["reference content label: Nicolakis 2002 {published data only}\nNicolakis P, Kollmitzer"] reference_item 0.85 reference_zone unknown_like none True True
290 20 2 reference_content Pipitone 2001 {published data only} Pipitone N, Scott DL. Magnetic pulse treatment for knee osteoarthritis: a randomised, double-blind, placebo-controlled study. Current Medical Research and Opinion 2 [151, 319, 546, 423] reference_item 0.85 ["reference content label: Pipitone 2001 {published data only}\nPipitone N, Scott DL. Ma"] reference_item 0.85 reference_zone unknown_like none True True
291 20 3 reference_content Thamsborg 2005 {published data only} Thamsborg G, Florescu A, Oturai P, Fallentin E, Tritaris K, Dissing S. Treatment of knee osteoarthritis with pulsed electromagnetic fields: a randomized, double-bl [151, 430, 554, 555] reference_item 0.85 ["reference content label: Thamsborg 2005 {published data only}\nThamsborg G, Florescu A"] reference_item 0.85 reference_zone unknown_like none True True
292 20 4 reference_content Trock 1993 {published data only} Trock DH, Bollet AJ, Dyer RH Jr, Fielding LP, Miner WK, Markoll R. A double-blind trial of the clinical effects of pulsed electromagnetic fields in osteoarthritis. Jou [150, 562, 555, 666] reference_item 0.85 ["reference content label: Trock 1993 {published data only}\nTrock DH, Bollet AJ, Dyer R"] reference_item 0.85 reference_zone unknown_like none True True
293 20 5 reference_content Trock 1994 {published data only} Trock DH, Bollet AJ, Markoll R. The effect of pulsed electromagnetic fields in the treatment of osteoarthritis of the knee and cervical spine. Report of randomized, do [150, 674, 551, 798] reference_item 0.85 ["reference content label: Trock 1994 {published data only}\nTrock DH, Bollet AJ, Markol"] reference_item 0.85 reference_zone unknown_like none True True
294 20 6 reference_content Zizic 1995 {published data only} Zizic TM, Hoffman KC, Holt PA, Hungerford DS, O'Dell JR, Jacobs MA, et al. The treatment of osteoarthritis of the knee with pulsed electrical stimulation. Journal of R [150, 805, 554, 910] reference_item 0.85 ["reference content label: Zizic 1995 {published data only}\nZizic TM, Hoffman KC, Holt "] reference_item 0.85 reference_zone unknown_like none True True
295 20 7 paragraph_title References to studies excluded from this review [149, 924, 541, 947] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: References to studies excluded from this review"] subsection_heading 0.6 tail_nonref_hold_zone heading_like none False True
296 20 8 reference_content Alcidi 2007 {published data only} Alcidi L, Beneforti E, Maresca M, Santosuosso U, Zoppi M. Low power radiofrequency electromagnetic radiation for the treatment of pain due to osteoarthritis of the kn [150, 963, 547, 1067] reference_item 0.85 ["reference content label: Alcidi 2007 {published data only}\nAlcidi L, Beneforti E, Mar"] reference_item 0.85 reference_zone unknown_like none True True
297 20 9 reference_content Ay 2009 {published data only} Ay S, Evcik D. The effects of pulsed electromagnetic fields in the treatment of knee osteoarthritis: a randomized, placebo-controlled trial. Rheumatology International 20 [151, 1073, 549, 1177] reference_item 0.85 ["reference content label: Ay 2009 {published data only}\nAy S, Evcik D. The effects of "] reference_item 0.85 reference_zone unknown_like none True True
298 20 10 reference_content Battisti 2004 {published data only} Battisti E, Piazza E, Rigato M, Nuti R, Bianciardi L, Scribano A, et al. Efficacy and safety of a musically modulated electromagnetic field (TAMMEF) in patients aff [151, 1184, 546, 1309] reference_item 0.85 ["reference content label: Battisti 2004 {published data only}\nBattisti E, Piazza E, Ri"] reference_item 0.85 reference_zone unknown_like none True True
299 20 11 reference_content Danao-Camara 2001 {published data only} Danao-Camara T, Tabrah FL. The use of pulsed electromagnetic fields (PEMF) in osteoarthritis (OA) of the [150, 1317, 557, 1380] reference_item 0.85 ["reference content label: Danao-Camara 2001 {published data only}\nDanao-Camara T, Tabr"] reference_item 0.85 reference_zone unknown_like none True True
300 20 12 reference_content knee preliminary report. Hawaii Medical Journal 2001;60(11):288,300. [655, 163, 1022, 204] reference_item 0.85 ["reference content label: knee preliminary report. Hawaii Medical Journal 2001;60(11):"] reference_item 0.85 reference_zone unknown_like none True True
301 20 13 reference_content Fischer 2005 {published data only} Fischer G, Pelka RB, Barovic J. Adjuvant treatment of osteoarthritis of the knee with weak pulsing magnetic fields. Results of a prospective, placebo controlled tria [623, 211, 1027, 397] reference_item 0.85 ["reference content label: Fischer 2005 {published data only}\nFischer G, Pelka RB, Baro"] reference_item 0.85 reference_zone unknown_like none True True
302 20 14 reference_content Fischer 2006 {published data only} Fischer G, Pelka RB, Barovic J. Adjuvant treatment of osteoarthritis of the knee with weak pulsing magnetic fields - results of a prospective, placebo controlled tri [623, 405, 1028, 571] reference_item 0.85 ["reference content label: Fischer 2006 {published data only}\nFischer G, Pelka RB, Baro"] reference_item 0.85 reference_zone unknown_like none True True
303 20 15 text Hinman 2002 {published data only} Hinman MR, Ford J, Heyl H. Effects of static magnets on chronic knee pain and physical function: a double-blind study. Alternative Therapies in Health and Medicine 20 [623, 579, 1026, 681] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
304 20 16 text Jack 2006 {published data only} Farr J, Mont MA, Garland D, Caldwell JR, Zizic TM. Pulsed electrical stimulation in patients with osteoarthritis of the knee: follow up in 288 patients who had failed n [622, 689, 1027, 812] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
305 20 17 reference_content Jacobson 2001 {published data only} Jacobson JI, Gorman R, Yamanashi WS, Saxena BB, Clayton L. Low-amplitude, extremely low frequency magnetic fields for the treatment of osteoarthritic knees: a doubl [622, 819, 1025, 943] reference_item 0.85 ["reference content label: Jacobson 2001 {published data only}\nJacobson JI, Gorman R, Y"] reference_item 0.85 reference_zone unknown_like none True True
306 20 18 reference_content Kulcu 2009 {published data only} Kulcu DG, Guslen G, Altunok E. Short-term efficacy of pulsed electromagnetic field therapy on pain and functional level in knee osteoarthritis: a randomized controlled [624, 950, 1029, 1054] reference_item 0.85 ["reference content label: Kulcu 2009 {published data only}\nKulcu DG, Guslen G, Altunok"] reference_item 0.85 reference_zone unknown_like none True True
307 20 19 reference_content Liu 2004 {published data only} Liu WC, Liu Y, Zhang J. Effect of electromagnetic field on treating knee osteoarthritis. Proceedings of Clinical Medicine Journal 2004;13(4):281–2. [624, 1061, 1029, 1144] reference_item 0.85 ["reference content label: Liu 2004 {published data only}\nLiu WC, Liu Y, Zhang J. Effec"] reference_item 0.85 reference_zone unknown_like none True True
308 20 20 reference_content Ozgüçlü 2010 {published data only} Ozgüçlü E, Cetin A, Cetin M, Calp E. Additional effect of pulsed electromagnetic field therapy on knee osteoarthritis treatment: a randomized, placebo-controlled stu [624, 1150, 1033, 1256] reference_item 0.85 ["reference content label: Ozg\u00fc\u00e7l\u00fc 2010 {published data only}\nOzg\u00fc\u00e7l\u00fc E, Cetin A, Cetin"] reference_item 0.85 reference_zone unknown_like none True True
309 20 21 reference_content Pavlović 2012 {published data only} Pavlović: AS, Djurasić LM. The effect of low frequency pulsing electromagnetic field in treatment of patients with knee joint osteoarthritis. Acta Chirurgica Iugosl [623, 1271, 1026, 1379] reference_item 0.85 ["reference content label: Pavlovi\u0107 2012 {published data only}\nPavlovi\u0107: AS, Djurasi\u0107 L"] reference_item 0.85 reference_zone unknown_like none True True
310 20 22 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1391, 711, 1429] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
311 20 23 number 18 [1060, 1392, 1080, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
312 21 0 paragraph_title Rigato 2002 {published data only} [149, 163, 384, 184] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Rigato 2002 {published data only}"] subsection_heading 0.6 body_zone unknown_like none True True
313 21 1 text Rigato M, Battisti E, Fortunato M, Giordano N. Comparison between the analgesic and therapeutic effects of a musically modulated electromagnetic field (TAMMEF) and those of a 100 Hz electromagnetic fi [166, 185, 557, 333] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
314 21 2 paragraph_title Sutbeyaz 2006 {published data only} [149, 340, 399, 361] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Sutbeyaz 2006 {published data only}"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like none False True
315 21 3 text Sutbeyaz 2006 {published data only} Sutbeyaz ST, Sezer N, Koseoglu BF. The effect of pulsed electromagnetic fields in the treatment of cervical osteoarthritis: a randomized, double-blind, sham-control [149, 347, 557, 445] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
316 21 4 paragraph_title Tomruk 2007 {published data only} [150, 455, 394, 474] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Tomruk 2007 {published data only}"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like none False True
317 21 5 text Tomruk S, Sezer N, Albayrak N, Koseoglu F. Effectiveness of low frequency pulsed electromagnetic fields in the treatment of knee osteoarthritis: randomized, controlled trial. [Turkish]. Journal of Rhe [151, 468, 550, 579] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
318 21 6 paragraph_title Additional references Aaron 1989 [149, 594, 329, 656] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Additional references Aaron 1989"] backmatter_boundary_candidate 0.5 heading_like none True True
319 21 7 footer [149, 636, 234, 656] noise 0.9 ["footer label"] noise 0.9 unknown_like empty False False
320 21 8 text Aaron RK, Ciombor DM, Jolly G. Stimulation of experimental endochondral ossification by low-energy pulsing electromagnetic fields. Journal of Bone and Mineral Research 1989;4(2):227–33. [179, 658, 555, 741] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
321 21 9 paragraph_title Aaron 1993 [149, 749, 233, 768] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Aaron 1993"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
322 21 10 text Aaron RK, Ciombor DM. Therapeutic effects of electromagnetic fields in the stimulation of connective tissue repair. Journal of Cellular Biochemistry 1993;52:42–6. [175, 769, 558, 834] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
323 21 11 paragraph_title Altman 1986 [149, 841, 243, 861] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Altman 1986"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
324 21 12 text Altman R, Asch E, Bloch D, Bole G, Borenstein D, Brandt K, et al. Development of criteria for the classification and reporting of osteoarthritis. Classification of osteoarthritis of the knee. Diagnost [178, 864, 559, 988] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
325 21 13 paragraph_title Altman 1997 [150, 997, 241, 1015] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Altman 1997"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
326 21 14 text Altman RD. The syndrome of osteoarthritis. Journal of Rheumatology 1997;24(4):766–7. [176, 1016, 538, 1060] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
327 21 15 paragraph_title Baker 1974 [150, 1068, 232, 1088] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Baker 1974"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
328 21 16 text Baker B, Spadaro J, Marino A, Becker RO. Electrical stimulation of articular cartilage regeneration. Annals of the New York Academy of Sciences 1974;238:491–9. [162, 1084, 555, 1152] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
329 21 17 paragraph_title Bartels 2007 [150, 1161, 238, 1181] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Bartels 2007"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
330 21 18 text Bartels EM, Lund H, Hagen KB, Dagfinrud H, Christensen R, Danneskiold-Samsøe B. Aquatic exercise for the treatment of knee and hip osteoarthritis. Cochrane Database of Systematic Reviews 2007, Issue 4 [159, 1182, 559, 1287] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
331 21 19 text Bassett 1974 Bassett CA, Pawluk RJ, Pilla AA. Augmentation of bone repair by inductively coupled electromagnetic fields. Science 1974;184(4136):575–7. [151, 1298, 561, 1379] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
332 21 20 paragraph_title Bellamy 1988 [624, 163, 722, 182] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Bellamy 1988"] subsection_heading 0.6 body_zone unknown_like short_fragment True True
333 21 21 text Bellamy N, Buchanan WW, Goldsmith CH, Campbell J, Stitt LW. Validation study of WOMAC: a health status instrument for measuring clinically important patient relevant outcomes to antirheumatic drug the [631, 184, 1021, 310] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
334 21 22 text Bellamy 1997 Bellamy N, Kirwan J, Boers M, Brooks P, Strand V, Tugwell P, et al. Recommendations for a core set of outcome measures for future phase III clinical trials in knee, hip, and hand osteoart [625, 322, 1032, 443] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
335 21 23 paragraph_title Bellamy 2006a [624, 450, 728, 470] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Bellamy 2006a"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
336 21 24 text Bellamy N, Campbell J, Robinson V, Gee T, Bourne R, Wells G. Intraarticular corticosteroid for treatment of osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2006, Issue 2. [DOI: 10. [624, 462, 1000, 575] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
337 21 25 paragraph_title Bellamy 2006b [624, 583, 729, 603] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Bellamy 2006b"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
338 21 26 text Bellamy N, Campbell J, Welch V, Gee TL, Bourne R, Wells GA. Visco supplementation for the treatment of osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2006, Issue 2. [DOI: 10.1002/ [628, 598, 1004, 709] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
339 21 27 paragraph_title Blower 1996 [624, 717, 715, 736] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Blower 1996"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
340 21 28 text Blower AL. Consideration for non-steroidal anti-inflammatory drug therapy: safety. Scandinavian Journal of Rheumatology 1996;25 (Suppl 105):13–26. [627, 732, 1033, 802] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
341 21 29 paragraph_title Brosseau 2003 [624, 807, 725, 825] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Brosseau 2003"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
342 21 30 text Brosseau L, Yonge KA, Welch V, Marchand S, Judd M, Wells GA, et al. Thermotherapy for treatment of osteoarthritis. Cochrane Database of Systematic Reviews 2003, Issue 4. [DOI: 10.1002/14651858.CD00452 [647, 826, 1030, 912] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
343 21 31 paragraph_title Brouwer 2005 [624, 916, 723, 935] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Brouwer 2005"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
344 21 32 text Brouwer RW, Jakma TS, Verhagen AP, Verhaar JA, Bierma-Zeinstra SM. Braces and orthoses for treating osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2005, Issue 1. [DOI: 10.1002/146 [652, 937, 1027, 1021] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
345 21 33 paragraph_title Carlsson 1983 [624, 1028, 723, 1047] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Carlsson 1983"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
346 21 34 text Carlsson AM. Assessment of chronic pain. I. Aspects of the reliability and validity of the visual analogue scale. Pain 1983;16(1):87–101. [629, 1045, 1030, 1111] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
347 21 35 text Cates 2004 Cates C. Visual Rx NNT Calculator version 2.0. EBM website. Available from: http://www.nntonline.net/ 2004. [623, 1117, 1021, 1180] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
348 21 36 text Ciombor 2001 Ciombor DM, Aaron RK, Simon B. Modification of osteoarthritis by electromagnetic field exposure. Arthritis and Rheumatism 2001;44S:S41. [623, 1192, 1029, 1269] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
349 21 37 paragraph_title Darendeliler 1997 [624, 1276, 750, 1294] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Darendeliler 1997"] subsection_heading 0.6 tail_nonref_hold_zone unknown_like short_fragment False True
350 21 38 text Darendeliler MA, Darendeliler A, Sinclair PM. Effects of static magnetic and pulsed electromagnetic fields on bone healing. International Journal of Adult Orthodontics and Orthognathic Surgery 1997;12 [637, 1295, 1020, 1380] reference_item 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
351 21 39 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1391, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
352 21 40 number 19 [1060, 1392, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
353 22 0 reference_content De Angelis C, Drazen JM, Frizelle FA, Haug C, Hoey J, Horton R, et al. Clinical trial registration: a statement from the International Committee of Medical Journal Editors. Annals of Internal Medicine [150, 176, 553, 270] reference_item 0.85 ["reference content label: De Angelis C, Drazen JM, Frizelle FA, Haug C, Hoey J, Horton"] reference_item 0.85 reference_zone unknown_like none True True
354 22 1 reference_content De Mattei 2001 De Mattei M, Caruso A, Pezzetti F, Pellati A, Stabellini G, Sollazzo V, et al. Effects of pulsed electromagnetic fields on human articular chondrocyte proliferation. Connective Tissue R [150, 276, 547, 378] reference_item 0.85 ["reference content label: De Mattei 2001\nDe Mattei M, Caruso A, Pezzetti F, Pellati A,"] reference_item 0.85 reference_zone unknown_like none True True
355 22 2 reference_content De Mattei 2003 De Mattei M, Pasello M, Pellati A, Stabellini G, Massari L, Gemmati D, et al. Effects of electromagnetic fields on proteoglycan metabolism of bovine articular cartilage explants. Connec [150, 383, 540, 489] reference_item 0.85 ["reference content label: De Mattei 2003\nDe Mattei M, Pasello M, Pellati A, Stabellini"] reference_item 0.85 reference_zone unknown_like none True True
356 22 3 reference_content De Mattei 2004 De Mattei M, Pellati A, Pasello M, Ongaro A, Setti S, Massari L, et al. Effects of physical stimulation with electromagnetic field and insulin growth factor-I treatment on proteoglycan [150, 498, 552, 619] reference_item 0.85 ["reference content label: De Mattei 2004\nDe Mattei M, Pellati A, Pasello M, Ongaro A, "] reference_item 0.85 reference_zone unknown_like none True True
357 22 4 reference_content Fidelix 2006 Fidelix TS, Soares BG, Trevisani VF. Diacerein for osteoarthritis. Cochrane Database of Systematic Reviews 2006, Issue 1. [DOI: 10.1002/14651858.CD005117.pub2] [149, 627, 556, 711] reference_item 0.85 ["reference content label: Fidelix 2006\nFidelix TS, Soares BG, Trevisani VF. Diacerein "] reference_item 0.85 reference_zone unknown_like none True True
358 22 5 reference_content Fini 2005 Fini M, Giavaresi G, Carpi A, Nicolini A, Setti S, Giardino R. Effects of pulsed electromagnetic fields on articular hyaline cartilage: review of experimental and clinical studies. Biomedici [149, 716, 556, 821] reference_item 0.85 ["reference content label: Fini 2005\nFini M, Giavaresi G, Carpi A, Nicolini A, Setti S,"] reference_item 0.85 reference_zone unknown_like none True True
359 22 6 reference_content Fioravanti 2002 Fioravanti A, Nerucci F, Collodel G, Markoll R, Marcolongo R. Biochemical and morphological study of human articular chondrocytes cultivated in the presence of pulsed signal therapy. A [149, 829, 557, 951] reference_item 0.85 ["reference content label: Fioravanti 2002\nFioravanti A, Nerucci F, Collodel G, Markoll"] reference_item 0.85 reference_zone unknown_like none True True
360 22 7 reference_content Fransen 2008 Fransen M, McConnell S. Exercise for osteoarthritis of the knee. Cochrane Database of Systematic Reviews 2008, Issue 4. [DOI: 10.1002/14651858.CD004376.pub2] [149, 955, 551, 1040] reference_item 0.85 ["reference content label: Fransen 2008\nFransen M, McConnell S. Exercise for osteoarthr"] reference_item 0.85 reference_zone unknown_like none True True
361 22 8 reference_content Fransen 2009 Fransen M, McConnell S, Hernandez-Molina G, Reichenbach S. Exercise for osteoarthritis of the hip. Cochrane Database of Systematic Reviews 2009, Issue 3. [DOI: 10.1002/14651858.CD007912] [150, 1047, 527, 1151] reference_item 0.85 ["reference content label: Fransen 2009\nFransen M, McConnell S, Hernandez-Molina G, Rei"] reference_item 0.85 reference_zone unknown_like none True True
362 22 9 reference_content Graziana 1990 Graziana A, Ranjeva R, Teissé J. External electric fields stimulate the electrogenic calcium/sodium exchange in plant protoplasts. Biochemistry 1990;29(36):8313–8. [150, 1156, 534, 1239] reference_item 0.85 ["reference content label: Graziana 1990\nGraziana A, Ranjeva R, Teiss\u00e9 J. External elec"] reference_item 0.85 reference_zone unknown_like none True True
363 22 10 reference_content Guyatt 2008 Guyatt G, Oxman AD, Vist GE, Kunz R, Falck-Ytter Y, Alonso-Coello P, et al. GRADE Working Group. GRADE: an emerging consensus on rating quality of evidence and strength of recommendations. [150, 1245, 553, 1369] reference_item 0.85 ["reference content label: Guyatt 2008\nGuyatt G, Oxman AD, Vist GE, Kunz R, Falck-Ytter"] reference_item 0.85 reference_zone unknown_like none True True
364 22 11 reference_content Hennekens 1987 Hennekens CH, Buring JE. Measures of Disease Frequency and Association. Boston: Little, Brown and Co., 1987. [623, 164, 1019, 226] reference_item 0.85 ["reference content label: Hennekens 1987\nHennekens CH, Buring JE. Measures of Disease "] reference_item 0.85 reference_zone unknown_like none True True
365 22 12 reference_content Higgins 2011 Higgins JPT, Green S (editors). Cochrane Handbook for Systematic Reviews of Interventions Version 5.1.0 [updated March 2011]. The Cochrane Collaboration, 2011. Available from www.cochrane [623, 231, 1003, 335] reference_item 0.85 ["reference content label: Higgins 2011\nHiggins JPT, Green S (editors). Cochrane Handbo"] reference_item 0.85 reference_zone unknown_like none True True
366 22 13 reference_content Hulme 2002 Hulme J, Robinson V, DeBie R, Wells G, Judd M, Tugwell P. Electromagnetic fields for the treatment of osteoarthritis. Cochrane Database of Systematic Reviews 2002, Issue 1. [DOI: 10.1002/14 [624, 342, 1027, 448] reference_item 0.85 ["reference content label: Hulme 2002\nHulme J, Robinson V, DeBie R, Wells G, Judd M, Tu"] reference_item 0.85 reference_zone unknown_like none True True
367 22 14 reference_content Laupattarakasem 2008 Laupattarakasem W, Laopaiboon M, Laupattarakasem P, Sumananont C. Arthroscopic debridement for knee osteoarthritis. Cochrane Database of Systematic Reviews 2008, Issue 1. [DOI: 10 [624, 453, 1030, 557] reference_item 0.85 ["reference content label: Laupattarakasem 2008\nLaupattarakasem W, Laopaiboon M, Laupat"] reference_item 0.85 reference_zone unknown_like none True True
368 22 15 reference_content Lee 1993 Lee RC, Canaday DJ, Doong H. Review of the biophysical basis for the clinical application of electric fields in soft-tissue repair. Journal of Burn Care Rehabilitation 1993;54(14):319–35. [623, 563, 1028, 666] reference_item 0.85 ["reference content label: Lee 1993\nLee RC, Canaday DJ, Doong H. Review of the biophysi"] reference_item 0.85 reference_zone unknown_like none True True
369 22 16 reference_content Lee 1997 Lee EW, Maffulli N, Li CK, Chan KM. Pulsed magnetic and electromagnetic fields in experimental achilles tendonitis in the rat: a prospective randomised study. Archives of Physical Medicine an [623, 673, 1031, 777] reference_item 0.85 ["reference content label: Lee 1997\nLee EW, Maffulli N, Li CK, Chan KM. Pulsed magnetic"] reference_item 0.85 reference_zone unknown_like none True True
370 22 17 reference_content Lequesne 1987 Lequesne MG, Mery C, Samson M, Gerard P. Indexes of severity for osteoarthritis of the hip and knee. Validation - value in comparison with other assessment tests. Scandinavian Journal of [623, 784, 1032, 907] reference_item 0.85 ["reference content label: Lequesne 1987\nLequesne MG, Mery C, Samson M, Gerard P. Index"] reference_item 0.85 reference_zone unknown_like none True True
371 22 18 reference_content Liu 1997 Liu H, Lees P, Abbott J, Bee JA. Pulsed electromagnetic fields preserve proteoglycan composition of extracellular matrix in embryonic chick cartilage. Biochimica et Biophysica Acta 1997;1336( [623, 911, 1032, 1015] reference_item 0.85 ["reference content label: Liu 1997\nLiu H, Lees P, Abbott J, Bee JA. Pulsed electromagn"] reference_item 0.85 reference_zone unknown_like none True True
372 22 19 reference_content March 2004 March LM, Bagga H. Epidemiology of osteoarthritis in Australia. Medical Journal of Australia 2004;180(5 Suppl):S1–10. [623, 1020, 1024, 1104] reference_item 0.85 ["reference content label: March 2004\nMarch LM, Bagga H. Epidemiology of osteoarthritis"] reference_item 0.85 reference_zone unknown_like none True True
373 22 20 reference_content Petitti 2000 Petitti DB. Meta-analysis, Decision analysis, and Cost-effectiveness Analysis: Method for Quantitative Synthesis in Medicine. Oxford: Oxford University Press, 2000. [624, 1107, 1015, 1191] reference_item 0.85 ["reference content label: Petitti 2000\nPetitti DB. Meta-analysis, Decision analysis, a"] reference_item 0.85 reference_zone unknown_like none True True
374 22 21 reference_content Pezzetti 1999 Pezzetti F, De Mattei M, Caruso A, Cadossi R, Zucchini P, Carinci F, et al. Effects of pulsed electromagnetic fields on human chondrocytes: an in vitro study. Calcified Tissue Internatio [623, 1199, 1026, 1301] reference_item 0.85 ["reference content label: Pezzetti 1999\nPezzetti F, De Mattei M, Caruso A, Cadossi R, "] reference_item 0.85 reference_zone unknown_like none True True
375 22 22 reference_content Pham 2003 Pham T, Van Der Heijde D, Lassere M, Altman RD, Anderson JJ, Bellamy N, et al. OMERACT-OARSI. [623, 1307, 998, 1371] reference_item 0.85 ["reference content label: Pham 2003\nPham T, Van Der Heijde D, Lassere M, Altman RD, An"] reference_item 0.85 reference_zone unknown_like none True True
376 22 23 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 711, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
377 22 24 number 20 [1058, 1392, 1080, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
378 23 0 reference_content Outcome variables for osteoarthritis clinical trials: the OMERACT-OARSI set of responder criteria. Journal of Rheumatology 2003;30(7):1648–54. [181, 163, 544, 226] reference_item 0.85 ["reference content label: Outcome variables for osteoarthritis clinical trials: the OM"] reference_item 0.85 reference_zone unknown_like none True True
379 23 1 reference_content RevMan 2012 The Nordic Cochrane Centre, The Cochrane Collaboration. Review Manager (RevMan). 5.1. Copenhagen: The Nordic Cochrane Centre, The Cochrane Collaboration, 2012. [150, 235, 557, 319] reference_item 0.85 ["reference content label: RevMan 2012\nThe Nordic Cochrane Centre, The Cochrane Collabo"] reference_item 0.85 reference_zone unknown_like none True True
380 23 2 reference_content Rodan 1978 Rodan GA, Bourret LA, Norton LA. DNA synthesis in cartilage cells is stimulated by oscillating electric fields. Science 1978;54(199):690–2. [149, 325, 534, 409] reference_item 0.85 ["reference content label: Rodan 1978\nRodan GA, Bourret LA, Norton LA. DNA synthesis in"] reference_item 0.85 reference_zone unknown_like none True True
381 23 3 reference_content Rutjes 2010 Rutjes AWS, Nüesch E, Sterchi R, Jüni P. Therapeutic ultrasound for osteoarthritis of the knee or hip. Cochrane Database of Systematic Reviews 2010, Issue 1. [DOI: 10.1002/14651858.CD00313 [150, 416, 544, 523] reference_item 0.85 ["reference content label: Rutjes 2010\nRutjes AWS, N\u00fcesch E, Sterchi R, J\u00fcni P. Therape"] reference_item 0.85 reference_zone unknown_like none True True
382 23 4 reference_content Shupak 2003 Shupak NM. Therapeutic uses of pulsed magnetic-field exposure: a review. The Radio Science Bulletin 2003;12(307):9–32. [148, 531, 536, 614] reference_item 0.85 ["reference content label: Shupak 2003\nShupak NM. Therapeutic uses of pulsed magnetic-f"] reference_item 0.85 reference_zone unknown_like none True True
383 23 5 reference_content Singh 2013a Singh JA, Kundukulam JA, Kalore NV. Total hip replacement surgery versus conservative care for hip osteoarthritis and other non-traumatic diseases. Cochrane Database of Systematic Reviews [149, 624, 544, 749] reference_item 0.85 ["reference content label: Singh 2013a\nSingh JA, Kundukulam JA, Kalore NV. Total hip re"] reference_item 0.85 reference_zone unknown_like none True True
384 23 6 reference_content Singh 2013b Singh JA, Dohm M, Borkhoff C. Total joint replacement surgery versus conservative care for knee osteoarthritis [149, 756, 545, 820] reference_item 0.85 ["reference content label: Singh 2013b\nSingh JA, Dohm M, Borkhoff C. Total joint replac"] reference_item 0.85 reference_zone unknown_like none True True
385 23 7 reference_content and other non-traumatic diseases. Cochrane Database of Systematic Reviews 2013, Issue 9. [DOI: 10.1002/14651858.CD010732] [655, 164, 997, 225] reference_item 0.85 ["reference content label: and other non-traumatic diseases. Cochrane Database of Syste"] reference_item 0.85 reference_zone unknown_like none True True
386 23 8 reference_content Towheed 2004 Towheed T, Judd M, Hochberg M, Wells G. Acetaminophen for osteoarthritis. Cochrane Database of Systematic Reviews 2004, Issue 3. [DOI: 10.1002/14651858.CD004257.pub2] [624, 231, 998, 336] reference_item 0.85 ["reference content label: Towheed 2004\nTowheed T, Judd M, Hochberg M, Wells G.\nAcetami"] reference_item 0.85 reference_zone unknown_like none True True
387 23 9 reference_content Towheed 2005 Towheed TE, Maxwell L, Anastassiades TP, Shea B, Houpt J, Robinson V, et al. Glucosamine therapy for treating osteoarthritis. Cochrane Database of Systematic Reviews 2005, Issue 2. [DOI: [623, 342, 1030, 448] reference_item 0.85 ["reference content label: Towheed 2005\nTowheed TE, Maxwell L, Anastassiades TP, Shea B"] reference_item 0.85 reference_zone unknown_like none True True
388 23 10 reference_content Trock 2000 Trock DH. Electromagnetic fields and magnets. Investigational treatment for musculoskeletal disorders. Rheumatic Diseases Clinics of North America 2000;26(1):51–62. [623, 454, 1012, 558] reference_item 0.85 ["reference content label: Trock 2000\nTrock DH. Electromagnetic fields and magnets.\nInv"] reference_item 0.85 reference_zone unknown_like none True True
389 23 11 reference_content Vavken 2009 Vavken P, Arrich F, Schuhfried O, Dorotka R. Effectiveness of pulsed electromagnetic field therapy in the management of osteoarthritis of the knee: a meta-analysis of randomized controlled [622, 562, 1029, 687] reference_item 0.85 ["reference content label: Vavken 2009\nVavken P, Arrich F, Schuhfried O, Dorotka R. Eff"] reference_item 0.85 reference_zone unknown_like none True True
390 23 12 reference_content Verhagen 2007 Verhagen AP, Bierma-Zeinstra SM, Boers M, Cardoso JR, Lambeck J, de Bie R, et al. Balneotherapy for osteoarthritis. Cochrane Database of Systematic Reviews 2007, Issue 4. [DOI: 10.1002/1 [624, 694, 1024, 799] reference_item 0.85 ["reference content label: Verhagen 2007\nVerhagen AP, Bierma-Zeinstra SM, Boers M, Card"] reference_item 0.85 reference_zone unknown_like none True True
391 23 13 reference_content $ ^{*} $ Indicates the major publication for the study [624, 799, 902, 819] reference_item 0.85 ["reference content label: $ ^{*} $ Indicates the major publication for the study"] reference_item 0.85 reference_zone unknown_like affiliation_marker True True
392 23 14 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 709, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
393 23 15 number 21 [1057, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
394 24 0 paragraph_title CHARACTERISTICS OF STUDIES [148, 160, 626, 183] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: CHARACTERISTICS OF STUDIES"] section_heading 0.6 heading_like none False True
395 24 1 paragraph_title Characteristics of included studies [ordered by study ID] [148, 232, 644, 256] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Characteristics of included studies [ordered by study ID]"] subsection_heading 0.6 heading_like none False True
396 24 2 figure_title Fary 2011 [149, 282, 229, 304] figure_caption_candidate 0.85 ["figure_title label: Fary 2011"] figure_caption 0.85 unknown_like short_fragment False False
397 24 3 table <table><tr><td>Methods</td><td>Randomised, double-blind, placebo-controlled trial Sample size at entry: 70 patients (34 in the active and 36 in the placebo group) Withdrawals: 3 participants (2 in the [150, 322, 1078, 1376] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
398 24 4 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1389, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
399 24 5 number 22 [1058, 1392, 1080, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
400 25 0 figure_title Fary 2011 (Continued) [148, 161, 333, 186] figure_caption_candidate 0.85 ["figure_title label: Fary 2011 (Continued)"] figure_caption 0.85 unknown_like none False False
401 25 1 table <table><tr><td></td><td colspan="2">36 v. 2) health survey) (2) Joint stiffness (WOMAC 3.1) (3) Physical activity (Human Activity Profile and Actigraph GT1M accelerometers worn for 7 consecutive days) [150, 223, 1079, 1373] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
402 25 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 711, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
403 25 3 number 23 [1058, 1391, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
404 26 0 figure_title Fary 2011 (Continued) [148, 161, 333, 185] figure_caption_candidate 0.85 ["figure_title label: Fary 2011 (Continued)"] figure_caption 0.85 unknown_like none False False
405 26 1 table <table><tr><td></td><td></td><td>(failed to attend final appointment)</td></tr><tr><td>Selective reporting (reporting bias)</td><td>Unclear risk</td><td>No information provided</td></tr></table> [150, 223, 1077, 306] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
406 26 2 table <table><tr><td>Methods</td><td>Randomised, double-blind, placebo-controlled trialSample size at entry: 58 patients (39 in the active and 19 in the placebo group)Withdrawals: 2 patientsTreatment durati [150, 350, 1076, 1365] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
407 26 3 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
408 26 4 number 24 [1058, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
409 27 0 header Garland 2007 (Continued) [149, 161, 361, 184] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
410 27 1 table <table><tr><td></td><td colspan="2">The occurrence of rashes and other adverse device effects was solicited and recorded at each visit</td></tr><tr><td>Notes</td><td colspan="2">Supported by a grant f [150, 222, 1080, 1355] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
411 27 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 711, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
412 27 3 number 25 [1058, 1392, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
413 28 0 figure_title Garland 2007 (Continued) [149, 161, 361, 185] figure_caption_candidate 0.85 ["figure_title label: Garland 2007 (Continued)"] figure_caption 0.85 unknown_like none False False
414 28 1 table <table><tr><td>Incomplete outcome data (attrition bias)</td><td rowspan="2">Low risk</td><td rowspan="2">1/39 missing from active group (discontinued study participation before the second month follow [151, 221, 1076, 433] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
415 28 2 figure_title Nelson 2013 [150, 468, 248, 490] figure_caption_candidate 0.85 ["figure_title label: Nelson 2013"] figure_caption 0.85 unknown_like short_fragment False False
416 28 3 table <table><tr><td>Methods</td><td>Double-blind, placebo-controlled, randomised pilot study Sample size at entry: 34 patients (15 in the active and 19 in the sham group) Withdrawals: 10 participants (3 in [151, 491, 1078, 1319] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
417 28 4 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
418 28 5 number 26 [1058, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
419 29 0 figure_title Nelson 2013 (Continued) [148, 161, 352, 185] figure_caption_candidate 0.85 ["figure_title label: Nelson 2013 (Continued)"] figure_caption 0.85 unknown_like none False False
420 29 1 table <table><tr><td>Bias</td><td>Authors&#x27; judgement</td><td>Support for judgement</td></tr><tr><td>Random sequence generation (selection bias)</td><td>Low risk</td><td>Quote: &quot;Randomization was p [149, 219, 1078, 1379] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
421 29 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1389, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
422 29 3 number 27 [1058, 1392, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
423 30 0 figure_title Nelson 2013 (Continued) [149, 161, 352, 185] figure_caption_candidate 0.85 ["figure_title label: Nelson 2013 (Continued)"] figure_caption 0.85 unknown_like none False False
424 30 1 table <table><tr><td>Selective reporting (reporting bias)</td><td>Unclear risk</td><td>No information provided</td></tr></table> [150, 224, 1077, 269] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
425 30 2 table <table><tr><td colspan="2">Nicolakis 2002</td></tr><tr><td>Methods</td><td>Randomised, double-blind, controlled trial Sample size at entry: 36 patients Withdrawals: 4 patients Treatment duration: 30 m [149, 259, 1078, 1338] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
426 30 3 vision_footnote Electromagnetic fields for treating osteoarthritis (Review) [148, 1390, 536, 1410] footnote 0.7 ["vision_footnote label: Electromagnetic fields for treating osteoarthritis (Review)"] footnote 0.7 unknown_like none True True
427 30 4 number 28 [1058, 1392, 1080, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
428 31 0 figure_title Nicolakis 2002 (Continued) [148, 161, 370, 185] figure_caption_candidate 0.85 ["figure_title label: Nicolakis 2002 (Continued)"] figure_caption 0.85 unknown_like none False False
429 31 1 table <table><tr><td>Random sequence generation (selection bias)</td><td>Low risk</td><td>Quote: “The study coordinator assigned the devices on a random basis to patient according to a list created by rando [150, 220, 1080, 1156] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
430 31 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
431 31 3 number 29 [1058, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
432 32 0 figure_title Pipitone 2001 [150, 176, 260, 200] figure_caption_candidate 0.85 ["figure_title label: Pipitone 2001"] figure_caption 0.85 unknown_like short_fragment False False
433 32 1 table <table><tr><td>Methods</td><td colspan="2">Randomised, double-blind, placebo-controlled trialSample size at entry: 75 patientsWithdrawals: 16 patientsTreatment duration: 3 times a day for 30 minutes o [151, 200, 1079, 1300] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
434 32 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
435 32 3 number 30 [1058, 1392, 1080, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
436 33 0 figure_title Pipitone 2001 (Continued) [149, 161, 364, 186] figure_caption_candidate 0.85 ["figure_title label: Pipitone 2001 (Continued)"] figure_caption 0.85 unknown_like none False False
437 33 1 table <table><tr><td>Allocation concealment (selection bias)</td><td>Low risk</td><td>Quote: “Neither the patients nor the medical assessor were aware of the treatment group”. “The code numbers were not bro [151, 218, 1076, 1021] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
438 33 2 paragraph_title Thamsborg 2005 [150, 1053, 282, 1077] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Thamsborg 2005"] subsection_heading 0.6 unknown_like short_fragment False True
439 33 3 table <table><tr><td>Methods</td><td>Randomised, double-blind, placebo-controlled trial Sample size at entry: 90 patients (pulsed electromagnetic field 45, placebo 45) Withdrawals: 7 patients Treatment dura [150, 1080, 1076, 1372] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
440 33 4 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [147, 1388, 711, 1431] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
441 33 5 number 31 [1057, 1391, 1078, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
442 34 0 figure_title Thamsborg 2005 (Continued) [150, 161, 385, 185] figure_caption_candidate 0.85 ["figure_title label: Thamsborg 2005 (Continued)"] figure_caption 0.85 unknown_like none False False
443 34 1 table <table><tr><td></td><td colspan="2">nancy or lack of contraception use in women of childbearing age, and use of pacemaker or any implanted electrical deviceNumber of patients who finished this study: [150, 223, 1078, 1388] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
444 34 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [149, 1389, 712, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
445 34 3 number 32 [1058, 1392, 1080, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
446 35 0 figure_title Thamsborg 2005 (Continued) [150, 161, 385, 186] figure_caption_candidate 0.85 ["figure_title label: Thamsborg 2005 (Continued)"] figure_caption 0.85 unknown_like none False False
447 35 1 table <table><tr><td>Blinding (performance bias and detection bias) Blinding of outcome assessors?</td><td>Unclear risk</td><td>Quote: “This was a 1:1 randomized, controlled, double-blind add-on study.” No [151, 220, 1077, 438] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
448 35 2 figure_title Trock 1993 [150, 472, 240, 494] figure_caption_candidate 0.85 ["figure_title label: Trock 1993"] figure_caption 0.85 unknown_like short_fragment False False
449 35 3 table <table><tr><td>Methods</td><td>Randomised, placebo-controlled trialSample size at entry: 27 patients (pulsed electromagnetic field 15, placebo 12)Withdrawals: 7 patientsTreatment duration: 18 half-hou [150, 494, 1079, 1321] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
450 35 4 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1389, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
451 35 5 number 33 [1058, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
452 36 0 figure_title Trock 1993 (Continued) [149, 161, 344, 185] figure_caption_candidate 0.85 ["figure_title label: Trock 1993 (Continued)"] figure_caption 0.85 unknown_like none False False
453 36 1 table <table><tr><td>Random sequence generation (selection bias)</td><td>Low risk</td><td>Quote: “Patients were randomized to receive active pulsed electromagnetic fields or placebo using a table of 1000 ra [152, 218, 1077, 859] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
454 36 2 figure_title Trock 1994 [150, 891, 241, 914] figure_caption_candidate 0.85 ["figure_title label: Trock 1994"] figure_caption 0.85 unknown_like short_fragment False False
455 36 3 table <table><tr><td>Methods</td><td>Randomised, double-blind, multicentre controlled trial Sample size at entry: 86 patients with osteoarthritis of the knee and 81 patients with osteoarthritis of the cervi [151, 913, 1075, 1376] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
456 36 4 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1389, 710, 1431] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
457 36 5 number 34 [1058, 1391, 1080, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
458 37 0 figure_title Trock 1994 (Continued) [149, 160, 343, 185] figure_caption_candidate 0.85 ["figure_title label: Trock 1994 (Continued)"] figure_caption 0.85 unknown_like none False False
459 37 1 table <table><tr><td></td><td>before evaluation were excludedNumber of patients who finished this study: 86 knee osteoarthritis and 81 cervical osteoarthritisMale/female: unclearAge: at least 35 yearsInterv [151, 221, 1078, 1377] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
460 37 2 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [149, 1389, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
461 37 3 number 35 [1058, 1392, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
462 38 0 figure_title Trock 1994 (Continued) [150, 161, 344, 185] figure_caption_candidate 0.85 ["figure_title label: Trock 1994 (Continued)"] figure_caption 0.85 unknown_like none False False
463 38 1 table <table><tr><td>Blinding (performance bias and detection bias) Blinding of patients?</td><td>Low risk</td><td>Quote: “Neither patient in the trial nor any patient in the center, nor any other staff cou [152, 218, 1076, 807] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
464 38 2 figure_title Zizic 1995 [150, 840, 235, 863] figure_caption_candidate 0.85 ["figure_title label: Zizic 1995"] figure_caption 0.85 unknown_like short_fragment False False
465 38 3 table <table><tr><td>Methods</td><td>Randomised, multicentre, double-blind, placebo-controlled trial Sample size at entry: 78 patients (41 in the active and 37 in the placebo group) Withdrawals: 7 patients [151, 864, 1077, 1375] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
466 38 4 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1389, 710, 1431] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
467 38 5 number 36 [1058, 1392, 1080, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
468 39 0 figure_title Zizic 1995 (Continued) [148, 161, 337, 185] figure_caption_candidate 0.85 ["figure_title label: Zizic 1995 (Continued)"] figure_caption 0.85 unknown_like none False False
469 39 1 table <table><tr><td></td><td colspan="2">active device. Patients were advised to use the instrument for 6 to 10 hours/day during the 4-week treatment period</td></tr><tr><td>Outcomes</td><td colspan="2">1) [150, 214, 1079, 1297] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
470 39 2 vision_footnote ACR: American College of Rheumatology [149, 1334, 449, 1358] footnote 0.7 ["vision_footnote label: ACR: American College of Rheumatology"] footnote 0.7 unknown_like none True True
471 39 3 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1388, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
472 39 4 number 37 [1058, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
473 40 0 text MD: medical doctor [148, 161, 302, 183] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
474 40 1 text NSAID: non-steroidal anti-inflammatory drug [148, 185, 482, 208] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
475 40 2 text PMF: pulsed magnetic field [149, 207, 349, 230] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
476 40 3 text TENS: transcutaneous electrical nerve stimulation [149, 231, 505, 253] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
477 40 4 text VAS: visual analogue scale [149, 254, 339, 277] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
478 40 5 paragraph_title Characteristics of excluded studies [ordered by study ID] [148, 322, 650, 347] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Characteristics of excluded studies [ordered by study ID]"] subsection_heading 0.6 body_zone heading_like none True True
479 40 6 table <table><tr><td>Study</td><td>Reason for exclusion</td></tr><tr><td>Alcidi 2007</td><td>The duration of treatment was only 5 days (once daily). Efficacy requires at least 4 weeks&#x27; treatment durati [150, 397, 1080, 1364] reference_item 0.95 ["inline table HTML"] table_html 0.95 reference_zone unknown_like none True True
480 40 7 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1389, 709, 1429] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
481 40 8 number 38 [1058, 1392, 1080, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
482 41 0 text (Continued) [150, 161, 239, 184] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
483 41 1 table <table><tr><td>Rigato 2002</td><td>The study included patients with cervical spondylosis and shoulder periarthritis without separately reported results and we could not extract data on cervical osteoa [150, 222, 1077, 448] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
484 41 2 text PEMF: pulsed electromagnetic field therapy [148, 482, 462, 507] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
485 41 3 text RCT: randomised controlled trial [149, 507, 390, 530] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
486 41 4 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1429] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
487 41 5 number 39 [1058, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
488 42 0 paragraph_title DATA AND ANALYSES [147, 160, 478, 183] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: DATA AND ANALYSES"] section_heading 0.6 heading_like short_fragment False True
489 42 1 paragraph_title Comparison 1. Electromagnetic fields versus placebo for osteoarthritis [149, 240, 742, 266] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Comparison 1. Electromagnetic fields versus placebo for oste"] subsection_heading 0.6 unknown_like none False True
490 42 2 table <table><tr><td>Outcome or subgroup title</td><td>No. of studies</td><td>No. of participants</td><td>Statistical method</td><td>Effect size</td></tr><tr><td>1 Pain</td><td>6</td><td>434</td><td>Mean Di [148, 295, 1074, 566] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
491 42 3 paragraph_title WHAT'S NEW [147, 704, 354, 728] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: WHAT'S NEW"] section_heading 0.6 heading_like short_fragment False True
492 42 4 text Last assessed as up-to-date: 3 October 2013. [148, 741, 462, 765] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
493 42 5 table <table><tr><td>Date</td><td>Event</td><td>Description</td></tr><tr><td>3 October 2013</td><td>New search has been performed</td><td>New search with six new studies.</td></tr><tr><td>3 October 2013</td [150, 804, 1078, 953] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
494 42 6 paragraph_title HISTORY [147, 1020, 285, 1044] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: HISTORY"] sub_subsection_heading 0.6 heading_like short_fragment True True
495 42 7 text Review first published: Issue 1, 2002 [149, 1057, 411, 1081] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
496 42 8 table <table><tr><td>Date</td><td>Event</td><td>Description</td></tr><tr><td>8 May 2008</td><td>Amended</td><td>CMSG ID: C031-R.</td></tr></table> [149, 1119, 1077, 1221] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
497 42 9 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1430] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
498 42 10 number 40 [1059, 1391, 1079, 1410] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
499 43 0 paragraph_title CONTRIBUTIONS OF AUTHORS [146, 160, 615, 183] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: CONTRIBUTIONS OF AUTHORS"] section_heading 0.6 heading_like none False True
500 43 1 text Dr. Shasha Li and Bo Yu performed the bibliographic searches, identified the studies, assessed their methodological quality, extracted the data and produced the first draft of the review. Dr. Chengqi [146, 196, 1082, 290] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
501 43 2 paragraph_title DECLARATIONS OF INTEREST [146, 338, 596, 361] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: DECLARATIONS OF INTEREST"] backmatter_boundary_candidate 0.5 heading_like none True True
502 43 3 text None known. [148, 376, 251, 397] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
503 43 4 paragraph_title SOURCES OF SUPPORT [147, 448, 491, 471] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: SOURCES OF SUPPORT"] section_heading 0.6 heading_like short_fragment False True
504 43 5 paragraph_title Internal sources [147, 500, 307, 522] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Internal sources"] subsection_heading 0.6 heading_like short_fragment False True
505 43 6 text • Chinese Cochrane Centre, Chinese EBM Centre, INCLEN CERTC in West China Hospital, Sichuan University, China. [163, 534, 1034, 556] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
506 43 7 paragraph_title External sources [148, 603, 312, 625] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: External sources"] subsection_heading 0.6 heading_like short_fragment False True
507 43 8 text • No sources of support supplied [165, 637, 408, 660] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
508 43 9 paragraph_title DIFFERENCES BETWEEN PROTOCOL AND REVIEW [146, 710, 893, 733] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: DIFFERENCES BETWEEN PROTOCOL AND REVIEW"] section_heading 0.6 unknown_like none False True
509 43 10 text The major outcomes were changed to pain, physical function, radiographic joint structure changes, health-related quality of life measure, number of patients experiencing any adverse event, patients wh [146, 747, 1081, 839] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
510 43 11 paragraph_title INDEX TERMS [146, 889, 357, 912] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: INDEX TERMS"] section_heading 0.6 heading_like short_fragment False True
511 43 12 paragraph_title Medical Subject Headings (MeSH) [147, 932, 473, 957] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Medical Subject Headings (MeSH)"] subsection_heading 0.6 heading_like none False True
512 43 13 text *Electric Stimulation Therapy; Clinical Trials as Topic; Electromagnetic Fields; Osteoarthritis [*therapy] [148, 966, 880, 990] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
513 43 14 text MeSH check words [148, 1008, 335, 1030] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
514 43 15 text Humans [148, 1042, 216, 1062] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
515 43 16 footer Electromagnetic fields for treating osteoarthritis (Review) Copyright © 2013 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd. [148, 1390, 710, 1429] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
516 43 17 number 41 [1058, 1392, 1079, 1409] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False

View file

@ -0,0 +1,454 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,aside_text,"Downloaded via SHANDONG UNIV on February 5, 2026 at 08:59:44 (UTC). See https://pubs.acs.org/sharingguidelines for options on how to legitimately share published articles.","[2, 474, 43, 1122]",noise,0.95,"[""margin-band narrow/tall geometry; treated as noise""]",noise,0.95,frontmatter_main_zone,support_like,none,False,False
1,1,header_image,,"[98, 44, 429, 137]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,True
1,2,header_image,,"[1032, 106, 1111, 127]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,True
1,3,header,This article is licensed under CC-BY 4.0 CC,"[808, 136, 1113, 158]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
1,4,text,http://pubs.acs.org/journal/acsodf,"[100, 166, 313, 187]",structured_insert_candidate,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,False,False
1,5,text,Article,"[1048, 168, 1101, 188]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,frontmatter_main_zone,support_like,short_fragment,False,False
1,6,doc_title,"Dynamic Metal-Coordinated Adhesive and Self-Healable Antifreezing Hydrogels for Strain Sensing, Flexible Supercapacitors, and EMI Shielding Applications","[97, 219, 1113, 328]",paper_title,0.8,"[""page-1 zone title_zone: Dynamic Metal-Coordinated Adhesive and Self-Healable Antifre""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,7,text,"Ashis Ghosh, Sudhir Kumar, Prem Pal Singh, Suvendu Nandi, Mahitosh Mandal, Debabrata Pradhan, Bhanu Bhusan Khatua, and Rajat Kumar Das*","[97, 339, 1105, 395]",authors,0.8,"[""page-1 zone author_zone: Ashis Ghosh, Sudhir Kumar, Prem Pal Singh, Suvendu Nandi, Ma""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,8,image,,"[102, 409, 144, 451]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,9,text,"Cite This: ACS Omega 2024, 9, 3320433223","[147, 417, 462, 444]",frontmatter_noise,0.7,"[""keyword-like block: Cite This: ACS Omega 2024, 9, 33204\u201333223""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,10,image,,"[626, 409, 667, 452]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,11,text,Read Online,"[672, 418, 777, 445]",figure_inner_text,0.88,"[""short figure-adjacent label; treated as figure_inner_text""]",figure_inner_text,0.88,frontmatter_main_zone,support_like,short_fragment,True,True
1,12,text,ACCESS,"[99, 481, 211, 514]",figure_inner_text,0.88,"[""short figure-adjacent label; treated as figure_inner_text""]",figure_inner_text,0.88,frontmatter_main_zone,support_like,short_fragment,True,True
1,13,text,Metrics & More,"[282, 489, 435, 513]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,frontmatter_main_zone,support_like,short_fragment,False,False
1,14,image,,"[548, 489, 576, 513]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,15,text,Article Recommendations,"[580, 490, 772, 512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,True,True
1,16,abstract,ABSTRACT: Dynamic metal-coordinated adhesive and self-healable hydrogel materials have garnered significant attention in recent years due to their potential applications in various fields. These hydro,"[97, 538, 625, 826]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,17,image,,"[862, 490, 886, 514]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,18,text,Supporting Information,"[891, 490, 1063, 514]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,True,True
1,19,image,,"[638, 536, 1110, 809]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,20,abstract,"bond, the hydrogel exhibited a tensile strength of up to ~250 kPa and was able to stretch to 1516 times its original length. The hydrogel exhibited a high fracture energy of ~1500 J m⁻², similar to t","[92, 823, 1115, 1113]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,21,paragraph_title,INTRODUCTION,"[101, 1157, 282, 1179]",section_heading,0.9,"[""explicit scholarly heading: INTRODUCTION""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
1,22,text,"In recent years, hydrogels have found extensive applications in flexible electronics like soft robotics, $ ^{1} $ human health monitoring, $ ^{2,3} $ supercapacitor, $ ^{4} $ biosensor, $ ^{5} $ artif","[96, 1189, 588, 1500]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,23,text,,"[624, 1157, 1116, 1331]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
1,24,footnote,"Received: May 23, 2024","[626, 1358, 820, 1380]",frontmatter_noise,0.75,"[""page-1 DOI/date footnote: Received: May 23, 2024""]",frontmatter_noise,0.75,body_zone,body_like,none,False,False
1,25,footnote,"Revised: July 3, 2024","[626, 1381, 809, 1403]",footnote,0.7,"[""footnote label: Revised: July 3, 2024""]",footnote,0.7,body_zone,body_like,none,True,True
1,26,footer_image,,"[102, 1521, 337, 1560]",non_body_insert,0.2,"[""unrecognized label 'footer_image'""]",unknown_structural,0.2,body_zone,unknown_like,empty,False,False
1,27,footnote,"Accepted: July 8, 2024","[627, 1403, 810, 1425]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Accepted: July 8, 2024""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,28,image,,"[1024, 1350, 1112, 1472]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,29,footer,© 2024 The Authors. Published by American Chemical Society,"[374, 1513, 565, 1542]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
1,30,footnote,"Published: July 21, 2024","[626, 1426, 817, 1449]",frontmatter_noise,0.75,"[""page-1 DOI/date footnote: Published: July 21, 2024""]",frontmatter_noise,0.75,body_zone,body_like,none,False,False
1,31,number,33204,"[584, 1535, 629, 1554]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
1,32,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1521, 1113, 1551]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,header,ACS Omega,"[100, 77, 210, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,2,header,Article,"[1051, 80, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,3,figure_title,Scheme 1. Synthesis of Metal Ion Crosslinking of Poly(AM-co-MA) Hydrogels and Depiction of Various Chemical Linking within the Hydrogel,"[97, 118, 1111, 166]",figure_caption_candidate,0.85,"[""figure_title label: Scheme 1. Synthesis of Metal Ion Crosslinking of Poly(AM-co-""]",figure_caption,0.85,body_zone,legend_like,none,False,False
2,4,image,,"[196, 175, 1016, 640]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,5,text,"to freezing and drying, to enable its multifunctional application. To enhance the mechanical robustness of hydrogels, various strategies have been explored, such as forming macromolecular microsphere ","[96, 668, 589, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,text,"the formation of mono-, bis-, and tris complexes of Fe³⁺ in varying pH environments. Guo and coworkers introduced dual dynamic cross-linking strategy where pH-responsive Fe³⁺-catechol interaction was ","[621, 667, 1117, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,7,number,33205,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,8,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,0,header,ACS Omega,"[100, 77, 209, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,2,header,Article,"[1051, 81, 1100, 97]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,3,image,,"[181, 129, 1032, 835]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,4,figure_title,"Figure 1. (A) In situ metal ion gel formation. (B) XPS spectroscopy of the AM₁₀ hydrogel in the presence of Ca²⁺, Zn²⁺, and Ni²⁺ metal ions. (C) FESEM images of the AM₁₀ hydrogel (i) in the absence of","[97, 850, 1111, 934]",figure_caption,0.92,"[""figure_title label: Figure 1. (A) In situ metal ion gel formation. (B) XPS spect""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
3,5,text,"adhesion, and water content. $ ^{18} $ But their mechanical properties did not show a significant increase because of swelling during soaking in the metal ion solution.","[97, 952, 587, 1019]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,"In our current approach, we incorporated metal ions inside the hydrogel through in situ polymerization to prevent swelling. We used a set of different metal ions ( $ Fe^{3+} $, $ Fe^{2+} $, $ Ca^{2+","[96, 1018, 588, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,7,text,,"[619, 950, 1117, 1512]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,8,number,33206,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,9,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,0,header,ACS Omega,"[100, 77, 210, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,2,header,Article,"[1051, 81, 1100, 97]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,3,chart,,"[110, 121, 429, 349]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,4,chart,,"[425, 125, 751, 345]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,5,chart,,"[751, 125, 1104, 342]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,6,chart,,"[111, 355, 419, 579]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,7,chart,,"[423, 355, 728, 557]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,8,figure_title,(F),"[737, 360, 765, 387]",figure_inner_text,0.9,"[""panel label / figure inner text: (F)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,9,chart,,"[769, 366, 1085, 550]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,10,chart,,"[111, 584, 434, 814]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,11,chart,,"[425, 581, 742, 802]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,12,chart,,"[746, 579, 1102, 800]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,13,figure_title,"Figure 2. (A) Tensile stress strain diagram, (B) tensile strength and elastic modulus, (C) fracture strain and work of fracture, (D) compressive stress strain diagram, (E) compressive strength of AM₁₀","[96, 829, 1116, 934]",figure_caption,0.92,"[""figure_title label: Figure 2. (A) Tensile stress strain diagram, (B) tensile str""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
4,14,text,"applications even at subzero temperature and ensuring long-term durability of the device. Overall, we have successfully explored diverse applications of this in situ metal complex hydrogel synthesized","[97, 951, 588, 1042]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,15,paragraph_title,RESULTS AND DISCUSSIONS,"[101, 1061, 399, 1083]",section_heading,0.6,"[""unnumbered paragraph_title, inferred level section_heading: RESULTS AND DISCUSSIONS""]",section_heading,0.6,body_zone,heading_like,none,True,True
4,16,text,"Synthesis and Characterization of Hydrogels. A copolymer hydrogel was synthesized using acrylamide (AM) and maleic acid (MA) as a monomer, APS as a thermal initiator, and MBAA as a chemical cross-link","[96, 1089, 588, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,17,text,,"[622, 952, 1117, 1328]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,18,text,"Mechanical Properties. To determine the effect of metalligand cross-linking on mechanical characteristics, the tensile stressstrain data for AM $ _{10} $ hydrogels were analyzed in the presence and ","[624, 1330, 1116, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,19,number,33207,"[584, 1528, 629, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,20,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
5,0,header,ACS Omega,"[100, 78, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,1,header,http://pubs.acs.org/journal/acsodf,"[501, 80, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,2,header,Article,"[1051, 81, 1100, 97]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,3,figure_title,(A),"[117, 123, 145, 148]",figure_inner_text,0.9,"[""panel label / figure inner text: (A)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,4,chart,,"[120, 121, 451, 366]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,5,chart,,"[448, 122, 772, 364]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,6,chart,,"[764, 123, 1093, 368]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,7,chart,,"[123, 368, 451, 613]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,8,chart,,"[451, 369, 742, 590]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,9,chart,,"[742, 369, 1091, 585]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,10,figure_title,"Figure 3. (A,B) Forcedisplacement curves of notched and unnotched AM₂₀-Ca²⁺ hydrogels, respectively. (C,D) Forcedisplacement curves of notched and unnotched AM₂₀ hydrogels, respectively. (E) Fractur","[97, 630, 1117, 694]",figure_caption,0.92,"[""figure_title label: Figure 3. (A,B) Force\u2013displacement curves of notched and unn""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,11,text,elastic modulus (Figure 2B). The inclusion of Ca²⁺ in the AM₁₀-Ca²⁺ hydrogel resulted in a 3-fold increase in tensile strength (189.3 ± 5.3 kPa) compared to the control AM₁₀ hydrogels (66.3 ± 1.1 kPa),"[98, 710, 590, 1231]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,12,inline_formula, $$ (749\pm15\mathrm{~kJ~m^{-3}}) $$ ,"[175, 1221, 326, 1242]",unknown_structural,0.2,"[""unrecognized label 'inline_formula'""]",unknown_structural,0.2,body_zone,body_like,none,False,True
5,13,text,"Consistent with the tensile properties, the compressive properties of the hydrogels followed the same trend (Figure 2D). At 80% compressive strain, AM₁₀ hydrogels exhibited a compressive strength of 1","[95, 1243, 587, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,14,text,,"[622, 709, 1116, 1066]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
5,15,text,"In addition to the various metal ions, the composition of the comonomer mixture utilized during polymerization is a critical factor in determining the mechanical characteristics of hydrogels. The infl","[622, 1068, 1117, 1510]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,16,number,33208,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,17,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
6,0,header,ACS Omega,"[99, 76, 210, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
6,2,header,Article,"[1051, 80, 1101, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,3,chart,,"[196, 123, 612, 429]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,4,image,,"[192, 118, 1022, 655]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,5,chart,,"[611, 124, 1024, 430]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,6,figure_title,Figure 4. (A) Cyclic tensile loading and unloading experiments of the AM₂₀-Ca²⁺ hydrogel. (B) Dissipated energy under the hysteresis loop and total energy dissipation during cyclic loading and unloadi,"[97, 668, 1112, 734]",figure_caption,0.92,"[""figure_title label: Figure 4. (A) Cyclic tensile loading and unloading experimen""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,7,text,"content. This can be attributed to the increase in carboxylic acid units, which results in more cross-linking points when combined with Ca²⁺, thereby enhancing the strength. However, beyond 20 wt % ma","[97, 750, 587, 1111]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,8,text,"Fracture Energy. The AM₂₀-Ca²⁺ hydrogel, with its abundant noncovalent metalligand interactions, has the potential to enhance the fracture energy of the hydrogel. The fracture energy of the AM₂₀-Ca²⁺","[96, 1108, 588, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,9,text,,"[622, 749, 1116, 1040]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
6,10,text,"Energy Dissipations under Cyclic Loading and Unloading Test. The AM₁₀-Ca²⁺ hydrogel was subjected to multiple cycles of tensile loading and unloading up to various tensile strains, as illustrated in F","[621, 1043, 1116, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,11,number,33209,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,12,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
7,0,header,ACS Omega,"[100, 78, 210, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
7,2,header,Article,"[1051, 81, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,3,chart,,"[122, 122, 442, 364]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,4,chart,,"[441, 122, 763, 366]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,5,chart,,"[763, 126, 1093, 373]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,6,chart,,"[124, 368, 443, 608]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,7,chart,,"[444, 371, 787, 602]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,8,chart,,"[794, 375, 1076, 580]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,9,chart,,"[130, 609, 449, 848]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,10,chart,,"[447, 608, 773, 849]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,11,chart,,"[765, 607, 1087, 847]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,12,figure_title,"Figure 5. Cyclic tensile loading—unloading experiments of the AM₂₀Ca²⁺ hydrogel: (A) Self-recovery at 0 min, (B) self-recovery at 2 min, (C) self-recovery at 5 min, and (D) self-recovery at 10 min. (","[97, 863, 1117, 988]",figure_caption,0.92,"[""figure_title label: Figure 5. Cyclic tensile loading\u2014unloading experiments of th""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
7,13,text,"suggests that higher levels of strain resulted in a larger percentage of sacrificial bond breakage, leading to a significant increase in the energy dissipation. The impressive mechanical robustness of","[97, 1005, 588, 1212]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,14,text,"Self-Recovery and Antifatigue Characteristics. Although many conventional hydrogels dissipate significant amount of energy during deformation, they cannot recover that energy quickly upon removal of t","[95, 1210, 588, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,15,text,,"[621, 1004, 1116, 1513]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,16,number,33210,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,17,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
8,0,header,ACS Omega,"[100, 77, 210, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
8,2,header,Article,"[1051, 81, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,3,figure_title,(A),"[104, 121, 130, 144]",figure_inner_text,0.9,"[""panel label / figure inner text: (A)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,4,image,,"[111, 120, 1108, 399]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,5,chart,,"[134, 409, 439, 646]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,6,chart,,"[445, 408, 768, 642]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,7,chart,,"[768, 410, 1092, 644]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,8,figure_title,"Figure 6. (A) Adhesion of the AM₂₀-Ca²⁺ hydrogel with different substrates like skin, plastic, glass, wood, metal, rubber and paper. (B) Force vs displacement graphs for lap shear tests. (C) Adhesive ","[99, 661, 1115, 724]",figure_caption,0.92,"[""figure_title label: Figure 6. (A) Adhesion of the AM\u2082\u2080-Ca\u00b2\u207a hydrogel with differ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,9,text,"ties of the AM₂₀-Ca²⁺ hydrogel. When a strip of the hydrogel is stretched, the sacrificial bonds break and dissipate energy. Upon relaxation, the hydrogel promptly returns to its original length. This","[95, 741, 588, 1398]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,10,text,"Adhesive Properties. In order to effectively utilize hydrogels for a variety of purposes, it is important for the material to possess strong adhesive properties on different types of surfaces. An inve","[96, 1397, 588, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,11,text,,"[621, 739, 1117, 1465]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
8,12,text,Antifreezing and Antidehydration Properties. A common challenge faced by conventional hydrogels is their,"[625, 1465, 1116, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,13,number,33211,"[584, 1528, 629, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,14,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
9,0,header,ACS Omega,"[100, 77, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 745, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
9,2,header,Article,"[1051, 81, 1101, 97]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,3,chart,,"[222, 120, 583, 294]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,4,figure_title,(B),"[573, 122, 599, 146]",figure_inner_text,0.9,"[""panel label / figure inner text: (B)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
9,5,chart,,"[588, 117, 987, 298]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,6,chart,,"[234, 314, 597, 602]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,7,chart,,"[613, 310, 984, 601]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,8,figure_title,"Figure 7. (A) Photographs of AM₂₀ and AM₂₀-Ca²⁺ hydrogels after keeping at 15 °C for 24 h. After 24 h, AM₂₀ lost its flexibility, whereas the AM₂₀-Ca²⁺ hydrogel still maintained its flexibility due t","[96, 636, 1117, 740]",figure_caption,0.92,"[""figure_title label: Figure 7. (A) Photographs of AM\u2082\u2080 and AM\u2082\u2080-Ca\u00b2\u207a hydrogels af""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,9,text,"lack of antifreezing and antidehydration properties. Most conventional hydrogels tend to freeze when exposed to subzero temperatures, thus losing their flexibility. However, the presence of $ Ca^{2+}","[96, 752, 588, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,10,text,,"[622, 756, 1118, 1423]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
9,11,text,"One major challenge facing traditional hydrogels is their tendency to dehydrate, resulting in storage difficulties and deterioration of their functional properties over time. However, the incorporatio","[624, 1421, 1116, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,12,number,33212,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,13,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
10,0,header,ACS Omega,"[100, 77, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,1,header,http://pubs.acs.org/journal/acsodf,"[501, 80, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
10,2,header,Article,"[1051, 81, 1101, 97]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,3,figure_title,(A),"[158, 125, 189, 150]",figure_inner_text,0.9,"[""panel label / figure inner text: (A)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,4,image,,"[159, 130, 1049, 284]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,5,figure_title,(B),"[157, 298, 188, 323]",figure_inner_text,0.9,"[""panel label / figure inner text: (B)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,6,image,,"[177, 298, 620, 503]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,7,figure_title,(C),"[616, 299, 644, 323]",figure_inner_text,0.9,"[""panel label / figure inner text: (C)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,8,image,,"[648, 291, 1053, 510]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,9,figure_title,(D),"[160, 515, 191, 544]",figure_inner_text,0.9,"[""panel label / figure inner text: (D)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,10,image,,"[187, 511, 451, 719]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,11,image,,"[491, 513, 754, 719]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,12,image,,"[794, 513, 1054, 719]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,13,figure_title,(E),"[157, 737, 186, 764]",figure_inner_text,0.9,"[""panel label / figure inner text: (E)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,14,chart,,"[183, 735, 409, 982]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,15,chart,,"[415, 737, 735, 995]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,16,chart,,"[737, 736, 1057, 989]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,17,figure_title,"Figure 8. (A) Schematic representation of the self-healing mechanism in the hydrogel. (B) Self-healing process of the AM₂₀-Ca²⁺ hydrogel. A rectangular piece of hydrogel was cut into two halves, one p","[95, 1011, 1117, 1135]",figure_caption,0.92,"[""figure_title label: Figure 8. (A) Schematic representation of the self-healing m""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
10,18,text,"the AM₂₀-Ca²⁺ hydrogel greatly enhanced its ability to resist dehydration.⁴⁴,⁴⁶ The water loss of the AM₂₀-Ca²⁺ hydrogel when exposed to open air was compared to that of the AM₂₀ hydrogel (Figure S5A)","[98, 1151, 588, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,19,text,,"[623, 1153, 1114, 1219]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
10,20,text,"Self-Healing Properties. The hydrogel, composed of many reversible cross-linked bonds such as metal-ligand and hydrogen bonded cross-links, is anticipated to possess self-healing capabilities. Figure ","[621, 1221, 1117, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,21,number,33213,"[584, 1528, 629, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,22,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
11,0,header,ACS Omega,"[100, 77, 210, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
11,2,header,Article,"[1051, 80, 1101, 97]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,3,figure_title,(A),"[118, 131, 155, 160]",figure_inner_text,0.9,"[""panel label / figure inner text: (A)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
11,4,image,,"[162, 130, 440, 349]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,5,chart,,"[447, 119, 777, 371]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,6,chart,,"[772, 124, 1093, 356]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,7,chart,,"[125, 374, 450, 628]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,8,chart,,"[448, 376, 772, 627]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,9,chart,,"[767, 375, 1087, 624]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,10,chart,,"[128, 629, 449, 876]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,11,chart,,"[451, 628, 769, 877]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,12,chart,,"[773, 627, 1088, 877]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,13,figure_title,"Figure 9. (A) Demonstration of conductive nature of the AM₂₀-Ca²⁺ hydrogel at room temperature (25 °C) and subambient temperature (15 °C). Connecting with a battery (using the mentioned circuit), the","[98, 891, 1116, 1038]",figure_caption,0.92,"[""figure_title label: Figure 9. (A) Demonstration of conductive nature of the AM\u2082\u2080""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
11,14,text,"could be stretched, bent, and twisted without delamination at the cutting site (Figure 8B). This represents the hydrogel's excellent self-healing qualities. The self-healing process could be visually ","[97, 1056, 588, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,15,text,,"[624, 1054, 1115, 1190]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
11,16,text,"Conductive Properties. The presence of metal ions is expected to make this gel ionically conducting. In order to investigate this conductive property, a rectangular AM₂₀-Ca²⁺ hydrogel sample (10 mm × ","[623, 1192, 1116, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,17,number,33214,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,18,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
12,0,header,ACS Omega,"[100, 77, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
12,2,header,Article,"[1051, 80, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,3,chart,,"[177, 123, 471, 361]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,4,chart,,"[471, 127, 733, 589]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,5,chart,,"[736, 126, 1038, 361]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,6,chart,,"[179, 366, 477, 598]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,7,chart,,"[737, 367, 1037, 598]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,8,figure_title,(E),"[182, 603, 210, 629]",figure_inner_text,0.9,"[""panel label / figure inner text: (E)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
12,9,chart,,"[218, 601, 424, 804]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,10,chart,,"[423, 603, 694, 814]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,11,chart,,"[690, 603, 865, 812]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,12,chart,,"[863, 604, 1037, 812]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,13,figure_title,"Figure 10. The AM₂₀-Ca²⁺ hydrogel-based strain sensor for human motion detection. The relative resistance change in response to the bending of (A) finger, (B) elbow, (C) knee, and (D) wrist. (E) Morse","[96, 829, 1116, 955]",figure_caption,0.92,"[""figure_title label: Figure 10. The AM\u2082\u2080-Ca\u00b2\u207a hydrogel-based strain sensor for hu""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
12,14,text,"hydrogel for 12 h at 0 °C and 1 5 °C, and the results showed a decrease in ionic conductivity due to restricted ionic movement at lower temperatures (Figure 9B). The AM₂₀-Ca²⁺ hydrogel exhibited ioni","[96, 969, 590, 1513]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,15,text,,"[623, 971, 1115, 1105]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
12,16,text,"The remarkable flexibility of the hydrogel enables it to be stretched to varying levels of strain, which was evident in the increase of the relative resistance change as the strain percentage increase","[623, 1107, 1116, 1443]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,17,text,"The strain-sensing ability of this hydrogel was further analyzed by subjecting it to bending, twisting, and pressing (Figure 9GI). Results showed an increase in relative","[625, 1443, 1115, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,18,number,33215,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,19,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
13,0,header,ACS Omega,"[100, 77, 210, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
13,2,header,Article,"[1052, 81, 1100, 97]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,3,figure_title,(A),"[104, 134, 130, 156]",figure_inner_text,0.9,"[""panel label / figure inner text: (A)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,4,image,,"[117, 127, 752, 364]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,5,figure_title,(B),"[771, 133, 794, 154]",figure_inner_text,0.9,"[""panel label / figure inner text: (B)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,6,chart,,"[781, 131, 1097, 364]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,7,figure_title,(c),"[111, 379, 135, 401]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,8,chart,,"[144, 368, 444, 598]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,9,chart,,"[453, 371, 766, 601]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,10,chart,,"[765, 374, 1106, 600]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,11,chart,,"[124, 596, 452, 839]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,12,chart,,"[458, 601, 764, 840]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,13,chart,,"[767, 603, 1107, 839]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,14,figure_title,Figure 11. (A) Schematic of the solid electrolyte-based supercapacitor device and its chargingdischarging mechanism. (B) Cyclic voltammetry (CV) curve. (C) Variation of specific capacitance with scan,"[97, 855, 1117, 939]",figure_caption,0.92,"[""figure_title label: Figure 11. (A) Schematic of the solid electrolyte-based supe""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
13,15,text,"resistance change during bending and twisting, with a return to the original state after relaxing. This enhancement in the relative resistance change is due to the stretching of the hydrogel during be","[97, 958, 588, 1112]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,16,text,"Human Movement Detection. The AM₂₀-Ca²⁺ hydrogel-based strain sensor, owing to reasonable ionic conductivity, flexibility, good strain sensitivity, excellent adhesiveness, and effective electrical hea","[97, 1112, 588, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,17,text,,"[622, 956, 1116, 1512]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
13,18,number,33216,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,19,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
14,0,header,ACS Omega,"[100, 77, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
14,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
14,2,header,Article,"[1051, 80, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
14,3,text,"based on the results of the present studies, it is expected that our hydrogel will be noncytotoxic toward the human skin.","[96, 117, 586, 162]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,4,text,"Hydrogel strain sensors have the capability to not only monitor human limb movement but also transmit information, thereby enabling opportunities for information encryption/decryption and enhancing in","[96, 163, 588, 625]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,5,text,"Flexible Supercapacitor Performance. The AM₂₀-Ca²⁺ hydrogel was employed as a solid electrolyte in a flexible supercapacitor device. Ionic conductivity, a porous microstructure, and the ability to adh","[96, 623, 588, 1158]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,6,text,"The CV experiment was performed by varying the scan rate from 10 to 500 mV s⁻¹ in the potential range of 01.2 V (Figure 11B). The data exhibit the symmetrical quasi-rectangular CV curve, denoting ele","[96, 1157, 589, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,7,text,,"[624, 117, 1116, 206]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
14,8,text,GCD tests were performed to investigate the chargedischarge mechanism and precisely determine the specific capacitance by varying the current density. Figure 11D shows that within the potential windo,"[622, 205, 1116, 1181]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,9,text,"Since the hydrogel-based solid electrolyte is mechanically robust and flexible and has good self-recovery properties, the electrochemical performance of the supercapacitor device was checked under dif","[622, 1180, 1117, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,10,number,33217,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
14,11,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
15,0,header,ACS Omega,"[100, 77, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
15,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
15,2,header,Article,"[1051, 80, 1101, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
15,3,chart,,"[166, 119, 463, 345]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,4,chart,,"[463, 121, 749, 345]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,5,chart,,"[756, 121, 1044, 345]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,6,chart,,"[166, 344, 464, 577]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,7,chart,,"[461, 346, 751, 577]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,8,chart,,"[755, 347, 1043, 576]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,9,figure_title,(G),"[168, 593, 205, 622]",figure_inner_text,0.9,"[""panel label / figure inner text: (G)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
15,10,image,,"[213, 600, 1039, 821]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,11,chart,,"[166, 832, 463, 1061]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,12,chart,,"[460, 832, 751, 1061]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,13,chart,,"[756, 832, 1045, 1060]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
15,14,figure_title,"Figure 12. (A) SE, (B) SE_A, (C) SE_R of AM_20 hydrogels before and after incorporation of different metal ions (Ca^2+, Ni^{2+}, and Zn^{2+}); variation of (D) SE, (E) SE_A, (F) SE_R of AM_20-Ca^{2+} ","[95, 1076, 1118, 1182]",figure_caption,0.92,"[""figure_title label: Figure 12. (A) SE, (B) SE_A, (C) SE_R of AM_20 hydrogels bef""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
15,15,text,"result showed that the specific capacitance decreased slightly on bending the device (Figure S10D). This can be attributed to the stretching of the electrolyte within the hydrogel during bending, whic","[97, 1199, 588, 1376]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,16,text,"Environmental stability is also important for enhancing the lifetime of gel-based supercapacitor devices. Since this gel showed excellent antidrying properties, after 30 days also, it showed similar C","[96, 1377, 588, 1511]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,17,text,,"[624, 1199, 1115, 1286]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
15,18,text,"EMI Shielding Performance. The AM₂₀-Ca²⁺ hydrogel sample was utilized to investigate its capability to shield against electromagnetic interference (EMI). To study the EMI shielding effectiveness, a 1.","[624, 1288, 1115, 1513]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,19,number,33218,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
15,20,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[890, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
16,0,header,ACS Omega,"[100, 77, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
16,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 746, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
16,2,header,Article,"[1051, 80, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
16,3,text,"displayed a total shielding efficiency (SE) of ~35 dB (Figure 12A), which is far exceeding the industrial standard of 20 dB. $ ^{67-69} $ This value also surpassed that of many other conducting filler","[96, 116, 588, 934]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,4,text,"The total EMI shielding efficiency (SE) comprises two mechanisms: reflection (SE_R) and absorption (SE_A), which are attributed to mobile charge carriers and electric dipoles, respectively. Therefore,","[97, 939, 588, 1423]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,5,text,"Apart from the metal ions, total water content inside the hydrogel plays a critical role in enhancing the electromagnetic shielding performance of the hydrogel. The presence of water molecules within ","[97, 1421, 588, 1510]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,6,text,,"[625, 118, 1115, 360]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
16,7,text,"The traditional hydrogels are prone to rapid drying under working conditions, resulting in a significant loss of EMI SE. Since the AM₂₀-Ca²⁺ hydrogel exhibits antidehydration properties, this material","[625, 361, 1116, 646]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,8,text,"The EMI shielding performance of the AM₂₀-Ca²⁺ hydrogel was also affected by the mechanical deformation of the hydrogel. To measure this, the AM₂₀-Ca²⁺ hydrogel was stretched to 100% and the correspon","[622, 647, 1116, 1088]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,9,text,"The conventional hydrogels lose their ability to shield against electromagnetic interference at subzero temperature because of the onset of freezing of water inside the hydrogel. However, unlike conve","[624, 1091, 1116, 1442]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,10,text,"Finally, the practical application of the EMI shielding performance of this hydrogel has been demonstrated by blocking the wifi signal from the cell phone (Figure S13B). For","[625, 1443, 1116, 1512]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,11,number,33219,"[584, 1528, 630, 1545]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
16,12,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
17,0,header,ACS Omega,"[100, 77, 210, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
17,1,header,http://pubs.acs.org/journal/acsodf,"[501, 79, 745, 99]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
17,2,header,Article,"[1052, 80, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
17,3,text,"this, first a 4G cell phone was wrapped with aluminum foil. Since the aluminum foil is a well-known EMI blocking element, it blocks the wifi comes out. Next the phone was covered with aluminum foil, k","[97, 117, 587, 318]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,4,text,"In summary, we have successfully synthesized dynamic metal ion cross-linked adhesive and self-healing hydrogels through thermal copolymerization of acrylamide and maleic acid monomers and in situ inco","[97, 364, 588, 872]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,5,paragraph_title,ASSOCIATED CONTENT,"[102, 889, 352, 912]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: ASSOCIATED CONTENT""]",section_heading,0.6,tail_nonref_hold_zone,heading_like,short_fragment,False,True
17,6,paragraph_title,Supporting Information,"[101, 919, 336, 941]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Supporting Information""]",backmatter_boundary_candidate,0.5,,heading_like,none,True,True
17,7,text,The Supporting Information is available free of charge at https://pubs.acs.org/doi/10.1021/acsomega.4c04851.,"[98, 942, 586, 988]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,body_like,none,True,True
17,8,text,Investigation of conductive properties (MP4),"[145, 993, 506, 1016]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
17,9,text,"Synthesis of the hydrogels and characterization procedures (mechanical properties, differential scanning calorimetry, microscopy, XPS spectroscopy, FTIR, resistive sensing, electrochemical measurement","[145, 1020, 587, 1153]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
17,10,paragraph_title,AUTHOR INFORMATION,"[101, 1177, 358, 1199]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: AUTHOR INFORMATION""]",section_heading,0.6,tail_nonref_hold_zone,heading_like,short_fragment,False,True
17,11,paragraph_title,Corresponding Author,"[100, 1208, 295, 1228]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Corresponding Author""]",subsection_heading,0.6,tail_nonref_hold_zone,heading_like,none,False,True
17,12,text,"Rajat Kumar Das Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0002-8842-0821; Email: rajat@matsc.iitkgp.ac.in","[121, 1230, 586, 1318]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
17,13,paragraph_title,Authors,"[99, 1332, 173, 1353]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Authors""]",sub_subsection_heading,0.6,tail_nonref_hold_zone,heading_like,short_fragment,True,True
17,14,reference_content,"Ashis Ghosh Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India","[119, 1356, 582, 1399]",reference_item,0.85,"[""reference content label: Ashis Ghosh \u2013 Materials Science Centre, Indian Institute of ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
17,15,reference_content,"Sudhir Kumar Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India","[119, 1401, 588, 1443]",reference_item,0.85,"[""reference content label: Sudhir Kumar \u2013 Materials Science Centre, Indian Institute of""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
17,16,reference_content,"Prem Pal Singh Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0002-6503-7002","[120, 1445, 589, 1509]",reference_item,0.85,"[""reference content label: Prem Pal Singh \u2013 Materials Science Centre, Indian Institute ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
17,17,reference_content,"Suvendu Nandi School of Medical Science and Technology, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0001-6416-8636","[648, 118, 1112, 182]",reference_item,0.85,"[""reference content label: Suvendu Nandi \u2013 School of Medical Science and Technology, In""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
17,18,text,"Mahitosh Mandal School of Medical Science and Technology, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0003-3861-3323","[648, 185, 1105, 268]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,19,text,"Debabrata Pradhan Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0003-3968-9610","[648, 272, 1086, 337]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,20,text,"Bhanu Bhusan Khatua Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0002-1277-0091","[647, 338, 1096, 404]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,21,text,Complete contact information is available at: https://pubs.acs.org/10.1021/acsomega.4c04851,"[625, 411, 1011, 458]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,22,paragraph_title,Notes,"[626, 476, 683, 496]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Notes""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
17,23,text,The authors declare no competing financial interest.,"[625, 499, 1041, 522]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,24,paragraph_title,ACKNOWLEDGMENTS,"[629, 539, 867, 563]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: ACKNOWLEDGMENTS""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
17,25,text,"R.K.D. acknowledges financial support from SERB, India (Grant No. CRG/2022/001671). D.P. acknowledges the DST, Govt. of India for the grant DST/TMD/MES/2K18/26(G). M.M. highly acknowledges the support","[623, 570, 1116, 881]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,26,paragraph_title,REFERENCES,"[629, 898, 783, 921]",reference_heading,0.9,"[""references heading: REFERENCES""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
17,27,reference_content,"(1) Lee, Y.; Song, W. J.; Sun, J. Y. Hydrogel Soft Robotics. Mater. Today Phys. 2020, 15, 100258.","[627, 929, 1112, 968]",reference_item,0.85,"[""reference content label: (1) Lee, Y.; Song, W. J.; Sun, J. Y. Hydrogel Soft Robotics.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,28,reference_content,"(2) Ling, Q.; Ke, T.; Liu, W.; Ren, Z.; Zhao, L.; Gu, H. Tough, Repeatedly Adhesive, Cyclic Compression-Stable, and Conductive Dual-Network Hydrogel Sensors for Human Health Monitoring. Ind. Eng. Chem","[627, 970, 1113, 1048]",reference_item,0.85,"[""reference content label: (2) Ling, Q.; Ke, T.; Liu, W.; Ren, Z.; Zhao, L.; Gu, H. Tou""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,29,reference_content,"(3) Wang, J.; Sun, Y.; Jia, P.; Su, J.; Zhang, X.; Wu, N.; Yu, H.; Song, Y.; Zhou, J. Wearable Nanocomposite Hydrogel Temperature Sensor Based on Structural Colors. Chem. Eng. J. 2023, 476, 146602.","[628, 1050, 1114, 1109]",reference_item,0.85,"[""reference content label: (3) Wang, J.; Sun, Y.; Jia, P.; Su, J.; Zhang, X.; Wu, N.; Y""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,30,reference_content,"(4) Chen, J.; Shi, D.; Yang, Z.; Dong, W.; Chen, M. A Solvent-Exchange Strategy to Develop Stiff and Tough Hydrogel Electrolytes for Flexible and Stable Supercapacitor. J. Power Sources 2022, 532, 231","[628, 1110, 1113, 1187]",reference_item,0.85,"[""reference content label: (4) Chen, J.; Shi, D.; Yang, Z.; Dong, W.; Chen, M. A Solven""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,31,reference_content,"(5) Hua, J.; Su, M.; Sun, X.; Li, J.; Sun, Y.; Qiu, H.; Shi, Y.; Pan, L. Hydrogel-Based Bioelectronics and Their Applications in Health Monitoring. Biosensors 2023, 13 (7), 696.","[628, 1190, 1113, 1248]",reference_item,0.85,"[""reference content label: (5) Hua, J.; Su, M.; Sun, X.; Li, J.; Sun, Y.; Qiu, H.; Shi,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,32,reference_content,"(6) Du, Y.; Du, W.; Lin, D.; Ai, M.; Li, S.; Zhang, L. Recent Progress on Hydrogel-Based Piezoelectric Devices for Biomedical Applications. Micromachines 2023, 14 (1), 167.","[628, 1250, 1113, 1308]",reference_item,0.85,"[""reference content label: (6) Du, Y.; Du, W.; Lin, D.; Ai, M.; Li, S.; Zhang, L. Recen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,33,reference_content,"(7) Lu, D.; Zhu, M.; Li, X.; Zhu, Z.; Lin, X.; Guo, C. F.; Xiang, X. Thermosensitive Hydrogel-Based, High Performance Flexible Sensors for Multi-Functional e-Skins. J. Mater. Chem. A 2023, 11 (34), 18","[626, 1309, 1113, 1387]",reference_item,0.85,"[""reference content label: (7) Lu, D.; Zhu, M.; Li, X.; Zhu, Z.; Lin, X.; Guo, C. F.; X""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,34,reference_content,"(8) Fu, R.; Tu, L.; Zhou, Y.; Fan, L.; Zhang, F.; Wang, Z.; Xing, J.; Chen, D.; Deng, C.; Tan, G.; et al. A Tough and Self-Powered Hydrogel for Artificial Skin. Chem. Mater. 2019, 31 (23), 98509860.","[626, 1390, 1114, 1449]",reference_item,0.85,"[""reference content label: (8) Fu, R.; Tu, L.; Zhou, Y.; Fan, L.; Zhang, F.; Wang, Z.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,35,reference_content,"(9) Deng, Z.; Wang, H.; Ma, P. X.; Guo, B. Self-Healing Conductive Hydrogels: Preparation, Properties and Applications. Nanoscale 2020, 12, 12241246.","[626, 1448, 1113, 1508]",reference_item,0.85,"[""reference content label: (9) Deng, Z.; Wang, H.; Ma, P. X.; Guo, B. Self-Healing Cond""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
17,36,number,33220,"[584, 1528, 629, 1545]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
17,37,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1559]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
18,0,header,ACS Omega,"[100, 78, 209, 98]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
18,1,header,http://pubs.acs.org/journal/acsodf,"[501, 80, 745, 98]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
18,2,header,Article,"[1052, 80, 1100, 97]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
18,3,reference_content,"(10) Zhang, H.; Guo, J.; Wang, Y.; Sun, L.; Zhao, Y. Stretchable and Conductive Composite Structural Color Hydrogel Films as Bionic Electronic Skins. Adv. Sci. 2021, 8, 2102156.","[98, 116, 586, 175]",reference_item,0.85,"[""reference content label: (10) Zhang, H.; Guo, J.; Wang, Y.; Sun, L.; Zhao, Y. Stretch""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,4,reference_content,"(11) Hou, J.; Ren, X.; Guan, S.; Duan, L.; Gao, G. H.; Kuai, Y.; Zhang, H. Rapidly Recoverable, Anti-Fatigue, Super-Tough Double-Network Hydrogels Reinforced by Macromolecular Microspheres. Soft Matte","[99, 177, 585, 256]",reference_item,0.85,"[""reference content label: (11) Hou, J.; Ren, X.; Guan, S.; Duan, L.; Gao, G. H.; Kuai,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,5,reference_content,"(12) Okumura, Y.; Ito, K. The Polyrotaxane Gel: A Topological Gel by Figure-of-Eight Cross-Links. Adv. Mater. 2001, 13 (7), 485487.","[98, 258, 585, 297]",reference_item,0.85,"[""reference content label: (12) Okumura, Y.; Ito, K. The Polyrotaxane Gel: A Topologica""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,6,reference_content,"(13) Chen, Q.; Chen, H.; Zhu, L.; Zheng, J. Fundamentals of Double Network Hydrogels. J. Mater. Chem. B 2015, 3 (18), 36543676.","[99, 297, 585, 357]",reference_item,0.85,"[""reference content label: (13) Chen, Q.; Chen, H.; Zhu, L.; Zheng, J. Fundamentals of ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,7,reference_content,"(14) Zhong, M.; Liu, Y. T.; Liu, X. Y.; Shi, F. K.; Zhang, L. Q.; Zhu, M. F.; Xie, X. M. Dually Cross-Linked Single Network Poly(Acrylic Acid) Hydrogels with Superior Mechanical Properties and Water A","[99, 359, 586, 439]",reference_item,0.85,"[""reference content label: (14) Zhong, M.; Liu, Y. T.; Liu, X. Y.; Shi, F. K.; Zhang, L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,8,reference_content,"(15) Gong, J. P.; Katsuyama, Y.; Kurokawa, T.; Osada, Y. Double-Network Hydrogels with Extremely High Mechanical Strength. Adv. Mater. 2003, 15 (14), 11551158.","[99, 440, 586, 499]",reference_item,0.85,"[""reference content label: (15) Gong, J. P.; Katsuyama, Y.; Kurokawa, T.; Osada, Y. Dou""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,9,reference_content,"(16) Shen, J.; Li, N.; Ye, M. Preparation and Characterization of Dual-Sensitive Double Network Hydrogels with Clay as a Physical Crosslinker. Appl. Clay Sci. 2015, 103, 4045.","[99, 500, 586, 560]",reference_item,0.85,"[""reference content label: (16) Shen, J.; Li, N.; Ye, M. Preparation and Characterizati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,10,reference_content,"(17) Shi, S.; Peng, X.; Liu, T.; Chen, Y. N.; He, C.; Wang, H. Facile Preparation of Hydrogen-Bonded Supramolecular Polyvinyl Alcohol-Glycerol Gels with Excellent Thermoplasticity and Mechanical Prope","[99, 562, 586, 640]",reference_item,0.85,"[""reference content label: (17) Shi, S.; Peng, X.; Liu, T.; Chen, Y. N.; He, C.; Wang, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,11,reference_content,"(18) Ghosh, A.; Pandit, S.; Kumar, S.; Ganguly, D.; Chattopadhyay, S.; Pradhan, D.; Das, R. K. Designing Dynamic Metal-Coordinated Hydrophobically Associated Mechanically Robust and Stretchable Hydrog","[99, 641, 586, 761]",reference_item,0.85,"[""reference content label: (18) Ghosh, A.; Pandit, S.; Kumar, S.; Ganguly, D.; Chattopa""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,12,reference_content,"(19) Luo, F.; Sun, T. L.; Nakajima, T.; Kurokawa, T.; Li, X.; Guo, H.; Huang, Y.; Zhang, H.; Gong, J. P. Tough Polyion-Complex Hydrogels from Soft to Stiff Controlled by Monomer Structure. Polymer 201","[99, 762, 585, 843]",reference_item,0.85,"[""reference content label: (19) Luo, F.; Sun, T. L.; Nakajima, T.; Kurokawa, T.; Li, X.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,13,reference_content,"(20) Jiang, H.; Duan, L.; Ren, X.; Gao, G. Hydrophobic Association Hydrogels with Excellent Mechanical and Self-Healing Properties. Eur. Polym. J. 2019, 112, 660669.","[99, 843, 585, 903]",reference_item,0.85,"[""reference content label: (20) Jiang, H.; Duan, L.; Ren, X.; Gao, G. Hydrophobic Assoc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,14,reference_content,"(21) Holten-Andersen, N.; Harrington, M. J.; Birkedal, H.; Lee, B. P.; Messersmith, P. B.; Lee, K. Y. C.; Waite, J. H. PH-Induced Metal-Ligand Cross-Links Inspired by Mussel Yield Self-Healing Polymer","[99, 905, 584, 1004]",reference_item,0.85,"[""reference content label: (21) Holten-Andersen, N.; Harrington, M. J.; Birkedal, H.; L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,15,reference_content,"(22) Liang, Y.; Li, Z.; Huang, Y.; Yu, R.; Guo, B. Dual-Dynamic-Bond Cross-Linked Antibacterial Adhesive Hydrogel Sealants with On-Demand Removability for Post-Wound-Closure and Infected Wound Healing","[99, 1006, 585, 1084]",reference_item,0.85,"[""reference content label: (22) Liang, Y.; Li, Z.; Huang, Y.; Yu, R.; Guo, B. Dual-Dyna""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,16,reference_content,"(23) Guo, B.; Liang, Y.; Dong, R. Physical Dynamic Double-Network Hydrogels as Dressings to Facilitate Tissue Repair. Nat. Protoc. 2023, 18, 33223354.","[99, 1086, 584, 1145]",reference_item,0.85,"[""reference content label: (23) Guo, B.; Liang, Y.; Dong, R. Physical Dynamic Double-Ne""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,17,reference_content,"(24) Ghosh, A.; Panda, P.; Ganguly, D.; Chattopadhyay, S.; Das, R. K. Dynamic MetalLigand Cross-Link Promoted Mechanically Robust and PH Responsive Hydrogels for Shape Memory, Programmable Actuation ","[99, 1146, 585, 1245]",reference_item,0.85,"[""reference content label: (24) Ghosh, A.; Panda, P.; Ganguly, D.; Chattopadhyay, S.; D""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,18,reference_content,"(25) Panda, P.; Dutta, A.; Ganguly, D.; Chattopadhyay, S.; Das, R. K. Engineering Hydrophobically Associated Hydrogels with Rapid Self-Recovery and Tunable Mechanical Properties Using Metal-Ligand Int","[99, 1247, 585, 1326]",reference_item,0.85,"[""reference content label: (25) Panda, P.; Dutta, A.; Ganguly, D.; Chattopadhyay, S.; D""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,19,reference_content,"(26) Dutta, A.; Ghosal, K.; Sarkar, K.; Pradhan, D.; Das, R. K. From Ultrastiff to Soft Materials: Exploiting Dynamic Metal Ligand Cross-Links to Access Polymer Hydrogels Combining Customized Mechan","[99, 1328, 586, 1427]",reference_item,0.85,"[""reference content label: (26) Dutta, A.; Ghosal, K.; Sarkar, K.; Pradhan, D.; Das, R.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,20,reference_content,"(27) Kolya, H.; Das, S.; Tripathy, T. Synthesis of Starch-g-Poly-(N-Methylacrylamide-Co-Acrylic Acid) and Its Application for the Removal of Mercury (II) from Aqueous Solution by Adsorption. Eur. Poly","[98, 1429, 586, 1509]",reference_item,0.85,"[""reference content label: (27) Kolya, H.; Das, S.; Tripathy, T. Synthesis of Starch-g-""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,21,reference_content,"(28) Kolya, H.; Roy, A.; Tripathy, T. Starch-g-Poly-(N, N-Dimethyl Acrylamide-Co-Acrylic Acid): An Efficient Cr (VI) Ion Binder. Int. J. Biol. Macromol. 2015, 72, 560568.","[627, 116, 1113, 175]",reference_item,0.85,"[""reference content label: (28) Kolya, H.; Roy, A.; Tripathy, T. Starch-g-Poly-(N, N-Di""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,22,reference_content,"(29) Lin, Y.; Hong, Y.; Song, Q.; Zhang, Z.; Gao, J.; Tao, T. Highly Efficient Removal of Copper Ions from Water Using Poly(Acrylic Acid)-Grafted Chitosan Adsorbent. Colloid Polym. Sci. 2017, 295 (4),","[626, 177, 1113, 256]",reference_item,0.85,"[""reference content label: (29) Lin, Y.; Hong, Y.; Song, Q.; Zhang, Z.; Gao, J.; Tao, T""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,23,reference_content,"(30) Rivas, B. L.; Villoslada, I. M. Chelation Properties of Polymer Complexes of poly(acrylic acid) with poly(acrylamide), and poly(acrylic acid) with poly(N,N-dimethylacrylamide). Macromol. Chem. Ph","[627, 258, 1113, 338]",reference_item,0.85,"[""reference content label: (30) Rivas, B. L.; Villoslada, I. M. Chelation Properties of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,24,reference_content,"(31) Zhang, H.; Cheng, Y.; Hou, X.; Yang, B.; Guo, F. Ionic Effects on the Mechanical and Swelling Properties of a Poly(Acrylic Acid/Acrylamide) Double Crosslinking Hydrogel. New J. Chem. 2018, 42(11)","[626, 339, 1114, 419]",reference_item,0.85,"[""reference content label: (31) Zhang, H.; Cheng, Y.; Hou, X.; Yang, B.; Guo, F. Ionic ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,25,reference_content,"(32) Lin, P.; Ma, S.; Wang, X.; Zhou, F. Molecularly Engineered Dual-Crosslinked Hydrogel with Ultrahigh Mechanical Strength, Toughness, and Good Self-Recovery. Adv. Mater. 2015, 27 (12), 20542059.","[626, 420, 1113, 498]",reference_item,0.85,"[""reference content label: (32) Lin, P.; Ma, S.; Wang, X.; Zhou, F. Molecularly Enginee""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,26,reference_content,"(33) Tran, V. T.; Mredha, M. T. I.; Pathak, S. K.; Yoon, H.; Cui, J.; Jeon, I. Conductive Tough Hydrogels with a Staggered Ion-Coordinating Structure for High Self-Recovery Rate. ACS Appl. Mater. Inte","[626, 500, 1113, 581]",reference_item,0.85,"[""reference content label: (33) Tran, V. T.; Mredha, M. T. I.; Pathak, S. K.; Yoon, H.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,27,reference_content,"(34) Simha, N. K.; Carlson, C. S.; Lewis, J. L. Evaluation of Fracture Toughness of Cartilage by Micropenetration. J. Mater. Sci.: Mater. Med. 2004, 15 (5), 631639.","[627, 582, 1113, 641]",reference_item,0.85,"[""reference content label: (34) Simha, N. K.; Carlson, C. S.; Lewis, J. L. Evaluation o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,28,reference_content,"(35) Rivlin, R. S.; Thomas, A. G. Rupture of Rubber. I. Characteristic Energy for Tearing. J. Polym. Sci. 1953, 10, 291318.","[628, 642, 1113, 682]",reference_item,0.85,"[""reference content label: (35) Rivlin, R. S.; Thomas, A. G. Rupture of Rubber. I. Char""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,29,reference_content,"(36) Sun, J. Y.; Zhao, X.; Illeperuma, W. R. K.; Chaudhuri, O.; Oh, K. H.; Mooney, D. J.; Vlassak, J. J.; Suo, Z. Highly Stretchable and Tough Hydrogels. Nature 2012, 489 (7414), 133136.","[627, 682, 1113, 741]",reference_item,0.85,"[""reference content label: (36) Sun, J. Y.; Zhao, X.; Illeperuma, W. R. K.; Chaudhuri, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,30,reference_content,"(37) Fuchs, S.; Shariati, K.; Ma, M. Specialty Tough Hydrogels and Their Biomedical Applications. Adv. Healthc. Mater. 2020, 9 (2), 1901396.","[627, 742, 1113, 801]",reference_item,0.85,"[""reference content label: (37) Fuchs, S.; Shariati, K.; Ma, M. Specialty Tough Hydroge""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,31,reference_content,"(38) Moghadam, M. N.; Pioletti, D. P. Improving Hydrogels' Toughness by Increasing the Dissipative Properties of Their Network. J. Mech. Behav. Biomed. Mater. 2015, 41, 161167.","[627, 803, 1113, 862]",reference_item,0.85,"[""reference content label: (38) Moghadam, M. N.; Pioletti, D. P. Improving Hydrogels' T""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,32,reference_content,"(39) Liu, H.; Cao, L.; Wang, X.; Xu, C.; Huo, H.; Jiang, B.; Yuan, H.; Lin, Z.; Zhang, P. A Highly Stretchable and Sensitive Carboxymethyl Chitosan-Based Hydrogel for Flexible Strain Sensors. J. Mater","[627, 864, 1113, 943]",reference_item,0.85,"[""reference content label: (39) Liu, H.; Cao, L.; Wang, X.; Xu, C.; Huo, H.; Jiang, B.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,33,reference_content,"(40) Gan, D.; Xing, W.; Jiang, L.; Fang, J.; Zhao, C.; Ren, F.; Fang, L.; Wang, K.; Lu, X. Plant-Inspired Adhesive and Tough Hydrogel Based on Ag-Lignin Nanoparticles-Triggered Dynamic Redox Catechol ","[626, 945, 1113, 1025]",reference_item,0.85,"[""reference content label: (40) Gan, D.; Xing, W.; Jiang, L.; Fang, J.; Zhao, C.; Ren, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,34,reference_content,"(41) Han, L.; Wang, M.; Prieto-López, L. O.; Deng, X.; Cui, J. Self-Hydrophobization in a Dynamic Hydrogel for Creating Nonspecific Repeatable Underwater Adhesion. Adv. Funct. Mater. 2020, 30 (7), 190","[627, 1026, 1113, 1104]",reference_item,0.85,"[""reference content label: (41) Han, L.; Wang, M.; Prieto-L\u00f3pez, L. O.; Deng, X.; Cui, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,35,reference_content,"(42) Wang, Z.; Chen, J.; Wang, L.; Gao, G.; Zhou, Y.; Wang, R.; Xu, T.; Yin, J.; Fu, J. Flexible and Wearable Strain Sensors Based on Tough and Self-Adhesive Ion Conducting Hydrogels. J. Mater. Chem. ","[626, 1106, 1113, 1185]",reference_item,0.85,"[""reference content label: (42) Wang, Z.; Chen, J.; Wang, L.; Gao, G.; Zhou, Y.; Wang, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,36,reference_content,"(43) Meng, L.; He, J.; Pan, C. Research Progress on HydrogelElastomer Adhesion. Materials 2022, 15, 2548.","[627, 1186, 1112, 1226]",reference_item,0.85,"[""reference content label: (43) Meng, L.; He, J.; Pan, C. Research Progress on Hydrogel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,37,reference_content,"(44) Lv, H.; Zong, S.; Li, T.; Zhao, Q.; Xu, Z.; Duan, J. Room Temperature Ca $ ^{2+} $-Initiated Free Radical Polymerization for the Preparation of Conductive, Adhesive, Anti-Freezing and UV-Blocking","[626, 1228, 1114, 1326]",reference_item,0.85,"[""reference content label: (44) Lv, H.; Zong, S.; Li, T.; Zhao, Q.; Xu, Z.; Duan, J. Ro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,38,reference_content,"(45) Gilbert, J. A.; Davies, P. L.; Laybourn-Parry, J. A. Hyperactive, Ca $ ^{2+} $-Dependent Antifreeze Protein in an Antarctic Bacterium. FEMS Microbiol Lett. 2005, 245, 6772.","[627, 1328, 1113, 1387]",reference_item,0.85,"[""reference content label: (45) Gilbert, J. A.; Davies, P. L.; Laybourn-Parry, J. A. Hy""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,39,reference_content,"(46) Li, T.; Xu, K.; Shi, L.; Wu, J.; He, J.; Zhang, Z. Dual-Ionic Hydrogels with Ultralong Anti-Dehydration Lifespan and Superior Anti-Icing Performance. Appl. Mater. Today 2022, 26, 101367.","[626, 1388, 1114, 1449]",reference_item,0.85,"[""reference content label: (46) Li, T.; Xu, K.; Shi, L.; Wu, J.; He, J.; Zhang, Z. Dual""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,40,reference_content,"(47) Wang, Y.; Pang, B.; Wang, R.; Gao, Y.; Liu, Y.; Gao, C. An Anti-Freezing Wearable Strain Sensor Based on Nanoarchitectonics with a Highly Stretchable, Tough, Anti-Fatigue and Fast Self-Healing","[626, 1450, 1115, 1510]",reference_item,0.85,"[""reference content label: (47) Wang, Y.; Pang, B.; Wang, R.; Gao, Y.; Liu, Y.; Gao, C.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
18,41,number,33221,"[584, 1528, 628, 1545]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
18,42,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
19,0,header,ACS Omega,"[100, 77, 209, 98]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
19,1,header,http://pubs.acs.org/journal/acsodf,"[501, 80, 745, 98]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
19,2,header,Article,"[1052, 80, 1100, 97]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
19,3,reference_content,"Composite Hydrogel. Compos. Part A Appl. Sci. Manuf. 2022, 160, 107039.","[99, 117, 585, 155]",reference_item,0.85,"[""reference content label: Composite Hydrogel. Compos. Part A Appl. Sci. Manuf. 2022, 1""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
19,4,reference_content,"(48) Song, Y.; Niu, L.; Ma, P.; Li, X.; Feng, J.; Liu, Z. Rapid Preparation of Antifreezing Conductive Hydrogels for Flexible Strain Sensors and Supercapacitors. ACS Appl. Mater. Interfaces 2023, 15(7","[99, 158, 586, 236]",reference_item,0.85,"[""reference content label: (48) Song, Y.; Niu, L.; Ma, P.; Li, X.; Feng, J.; Liu, Z. Ra""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,5,reference_content,"(49) Liu, S.; Li, L. Ultrastretchable and Self-Healing Double-Network Hydrogel for 3D Printing and Strain Sensor. ACS Appl. Mater. Interfaces 2017, 9 (31), 2642926437.","[99, 238, 584, 297]",reference_item,0.85,"[""reference content label: (49) Liu, S.; Li, L. Ultrastretchable and Self-Healing Doubl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,6,reference_content,"(50) Ge, G.; Yuan, W.; Zhao, W.; Lu, Y.; Zhang, Y.; Wang, W.; Chen, P.; Huang, W.; Si, W.; Dong, X. Highly Stretchable and Autonomously Healable Epidermal Sensor Based on Multi-Functional Hydrogel Fra","[99, 298, 586, 378]",reference_item,0.85,"[""reference content label: (50) Ge, G.; Yuan, W.; Zhao, W.; Lu, Y.; Zhang, Y.; Wang, W.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,7,reference_content,"(51) Yamada, T.; Hayamizu, Y.; Yamamoto, Y.; Yomogida, Y.; Izadi-Najafabadi, A.; Futaba, D. N.; Hata, K. A Stretchable Carbon Nanotube Strain Sensor for Human-Motion Detection. Nat. Nanotechnol. 2011,","[99, 379, 586, 458]",reference_item,0.85,"[""reference content label: (51) Yamada, T.; Hayamizu, Y.; Yamamoto, Y.; Yomogida, Y.; I""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,8,reference_content,"(52) Xin, Y.; Liang, J.; Ren, L.; Gao, W.; Qiu, W.; Li, Z.; Qu, B.; Peng, A.; Ye, Z.; Fu, J. Tough, Healable, and Sensitive Strain Sensor Based on Multiphysically Cross-Linked Hydrogel for Ionic Skin.","[99, 460, 585, 539]",reference_item,0.85,"[""reference content label: (52) Xin, Y.; Liang, J.; Ren, L.; Gao, W.; Qiu, W.; Li, Z.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,9,reference_content,"(53) Arévalo, F.; Uscategui, Y. L.; Diaz, L.; Cobo, M.; Valero, M. F. Effect of the Incorporation of Chitosan on the Physico-Chemical, Mechanical Properties and Biological Activity on a Mixture of Pol","[99, 540, 586, 640]",reference_item,0.85,"[""reference content label: (53) Ar\u00e9valo, F.; Uscategui, Y. L.; Diaz, L.; Cobo, M.; Vale""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,10,reference_content,"(54) Wadajkar, A. S.; Ahn, C.; Nguyen, K. T.; Zhu, Q.; Komabayashi, T. In Vitro Cytotoxicity Evaluation of Four Vital Pulp Therapy Materials on L929 Fibroblasts. ISRN Dentistry 2014, 2014, 191068.","[99, 641, 585, 719]",reference_item,0.85,"[""reference content label: (54) Wadajkar, A. S.; Ahn, C.; Nguyen, K. T.; Zhu, Q.; Komab""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,11,reference_content,"(55) Wang, M. O.; Etheridge, J. M.; Thompson, J. A.; Vorwald, C. E.; Dean, D.; Fisher, J. P. Evaluation of the in Vitro Cytotoxicity of Cross-Linked Biomaterials. Biomacromolecules 2013, 14 (5), 1321","[99, 722, 586, 801]",reference_item,0.85,"[""reference content label: (55) Wang, M. O.; Etheridge, J. M.; Thompson, J. A.; Vorwald""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,12,reference_content,"(56) Idrees, A.; Chiono, V.; Ciardelli, G.; Shah, S.; Viebahn, R.; Zhang, X.; Salber, J. Validation of in Vitro Assays in Three Dimensional Human Dermal Constructs. Int. J. Artif. Organs. 2018, 41 (11","[99, 803, 585, 882]",reference_item,0.85,"[""reference content label: (56) Idrees, A.; Chiono, V.; Ciardelli, G.; Shah, S.; Viebah""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,13,reference_content,"(57) Peng, K.; Wang, W.; Zhang, J.; Ma, Y.; Lin, L.; Gan, Q.; Chen, Y.; Feng, C. Preparation of Chitosan/Sodium Alginate Conductive Hydrogels with High Salt Contents and Their Application in Flexible ","[98, 884, 585, 982]",reference_item,0.85,"[""reference content label: (57) Peng, K.; Wang, W.; Zhang, J.; Ma, Y.; Lin, L.; Gan, Q.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,14,reference_content,"(58) He, X.; Zhuang, T.; Ruan, S.; Xia, X.; Xia, Y.; Zhang, J.; Huang, H.; Gan, Y.; Zhang, W. An Innovative Poly(Ionic Liquid) Hydrogel-Based Anti-Freezing Electrolyte with High Conductivity for Super","[99, 985, 585, 1064]",reference_item,0.85,"[""reference content label: (58) He, X.; Zhuang, T.; Ruan, S.; Xia, X.; Xia, Y.; Zhang, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,15,reference_content,"(59) Cai, H.; Zhang, D.; Zhang, H.; Tang, M.; Xu, Z.; Xia, H.; Li, K.; Wang, J. Trehalose-Enhanced Ionic Conductive Hydrogels with Extreme Stretchability, Self-Adhesive and Anti-Freezing Abilities for","[99, 1066, 586, 1165]",reference_item,0.85,"[""reference content label: (59) Cai, H.; Zhang, D.; Zhang, H.; Tang, M.; Xu, Z.; Xia, H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,16,reference_content,"(60) Qin, L.; Yang, G.; Li, D.; Ou, K.; Zheng, H.; Fu, Q.; Sun, Y. High Area Energy Density of All-Solid-State Supercapacitor Based on Double-Network Hydrogel with High Content of Graphene/PANI Fiber.","[99, 1167, 585, 1246]",reference_item,0.85,"[""reference content label: (60) Qin, L.; Yang, G.; Li, D.; Ou, K.; Zheng, H.; Fu, Q.; S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,17,reference_content,"(61) Yin, B. S.; Zhang, S. W.; Ren, Q. Q.; Liu, C.; Ke, K.; Wang, Z. B. Elastic Soft Hydrogel Supercapacitor for Energy Storage. J. Mater. Chem. A 2017, 5 (47), 2494224950.","[100, 1247, 585, 1306]",reference_item,0.85,"[""reference content label: (61) Yin, B. S.; Zhang, S. W.; Ren, Q. Q.; Liu, C.; Ke, K.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,18,reference_content,"(62) Xu, S.; Liang, X.; Ge, K.; Yuan, H.; Liu, G. Supramolecular Gel Electrolyte-Based Supercapacitors with a Comparable Dependence of Electrochemical Performances on Electrode Thickness to Those Base","[99, 1307, 586, 1407]",reference_item,0.85,"[""reference content label: (62) Xu, S.; Liang, X.; Ge, K.; Yuan, H.; Liu, G. Supramolec""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,19,reference_content,"(63) Dutta, A.; Panda, P.; Das, A.; Ganguly, D.; Chattopadhyay, S.; Banerji, P.; Pradhan, D.; Das, R. K. Intrinsically Freezing-Tolerant, Conductive, and Adhesive Proton Donor-Acceptor Hydrogel for Mu","[98, 1409, 586, 1508]",reference_item,0.85,"[""reference content label: (63) Dutta, A.; Panda, P.; Das, A.; Ganguly, D.; Chattopadhy""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,20,reference_content,"(64) Lin, T.; Shi, M.; Huang, F.; Peng, J.; Bai, Q.; Li, J.; Zhai, M. One-Pot Synthesis of a Double-Network Hydrogel Electrolyte with Extraordinarily Excellent Mechanical Properties for a Highly Compr","[626, 117, 1114, 216]",reference_item,0.85,"[""reference content label: (64) Lin, T.; Shi, M.; Huang, F.; Peng, J.; Bai, Q.; Li, J.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,21,reference_content,"(65) Zhao, J.; Lu, Y.; Liu, Y.; Liu, L.; Yin, J.; Sun, B.; Wang, G.; Zhang, Y. A Self-Healing PVA-Linked Phytic Acid Hydrogel-Based Electrolyte for High-Performance Flexible Supercapacitors. Nanomater","[627, 218, 1113, 297]",reference_item,0.85,"[""reference content label: (65) Zhao, J.; Lu, Y.; Liu, Y.; Liu, L.; Yin, J.; Sun, B.; W""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,22,reference_content,"(66) Singh, P. P.; De, A.; Khatua, B. B. Hydro-Tunable CZTO/SWCNT/PVA/PDMS Hybrid Composites for Smart Green EMI Shielding. J. Mater. Chem. C 2022, 10 (44), 1690316913.","[626, 298, 1114, 358]",reference_item,0.85,"[""reference content label: (66) Singh, P. P.; De, A.; Khatua, B. B. Hydro-Tunable CZTO/""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,23,reference_content,"(67) Gong, S.; Sheng, X.; Li, X.; Sheng, M.; Wu, H.; Lu, X.; Qu, J. A Multifunctional Flexible Composite Film with Excellent Multi-Source Driven Thermal Management, Electromagnetic Interference Shield","[627, 359, 1114, 459]",reference_item,0.85,"[""reference content label: (67) Gong, S.; Sheng, X.; Li, X.; Sheng, M.; Wu, H.; Lu, X.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,24,reference_content,"(68) Liu, H.; Fu, R.; Su, X.; Wu, B.; Wang, H.; Xu, Y.; Liu, X. MXene Confined in Shape-Stabilized Phase Change Material Combining Enhanced Electromagnetic Interference Shielding and Thermal Managemen","[627, 460, 1114, 559]",reference_item,0.85,"[""reference content label: (68) Liu, H.; Fu, R.; Su, X.; Wu, B.; Wang, H.; Xu, Y.; Liu,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,25,reference_content,"(69) Liang, J.; Wang, Y.; Huang, Y.; Ma, Y.; Liu, Z.; Cai, J.; Zhang, C.; Gao, H.; Chen, Y. Electromagnetic Interference Shielding of Graphene/Epoxy Composites. Carbon 2009, 47 (3), 922925.","[627, 561, 1114, 621]",reference_item,0.85,"[""reference content label: (69) Liang, J.; Wang, Y.; Huang, Y.; Ma, Y.; Liu, Z.; Cai, J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,26,reference_content,"(70) Wang, S.; Li, D.; Meng, W.; Jiang, L.; Fang, D. Scalable Superelastic, and Superhydrophobic MXene/Silver Nanowire/Melamine Hybrid Sponges for High-Performance Electromagnetic Interference Shieldi","[626, 622, 1114, 701]",reference_item,0.85,"[""reference content label: (70) Wang, S.; Li, D.; Meng, W.; Jiang, L.; Fang, D. Scalabl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,27,reference_content,"(71) Jia, X.; Shen, B.; Zhang, L.; Zheng, W. Construction of Shape-Memory Carbon Foam Composites for Adjustable EMI Shielding under Self-Fixable Mechanical Deformation. Chem. Eng. J. 2021, 405, 126927","[627, 703, 1114, 781]",reference_item,0.85,"[""reference content label: (71) Jia, X.; Shen, B.; Zhang, L.; Zheng, W. Construction of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,28,reference_content,"(72) Yang, W.; Shao, B.; Liu, T.; Zhang, Y.; Huang, R.; Chen, F.; Fu, Q. Robust and Mechanically and Electrically Self-Healing Hydrogel for Efficient Electromagnetic Interference Shielding. ACS Appl. ","[627, 784, 1113, 862]",reference_item,0.85,"[""reference content label: (72) Yang, W.; Shao, B.; Liu, T.; Zhang, Y.; Huang, R.; Chen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,29,reference_content,"(73) De, A.; Paria, S.; Bera, A.; Si, S. K.; Bera, S.; Khatua, B. B. Elastomer Encapsulated Silver Nanorod Dispersed Polyacrylamide-Alginate Hydrogel for Water-Pressure-Dependent EMI Shielding Applica","[627, 864, 1114, 943]",reference_item,0.85,"[""reference content label: (73) De, A.; Paria, S.; Bera, A.; Si, S. K.; Bera, S.; Khatu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,30,reference_content,"(74) Yu, L.; Yang, Q.; Liao, J.; Zhu, Y.; Li, X.; Yang, W.; Fu, Y. A Novel 3D Silver Nanowires@polypyrrole Sponge Loaded with Water Giving Excellent Microwave Absorption Properties. Chem. Eng. J. 2018","[627, 944, 1114, 1024]",reference_item,0.85,"[""reference content label: (74) Yu, L.; Yang, Q.; Liao, J.; Zhu, Y.; Li, X.; Yang, W.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,31,reference_content,"(75) Yuan, S.; Dai, T.; Jiang, X.; Zou, H.; Liu, P. Transparent and Environmentally Adaptive Semi-Interpenetrating Network Hydrogels for Electromagnetic Interference Shielding. ACS Appl. Polym. Mater.","[627, 1026, 1113, 1105]",reference_item,0.85,"[""reference content label: (75) Yuan, S.; Dai, T.; Jiang, X.; Zou, H.; Liu, P. Transpar""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,32,reference_content,"(76) Xu, Y.; Pei, M.; Du, J.; Yang, R.; Pan, Y.; Zhang, D.; Qin, S. A Tough, Anticorrosive Hydrogel Consisting of Bio-Friendly Resources for Conductive and Electromagnetic Shielding Materials. New J. ","[626, 1106, 1115, 1185]",reference_item,0.85,"[""reference content label: (76) Xu, Y.; Pei, M.; Du, J.; Yang, R.; Pan, Y.; Zhang, D.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,33,reference_content,"(77) Xu, Y.; Tan, Y.; Xue, Y.; Pei, M.; Zhang, D.; Liu, S.; Qin, S. A Novel PVA/MWCNTs Hydrogel with High Toughness and Electromagnetic Shielding Properties. Polym. Eng. Sci. 2023, 63 (11), 35553564.","[626, 1187, 1114, 1264]",reference_item,0.85,"[""reference content label: (77) Xu, Y.; Tan, Y.; Xue, Y.; Pei, M.; Zhang, D.; Liu, S.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,34,reference_content,"(78) Chen, Z.; Xu, C.; Ma, C.; Ren, W.; Cheng, H. M. Lightweight and Flexible Graphene Foam Composites for High-Performance Electromagnetic Interference Shielding. Adv. Mater. 2013, 25 (9), 12961300.","[627, 1267, 1114, 1346]",reference_item,0.85,"[""reference content label: (78) Chen, Z.; Xu, C.; Ma, C.; Ren, W.; Cheng, H. M. Lightwe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,35,reference_content,"(79) Shen, B.; Zhai, W.; Tao, M.; Ling, J.; Zheng, W. Lightweight, Multifunctional Polyetherimide/Graphene@Fe 3 O 4 Composite Foams for Shielding of Electromagnetic Pollution. ACS Appl. Mater. Interfa","[626, 1348, 1113, 1427]",reference_item,0.85,"[""reference content label: (79) Shen, B.; Zhai, W.; Tao, M.; Ling, J.; Zheng, W. Lightw""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,36,reference_content,"(80) Ling, J.; Zhai, W.; Feng, W.; Shen, B.; Zhang, J.; Zheng, W. G. Facile Preparation of Lightweight Microcellular Polyetherimide/Graphene Composite Foams for Electromagnetic Interference Shielding.","[626, 1429, 1114, 1509]",reference_item,0.85,"[""reference content label: (80) Ling, J.; Zhai, W.; Feng, W.; Shen, B.; Zhang, J.; Zhen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
19,37,number,33222,"[584, 1528, 629, 1544]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
19,38,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1529, 1113, 1558]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
20,0,header,ACS Omega,"[100, 78, 209, 98]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
20,1,header,http://pubs.acs.org/journal/acsodf,"[501, 80, 745, 98]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
20,2,header,Article,"[1052, 80, 1100, 98]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
20,3,reference_content,"(81) Yan, D. X.; Ren, P. G.; Pang, H.; Fu, Q.; Yang, M. B.; Li, Z. M. Efficient Electromagnetic Interference Shielding of Lightweight Graphene/Polystyrene Composite. J. Mater. Chem. 2012, 22 (36), 187","[100, 116, 585, 196]",reference_item,0.85,"[""reference content label: (81) Yan, D. X.; Ren, P. G.; Pang, H.; Fu, Q.; Yang, M. B.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,4,reference_content,"(82) Zhang, H.-B.; Yan, Q.; Zheng, W.-G.; He, Z.; Yu, Z.-Z. Tough GraphenePolymer Microcellular Foams for Electromagnetic Interference Shielding. ACS Appl. Mater. Interfaces 2011, 3 (3), 918924.","[99, 198, 585, 258]",reference_item,0.85,"[""reference content label: (82) Zhang, H.-B.; Yan, Q.; Zheng, W.-G.; He, Z.; Yu, Z.-Z. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,5,reference_content,"(83) Gavgani, J. N.; Adelnia, H.; Zaarei, D.; Moazzami Gudarzi, M. Lightweight Flexible Polyurethane/Reduced Ultralarge Graphene Oxide Composite Foams for Electromagnetic Interference Shielding. RSC A","[99, 258, 585, 337]",reference_item,0.85,"[""reference content label: (83) Gavgani, J. N.; Adelnia, H.; Zaarei, D.; Moazzami Gudar""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,6,reference_content,"(84) Li, Y.; Pei, X.; Shen, B.; Zhai, W.; Zhang, L.; Zheng, W. Polyimide/Graphene Composite Foam Sheets with Ultrahigh Thermostability for Electromagnetic Interference Shielding. RSC Adv. 2015, 5 (31)","[99, 339, 585, 419]",reference_item,0.85,"[""reference content label: (84) Li, Y.; Pei, X.; Shen, B.; Zhai, W.; Zhang, L.; Zheng, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,7,reference_content,"(85) De, A.; Singh, P. P.; Mondal, A.; Khatua, B. B. Lithium Chloride-Driven Enhanced Conductivity of Silicone-Encapsulated Polyacrylamide/Alginate/Ionic Liquid-Based Transparent Hydrogel for High-Per","[99, 421, 586, 519]",reference_item,0.85,"[""reference content label: (85) De, A.; Singh, P. P.; Mondal, A.; Khatua, B. B. Lithium""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,8,reference_content,"(86) Chen, J.; Shen, B.; Jia, X.; Liu, Y.; Zheng, W. Lightweight and Compressible Anisotropic Honeycomb-like Graphene Composites for Highly Tunable Electromagnetic Shielding with Multiple Functions. M","[99, 520, 585, 600]",reference_item,0.85,"[""reference content label: (86) Chen, J.; Shen, B.; Jia, X.; Liu, Y.; Zheng, W. Lightwe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,9,reference_content,"(87) Andryieuski, A.; Kuznetsova, S. M.; Zhukovsky, S. V.; Kivshar, Y. S.; Lavrinenko, A. V. W. Water: Promising Opportunities For Tunable All-dielectric Electromagnetic Metamaterials. Sci. Rep. 2015,","[99, 601, 585, 681]",reference_item,0.85,"[""reference content label: (87) Andryieuski, A.; Kuznetsova, S. M.; Zhukovsky, S. V.; K""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,10,reference_content,"(88) Hogg, D. C.; Guiraud, F. O. Microwave Measurements of the Absolute Values of Absorption by Water Vapour in the Atmosphere. Nature 1979, 279 (5712), 408409.","[99, 682, 585, 742]",reference_item,0.85,"[""reference content label: (88) Hogg, D. C.; Guiraud, F. O. Microwave Measurements of t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,11,reference_content,"(89) Buchner, R.; Barthel, J.; Stauber, J. The Dielectric Relaxation of Water between 0° C and 35° C. Chem. Phys. Lett. 1999, 306 (12), 5763.","[100, 743, 585, 801]",reference_item,0.85,"[""reference content label: (89) Buchner, R.; Barthel, J.; Stauber, J. The Dielectric Re""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,12,reference_content,"(90) Garner, H. R.; Ohkawa, T.; Tuason, O.; Lee, R. L. Microwave Absorption in Substances That Form Hydration Layers with Water. Phys. Rev. A 1990, 42 (12), 72647270.","[101, 803, 584, 863]",reference_item,0.85,"[""reference content label: (90) Garner, H. R.; Ohkawa, T.; Tuason, O.; Lee, R. L. Micro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,13,reference_content,"(91) Lai, D.; Chen, X.; Wang, G.; Xu, X.; Wang, Y. Arbitrarily Reshaping and Instantaneously Self-Healing Graphene Composite Hydrogel with Molecule Polarization-Enhanced Ultrahigh Electromagnetic Inte","[99, 864, 585, 962]",reference_item,0.85,"[""reference content label: (91) Lai, D.; Chen, X.; Wang, G.; Xu, X.; Wang, Y. Arbitrari""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,14,reference_content,"(92) Zhu, M.; Yan, X.; Xu, H.; Xu, Y.; Kong, L. Ultralight, compressible, and anisotropic MXene@Wood nanocomposite aerogel with excellent electromagnetic wave shielding and absorbing properties at dif","[99, 965, 585, 1045]",reference_item,0.85,"[""reference content label: (92) Zhu, M.; Yan, X.; Xu, H.; Xu, Y.; Kong, L. Ultralight, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,15,reference_content,"(93) Zeng, Z.; Jin, H.; Chen, M.; Li, W.; Zhou, L.; Zhang, Z. Lightweight and Anisotropic Porous MWCNT/WPU Composites for Ultrahigh Performance Electromagnetic Interference Shielding. Adv. Funct. Mate","[99, 1046, 585, 1125]",reference_item,0.85,"[""reference content label: (93) Zeng, Z.; Jin, H.; Chen, M.; Li, W.; Zhou, L.; Zhang, Z""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,16,reference_content,"(94) Zhan, Z.; Song, Q.; Zhou, Z.; Lu, C. Ultrastrong and Conductive MXene/Cellulose Nanofiber Films Enhanced by Hierarchical Nano-Architecture and Interfacial Interaction for Flexible Electromagnetic","[99, 1126, 585, 1226]",reference_item,0.85,"[""reference content label: (94) Zhan, Z.; Song, Q.; Zhou, Z.; Lu, C. Ultrastrong and Co""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,17,reference_content,"(95) Jin, W.-W.; Wang, W.-K.; Mazumdar, S.; Xu, G.-Z.; Zhang, Q.-Q. Carbon Foams with Fe-Organic Network-Derived Fe3O4 for Efficient Electromagnetic Shielding. Mater. Chem. Phys. 2023, 304 (April), 12","[99, 1227, 585, 1306]",reference_item,0.85,"[""reference content label: (95) Jin, W.-W.; Wang, W.-K.; Mazumdar, S.; Xu, G.-Z.; Zhang""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,18,reference_content,"(96) Singh, P. P.; Mondal, A.; Maity, P.; Khatua, B. B. Ionic Liquid-Dispersed PDMS/SWCNT/Ag@Ni Hybrid Composite for Temperature- and Pressure-Sensitive Smart Electromagnetic Shielding Applications. J","[99, 1308, 585, 1388]",reference_item,0.85,"[""reference content label: (96) Singh, P. P.; Mondal, A.; Maity, P.; Khatua, B. B. Ioni""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,19,reference_content,"(97) Hwang, U.; Kim, J.; Seol, M.; Lee, B.; Park, I. K.; Suhr, J.; Nam, J. D. Quantitative Interpretation of Electromagnetic Interference Shielding Efficiency: Is It Really a Wave Absorber or a Reflec","[98, 1389, 585, 1467]",reference_item,0.85,"[""reference content label: (97) Hwang, U.; Kim, J.; Seol, M.; Lee, B.; Park, I. K.; Suh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,20,reference_content,"(98) Yuan, W.; Yang, J.; Yin, F.; Li, Y.; Yuan, Y. Flexible and Stretchable MXene/Polyurethane Fabrics with Delicate Wrinkle","[100, 1469, 586, 1509]",reference_item,0.85,"[""reference content label: (98) Yuan, W.; Yang, J.; Yin, F.; Li, Y.; Yuan, Y. Flexible ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,21,reference_content,"Structure Design for Effective Electromagnetic Interference Shielding at a Dynamic Stretching Process. Compos. Commun. 2020, 19 (March), 9098.","[627, 118, 1114, 175]",reference_item,0.85,"[""reference content label: Structure Design for Effective Electromagnetic Interference ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,22,reference_content,"(99) Guo, T.; Chen, X.; Su, L.; Li, C.; Huang, X.; Tang, X. Z. Stretched Graphene Nanosheets Formed the ""Obstacle Walls"" in Melamine Sponge towards Effective Electromagnetic Interference Shielding App","[626, 178, 1114, 258]",reference_item,0.85,"[""reference content label: (99) Guo, T.; Chen, X.; Su, L.; Li, C.; Huang, X.; Tang, X. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_parenthesis,True,True
20,23,image,,"[633, 869, 752, 1510]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
20,24,text,"CAS BIOFINDER DISCOVERY PLATFORM™
PRECISION DATA
FOR FASTER
DRUG
DISCOVERY","[778, 1022, 1076, 1190]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
20,25,text,"CAS BioFinder helps you identify targets, biomarkers, and pathways","[778, 1194, 1081, 1239]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
20,26,text,Unlock insights,"[791, 1261, 993, 1291]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
20,27,image,,"[948, 1414, 1093, 1500]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
20,28,number,33223,"[585, 1528, 629, 1545]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
20,29,footer,"https://doi.org/10.1021/acsomega.4c04851
ACS Omega 2024, 9, 3320433223","[891, 1530, 1112, 1558]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 aside_text Downloaded via SHANDONG UNIV on February 5, 2026 at 08:59:44 (UTC). See https://pubs.acs.org/sharingguidelines for options on how to legitimately share published articles. [2, 474, 43, 1122] noise 0.95 ["margin-band narrow/tall geometry; treated as noise"] noise 0.95 frontmatter_main_zone support_like none False False
3 1 1 header_image [98, 44, 429, 137] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False True
4 1 2 header_image [1032, 106, 1111, 127] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False True
5 1 3 header This article is licensed under CC-BY 4.0 CC [808, 136, 1113, 158] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
6 1 4 text http://pubs.acs.org/journal/acsodf [100, 166, 313, 187] structured_insert_candidate 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none False False
7 1 5 text Article [1048, 168, 1101, 188] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 frontmatter_main_zone support_like short_fragment False False
8 1 6 doc_title Dynamic Metal-Coordinated Adhesive and Self-Healable Antifreezing Hydrogels for Strain Sensing, Flexible Supercapacitors, and EMI Shielding Applications [97, 219, 1113, 328] paper_title 0.8 ["page-1 zone title_zone: Dynamic Metal-Coordinated Adhesive and Self-Healable Antifre"] paper_title 0.8 frontmatter_main_zone support_like none True True
9 1 7 text Ashis Ghosh, Sudhir Kumar, Prem Pal Singh, Suvendu Nandi, Mahitosh Mandal, Debabrata Pradhan, Bhanu Bhusan Khatua, and Rajat Kumar Das* [97, 339, 1105, 395] authors 0.8 ["page-1 zone author_zone: Ashis Ghosh, Sudhir Kumar, Prem Pal Singh, Suvendu Nandi, Ma"] authors 0.8 frontmatter_main_zone support_like none True True
10 1 8 image [102, 409, 144, 451] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
11 1 9 text Cite This: ACS Omega 2024, 9, 33204–33223 [147, 417, 462, 444] frontmatter_noise 0.7 ["keyword-like block: Cite This: ACS Omega 2024, 9, 33204\u201333223"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
12 1 10 image [626, 409, 667, 452] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
13 1 11 text Read Online [672, 418, 777, 445] figure_inner_text 0.88 ["short figure-adjacent label; treated as figure_inner_text"] figure_inner_text 0.88 frontmatter_main_zone support_like short_fragment True True
14 1 12 text ACCESS [99, 481, 211, 514] figure_inner_text 0.88 ["short figure-adjacent label; treated as figure_inner_text"] figure_inner_text 0.88 frontmatter_main_zone support_like short_fragment True True
15 1 13 text Metrics & More [282, 489, 435, 513] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 frontmatter_main_zone support_like short_fragment False False
16 1 14 image [548, 489, 576, 513] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
17 1 15 text Article Recommendations [580, 490, 772, 512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none True True
18 1 16 abstract ABSTRACT: Dynamic metal-coordinated adhesive and self-healable hydrogel materials have garnered significant attention in recent years due to their potential applications in various fields. These hydro [97, 538, 625, 826] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
19 1 17 image [862, 490, 886, 514] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
20 1 18 text Supporting Information [891, 490, 1063, 514] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none True True
21 1 19 image [638, 536, 1110, 809] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
22 1 20 abstract bond, the hydrogel exhibited a tensile strength of up to ~250 kPa and was able to stretch to 15–16 times its original length. The hydrogel exhibited a high fracture energy of ~1500 J m⁻², similar to t [92, 823, 1115, 1113] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
23 1 21 paragraph_title INTRODUCTION [101, 1157, 282, 1179] section_heading 0.9 ["explicit scholarly heading: INTRODUCTION"] section_heading 0.9 body_zone heading_like canonical_section_name True True
24 1 22 text In recent years, hydrogels have found extensive applications in flexible electronics like soft robotics, $ ^{1} $ human health monitoring, $ ^{2,3} $ supercapacitor, $ ^{4} $ biosensor, $ ^{5} $ artif [96, 1189, 588, 1500] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 1 23 text [624, 1157, 1116, 1331] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
26 1 24 footnote Received: May 23, 2024 [626, 1358, 820, 1380] frontmatter_noise 0.75 ["page-1 DOI/date footnote: Received: May 23, 2024"] frontmatter_noise 0.75 body_zone body_like none False False
27 1 25 footnote Revised: July 3, 2024 [626, 1381, 809, 1403] footnote 0.7 ["footnote label: Revised: July 3, 2024"] footnote 0.7 body_zone body_like none True True
28 1 26 footer_image [102, 1521, 337, 1560] non_body_insert 0.2 ["unrecognized label 'footer_image'"] unknown_structural 0.2 body_zone unknown_like empty False False
29 1 27 footnote Accepted: July 8, 2024 [627, 1403, 810, 1425] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Accepted: July 8, 2024"] frontmatter_noise 0.8 body_zone body_like none False False
30 1 28 image [1024, 1350, 1112, 1472] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
31 1 29 footer © 2024 The Authors. Published by American Chemical Society [374, 1513, 565, 1542] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
32 1 30 footnote Published: July 21, 2024 [626, 1426, 817, 1449] frontmatter_noise 0.75 ["page-1 DOI/date footnote: Published: July 21, 2024"] frontmatter_noise 0.75 body_zone body_like none False False
33 1 31 number 33204 [584, 1535, 629, 1554] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
34 1 32 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1521, 1113, 1551] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
35 2 0 header ACS Omega [100, 77, 210, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
36 2 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
37 2 2 header Article [1051, 80, 1100, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
38 2 3 figure_title Scheme 1. Synthesis of Metal Ion Crosslinking of Poly(AM-co-MA) Hydrogels and Depiction of Various Chemical Linking within the Hydrogel [97, 118, 1111, 166] figure_caption_candidate 0.85 ["figure_title label: Scheme 1. Synthesis of Metal Ion Crosslinking of Poly(AM-co-"] figure_caption 0.85 body_zone legend_like none False False
39 2 4 image [196, 175, 1016, 640] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
40 2 5 text to freezing and drying, to enable its multifunctional application. To enhance the mechanical robustness of hydrogels, various strategies have been explored, such as forming macromolecular microsphere [96, 668, 589, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
41 2 6 text the formation of mono-, bis-, and tris complexes of Fe³⁺ in varying pH environments. Guo and coworkers introduced dual dynamic cross-linking strategy where pH-responsive Fe³⁺-catechol interaction was [621, 667, 1117, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
42 2 7 number 33205 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
43 2 8 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
44 3 0 header ACS Omega [100, 77, 209, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
45 3 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
46 3 2 header Article [1051, 81, 1100, 97] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
47 3 3 image [181, 129, 1032, 835] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
48 3 4 figure_title Figure 1. (A) In situ metal ion gel formation. (B) XPS spectroscopy of the AM₁₀ hydrogel in the presence of Ca²⁺, Zn²⁺, and Ni²⁺ metal ions. (C) FESEM images of the AM₁₀ hydrogel (i) in the absence of [97, 850, 1111, 934] figure_caption 0.92 ["figure_title label: Figure 1. (A) In situ metal ion gel formation. (B) XPS spect"] figure_caption 0.92 display_zone legend_like figure_number True True
49 3 5 text adhesion, and water content. $ ^{18} $ But their mechanical properties did not show a significant increase because of swelling during soaking in the metal ion solution. [97, 952, 587, 1019] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
50 3 6 text In our current approach, we incorporated metal ions inside the hydrogel through in situ polymerization to prevent swelling. We used a set of different metal ions ( $ Fe^{3+} $, $ Fe^{2+} $, $ Ca^{2+ [96, 1018, 588, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 3 7 text [619, 950, 1117, 1512] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
52 3 8 number 33206 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
53 3 9 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
54 4 0 header ACS Omega [100, 77, 210, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
55 4 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
56 4 2 header Article [1051, 81, 1100, 97] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
57 4 3 chart [110, 121, 429, 349] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
58 4 4 chart [425, 125, 751, 345] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
59 4 5 chart [751, 125, 1104, 342] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
60 4 6 chart [111, 355, 419, 579] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
61 4 7 chart [423, 355, 728, 557] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
62 4 8 figure_title (F) [737, 360, 765, 387] figure_inner_text 0.9 ["panel label / figure inner text: (F)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
63 4 9 chart [769, 366, 1085, 550] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
64 4 10 chart [111, 584, 434, 814] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
65 4 11 chart [425, 581, 742, 802] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
66 4 12 chart [746, 579, 1102, 800] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
67 4 13 figure_title Figure 2. (A) Tensile stress strain diagram, (B) tensile strength and elastic modulus, (C) fracture strain and work of fracture, (D) compressive stress strain diagram, (E) compressive strength of AM₁₀ [96, 829, 1116, 934] figure_caption 0.92 ["figure_title label: Figure 2. (A) Tensile stress strain diagram, (B) tensile str"] figure_caption 0.92 display_zone legend_like figure_number True True
68 4 14 text applications even at subzero temperature and ensuring long-term durability of the device. Overall, we have successfully explored diverse applications of this in situ metal complex hydrogel synthesized [97, 951, 588, 1042] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
69 4 15 paragraph_title RESULTS AND DISCUSSIONS [101, 1061, 399, 1083] section_heading 0.6 ["unnumbered paragraph_title, inferred level section_heading: RESULTS AND DISCUSSIONS"] section_heading 0.6 body_zone heading_like none True True
70 4 16 text Synthesis and Characterization of Hydrogels. A copolymer hydrogel was synthesized using acrylamide (AM) and maleic acid (MA) as a monomer, APS as a thermal initiator, and MBAA as a chemical cross-link [96, 1089, 588, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
71 4 17 text [622, 952, 1117, 1328] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
72 4 18 text Mechanical Properties. To determine the effect of metal–ligand cross-linking on mechanical characteristics, the tensile stress–strain data for AM $ _{10} $ hydrogels were analyzed in the presence and [624, 1330, 1116, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
73 4 19 number 33207 [584, 1528, 629, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
74 4 20 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
75 5 0 header ACS Omega [100, 78, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
76 5 1 header http://pubs.acs.org/journal/acsodf [501, 80, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
77 5 2 header Article [1051, 81, 1100, 97] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
78 5 3 figure_title (A) [117, 123, 145, 148] figure_inner_text 0.9 ["panel label / figure inner text: (A)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
79 5 4 chart [120, 121, 451, 366] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
80 5 5 chart [448, 122, 772, 364] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
81 5 6 chart [764, 123, 1093, 368] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
82 5 7 chart [123, 368, 451, 613] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
83 5 8 chart [451, 369, 742, 590] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
84 5 9 chart [742, 369, 1091, 585] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
85 5 10 figure_title Figure 3. (A,B) Force–displacement curves of notched and unnotched AM₂₀-Ca²⁺ hydrogels, respectively. (C,D) Force–displacement curves of notched and unnotched AM₂₀ hydrogels, respectively. (E) Fractur [97, 630, 1117, 694] figure_caption 0.92 ["figure_title label: Figure 3. (A,B) Force\u2013displacement curves of notched and unn"] figure_caption 0.92 display_zone legend_like figure_number True True
86 5 11 text elastic modulus (Figure 2B). The inclusion of Ca²⁺ in the AM₁₀-Ca²⁺ hydrogel resulted in a 3-fold increase in tensile strength (189.3 ± 5.3 kPa) compared to the control AM₁₀ hydrogels (66.3 ± 1.1 kPa) [98, 710, 590, 1231] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
87 5 12 inline_formula $$ (749\pm15\mathrm{~kJ~m^{-3}}) $$ [175, 1221, 326, 1242] unknown_structural 0.2 ["unrecognized label 'inline_formula'"] unknown_structural 0.2 body_zone body_like none False True
88 5 13 text Consistent with the tensile properties, the compressive properties of the hydrogels followed the same trend (Figure 2D). At 80% compressive strain, AM₁₀ hydrogels exhibited a compressive strength of 1 [95, 1243, 587, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
89 5 14 text [622, 709, 1116, 1066] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
90 5 15 text In addition to the various metal ions, the composition of the comonomer mixture utilized during polymerization is a critical factor in determining the mechanical characteristics of hydrogels. The infl [622, 1068, 1117, 1510] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
91 5 16 number 33208 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
92 5 17 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
93 6 0 header ACS Omega [99, 76, 210, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
94 6 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
95 6 2 header Article [1051, 80, 1101, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
96 6 3 chart [196, 123, 612, 429] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
97 6 4 image [192, 118, 1022, 655] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
98 6 5 chart [611, 124, 1024, 430] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
99 6 6 figure_title Figure 4. (A) Cyclic tensile loading and unloading experiments of the AM₂₀-Ca²⁺ hydrogel. (B) Dissipated energy under the hysteresis loop and total energy dissipation during cyclic loading and unloadi [97, 668, 1112, 734] figure_caption 0.92 ["figure_title label: Figure 4. (A) Cyclic tensile loading and unloading experimen"] figure_caption 0.92 display_zone legend_like figure_number True True
100 6 7 text content. This can be attributed to the increase in carboxylic acid units, which results in more cross-linking points when combined with Ca²⁺, thereby enhancing the strength. However, beyond 20 wt % ma [97, 750, 587, 1111] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
101 6 8 text Fracture Energy. The AM₂₀-Ca²⁺ hydrogel, with its abundant noncovalent metal–ligand interactions, has the potential to enhance the fracture energy of the hydrogel. The fracture energy of the AM₂₀-Ca²⁺ [96, 1108, 588, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
102 6 9 text [622, 749, 1116, 1040] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
103 6 10 text Energy Dissipations under Cyclic Loading and Unloading Test. The AM₁₀-Ca²⁺ hydrogel was subjected to multiple cycles of tensile loading and unloading up to various tensile strains, as illustrated in F [621, 1043, 1116, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 6 11 number 33209 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
105 6 12 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
106 7 0 header ACS Omega [100, 78, 210, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
107 7 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
108 7 2 header Article [1051, 81, 1100, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
109 7 3 chart [122, 122, 442, 364] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
110 7 4 chart [441, 122, 763, 366] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
111 7 5 chart [763, 126, 1093, 373] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
112 7 6 chart [124, 368, 443, 608] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
113 7 7 chart [444, 371, 787, 602] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
114 7 8 chart [794, 375, 1076, 580] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
115 7 9 chart [130, 609, 449, 848] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
116 7 10 chart [447, 608, 773, 849] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
117 7 11 chart [765, 607, 1087, 847] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
118 7 12 figure_title Figure 5. Cyclic tensile loading—unloading experiments of the AM₂₀–Ca²⁺ hydrogel: (A) Self-recovery at 0 min, (B) self-recovery at 2 min, (C) self-recovery at 5 min, and (D) self-recovery at 10 min. ( [97, 863, 1117, 988] figure_caption 0.92 ["figure_title label: Figure 5. Cyclic tensile loading\u2014unloading experiments of th"] figure_caption 0.92 display_zone legend_like figure_number True True
119 7 13 text suggests that higher levels of strain resulted in a larger percentage of sacrificial bond breakage, leading to a significant increase in the energy dissipation. The impressive mechanical robustness of [97, 1005, 588, 1212] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
120 7 14 text Self-Recovery and Antifatigue Characteristics. Although many conventional hydrogels dissipate significant amount of energy during deformation, they cannot recover that energy quickly upon removal of t [95, 1210, 588, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
121 7 15 text [621, 1004, 1116, 1513] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
122 7 16 number 33210 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
123 7 17 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
124 8 0 header ACS Omega [100, 77, 210, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
125 8 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
126 8 2 header Article [1051, 81, 1100, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
127 8 3 figure_title (A) [104, 121, 130, 144] figure_inner_text 0.9 ["panel label / figure inner text: (A)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
128 8 4 image [111, 120, 1108, 399] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
129 8 5 chart [134, 409, 439, 646] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
130 8 6 chart [445, 408, 768, 642] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
131 8 7 chart [768, 410, 1092, 644] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
132 8 8 figure_title Figure 6. (A) Adhesion of the AM₂₀-Ca²⁺ hydrogel with different substrates like skin, plastic, glass, wood, metal, rubber and paper. (B) Force vs displacement graphs for lap shear tests. (C) Adhesive [99, 661, 1115, 724] figure_caption 0.92 ["figure_title label: Figure 6. (A) Adhesion of the AM\u2082\u2080-Ca\u00b2\u207a hydrogel with differ"] figure_caption 0.92 display_zone legend_like figure_number True True
133 8 9 text ties of the AM₂₀-Ca²⁺ hydrogel. When a strip of the hydrogel is stretched, the sacrificial bonds break and dissipate energy. Upon relaxation, the hydrogel promptly returns to its original length. This [95, 741, 588, 1398] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
134 8 10 text Adhesive Properties. In order to effectively utilize hydrogels for a variety of purposes, it is important for the material to possess strong adhesive properties on different types of surfaces. An inve [96, 1397, 588, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
135 8 11 text [621, 739, 1117, 1465] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
136 8 12 text Antifreezing and Antidehydration Properties. A common challenge faced by conventional hydrogels is their [625, 1465, 1116, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
137 8 13 number 33211 [584, 1528, 629, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
138 8 14 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
139 9 0 header ACS Omega [100, 77, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
140 9 1 header http://pubs.acs.org/journal/acsodf [501, 79, 745, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
141 9 2 header Article [1051, 81, 1101, 97] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
142 9 3 chart [222, 120, 583, 294] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
143 9 4 figure_title (B) [573, 122, 599, 146] figure_inner_text 0.9 ["panel label / figure inner text: (B)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
144 9 5 chart [588, 117, 987, 298] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
145 9 6 chart [234, 314, 597, 602] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
146 9 7 chart [613, 310, 984, 601] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
147 9 8 figure_title Figure 7. (A) Photographs of AM₂₀ and AM₂₀-Ca²⁺ hydrogels after keeping at −15 °C for 24 h. After 24 h, AM₂₀ lost its flexibility, whereas the AM₂₀-Ca²⁺ hydrogel still maintained its flexibility due t [96, 636, 1117, 740] figure_caption 0.92 ["figure_title label: Figure 7. (A) Photographs of AM\u2082\u2080 and AM\u2082\u2080-Ca\u00b2\u207a hydrogels af"] figure_caption 0.92 display_zone legend_like figure_number True True
148 9 9 text lack of antifreezing and antidehydration properties. Most conventional hydrogels tend to freeze when exposed to subzero temperatures, thus losing their flexibility. However, the presence of $ Ca^{2+} [96, 752, 588, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
149 9 10 text [622, 756, 1118, 1423] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
150 9 11 text One major challenge facing traditional hydrogels is their tendency to dehydrate, resulting in storage difficulties and deterioration of their functional properties over time. However, the incorporatio [624, 1421, 1116, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 9 12 number 33212 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
152 9 13 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
153 10 0 header ACS Omega [100, 77, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
154 10 1 header http://pubs.acs.org/journal/acsodf [501, 80, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
155 10 2 header Article [1051, 81, 1101, 97] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
156 10 3 figure_title (A) [158, 125, 189, 150] figure_inner_text 0.9 ["panel label / figure inner text: (A)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
157 10 4 image [159, 130, 1049, 284] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
158 10 5 figure_title (B) [157, 298, 188, 323] figure_inner_text 0.9 ["panel label / figure inner text: (B)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
159 10 6 image [177, 298, 620, 503] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
160 10 7 figure_title (C) [616, 299, 644, 323] figure_inner_text 0.9 ["panel label / figure inner text: (C)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
161 10 8 image [648, 291, 1053, 510] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
162 10 9 figure_title (D) [160, 515, 191, 544] figure_inner_text 0.9 ["panel label / figure inner text: (D)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
163 10 10 image [187, 511, 451, 719] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
164 10 11 image [491, 513, 754, 719] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
165 10 12 image [794, 513, 1054, 719] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
166 10 13 figure_title (E) [157, 737, 186, 764] figure_inner_text 0.9 ["panel label / figure inner text: (E)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
167 10 14 chart [183, 735, 409, 982] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
168 10 15 chart [415, 737, 735, 995] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
169 10 16 chart [737, 736, 1057, 989] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
170 10 17 figure_title Figure 8. (A) Schematic representation of the self-healing mechanism in the hydrogel. (B) Self-healing process of the AM₂₀-Ca²⁺ hydrogel. A rectangular piece of hydrogel was cut into two halves, one p [95, 1011, 1117, 1135] figure_caption 0.92 ["figure_title label: Figure 8. (A) Schematic representation of the self-healing m"] figure_caption 0.92 display_zone legend_like figure_number True True
171 10 18 text the AM₂₀-Ca²⁺ hydrogel greatly enhanced its ability to resist dehydration.⁴⁴,⁴⁶ The water loss of the AM₂₀-Ca²⁺ hydrogel when exposed to open air was compared to that of the AM₂₀ hydrogel (Figure S5A) [98, 1151, 588, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
172 10 19 text [623, 1153, 1114, 1219] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
173 10 20 text Self-Healing Properties. The hydrogel, composed of many reversible cross-linked bonds such as metal-ligand and hydrogen bonded cross-links, is anticipated to possess self-healing capabilities. Figure [621, 1221, 1117, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
174 10 21 number 33213 [584, 1528, 629, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
175 10 22 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
176 11 0 header ACS Omega [100, 77, 210, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
177 11 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
178 11 2 header Article [1051, 80, 1101, 97] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
179 11 3 figure_title (A) [118, 131, 155, 160] figure_inner_text 0.9 ["panel label / figure inner text: (A)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
180 11 4 image [162, 130, 440, 349] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
181 11 5 chart [447, 119, 777, 371] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
182 11 6 chart [772, 124, 1093, 356] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
183 11 7 chart [125, 374, 450, 628] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
184 11 8 chart [448, 376, 772, 627] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
185 11 9 chart [767, 375, 1087, 624] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
186 11 10 chart [128, 629, 449, 876] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
187 11 11 chart [451, 628, 769, 877] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
188 11 12 chart [773, 627, 1088, 877] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
189 11 13 figure_title Figure 9. (A) Demonstration of conductive nature of the AM₂₀-Ca²⁺ hydrogel at room temperature (25 °C) and subambient temperature (−15 °C). Connecting with a battery (using the mentioned circuit), the [98, 891, 1116, 1038] figure_caption 0.92 ["figure_title label: Figure 9. (A) Demonstration of conductive nature of the AM\u2082\u2080"] figure_caption 0.92 display_zone legend_like figure_number True True
190 11 14 text could be stretched, bent, and twisted without delamination at the cutting site (Figure 8B). This represents the hydrogel's excellent self-healing qualities. The self-healing process could be visually [97, 1056, 588, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
191 11 15 text [624, 1054, 1115, 1190] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
192 11 16 text Conductive Properties. The presence of metal ions is expected to make this gel ionically conducting. In order to investigate this conductive property, a rectangular AM₂₀-Ca²⁺ hydrogel sample (10 mm × [623, 1192, 1116, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
193 11 17 number 33214 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
194 11 18 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
195 12 0 header ACS Omega [100, 77, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
196 12 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
197 12 2 header Article [1051, 80, 1100, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
198 12 3 chart [177, 123, 471, 361] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
199 12 4 chart [471, 127, 733, 589] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
200 12 5 chart [736, 126, 1038, 361] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
201 12 6 chart [179, 366, 477, 598] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
202 12 7 chart [737, 367, 1037, 598] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
203 12 8 figure_title (E) [182, 603, 210, 629] figure_inner_text 0.9 ["panel label / figure inner text: (E)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
204 12 9 chart [218, 601, 424, 804] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
205 12 10 chart [423, 603, 694, 814] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
206 12 11 chart [690, 603, 865, 812] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
207 12 12 chart [863, 604, 1037, 812] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
208 12 13 figure_title Figure 10. The AM₂₀-Ca²⁺ hydrogel-based strain sensor for human motion detection. The relative resistance change in response to the bending of (A) finger, (B) elbow, (C) knee, and (D) wrist. (E) Morse [96, 829, 1116, 955] figure_caption 0.92 ["figure_title label: Figure 10. The AM\u2082\u2080-Ca\u00b2\u207a hydrogel-based strain sensor for hu"] figure_caption 0.92 display_zone legend_like figure_number True True
209 12 14 text hydrogel for 12 h at 0 °C and −1 5 °C, and the results showed a decrease in ionic conductivity due to restricted ionic movement at lower temperatures (Figure 9B). The AM₂₀-Ca²⁺ hydrogel exhibited ioni [96, 969, 590, 1513] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
210 12 15 text [623, 971, 1115, 1105] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
211 12 16 text The remarkable flexibility of the hydrogel enables it to be stretched to varying levels of strain, which was evident in the increase of the relative resistance change as the strain percentage increase [623, 1107, 1116, 1443] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
212 12 17 text The strain-sensing ability of this hydrogel was further analyzed by subjecting it to bending, twisting, and pressing (Figure 9G–I). Results showed an increase in relative [625, 1443, 1115, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
213 12 18 number 33215 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
214 12 19 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
215 13 0 header ACS Omega [100, 77, 210, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
216 13 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
217 13 2 header Article [1052, 81, 1100, 97] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
218 13 3 figure_title (A) [104, 134, 130, 156] figure_inner_text 0.9 ["panel label / figure inner text: (A)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
219 13 4 image [117, 127, 752, 364] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
220 13 5 figure_title (B) [771, 133, 794, 154] figure_inner_text 0.9 ["panel label / figure inner text: (B)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
221 13 6 chart [781, 131, 1097, 364] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
222 13 7 figure_title (c) [111, 379, 135, 401] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
223 13 8 chart [144, 368, 444, 598] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
224 13 9 chart [453, 371, 766, 601] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
225 13 10 chart [765, 374, 1106, 600] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
226 13 11 chart [124, 596, 452, 839] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
227 13 12 chart [458, 601, 764, 840] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
228 13 13 chart [767, 603, 1107, 839] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
229 13 14 figure_title Figure 11. (A) Schematic of the solid electrolyte-based supercapacitor device and its charging–discharging mechanism. (B) Cyclic voltammetry (CV) curve. (C) Variation of specific capacitance with scan [97, 855, 1117, 939] figure_caption 0.92 ["figure_title label: Figure 11. (A) Schematic of the solid electrolyte-based supe"] figure_caption 0.92 display_zone legend_like figure_number True True
230 13 15 text resistance change during bending and twisting, with a return to the original state after relaxing. This enhancement in the relative resistance change is due to the stretching of the hydrogel during be [97, 958, 588, 1112] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
231 13 16 text Human Movement Detection. The AM₂₀-Ca²⁺ hydrogel-based strain sensor, owing to reasonable ionic conductivity, flexibility, good strain sensitivity, excellent adhesiveness, and effective electrical hea [97, 1112, 588, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
232 13 17 text [622, 956, 1116, 1512] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
233 13 18 number 33216 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
234 13 19 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
235 14 0 header ACS Omega [100, 77, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
236 14 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
237 14 2 header Article [1051, 80, 1100, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
238 14 3 text based on the results of the present studies, it is expected that our hydrogel will be noncytotoxic toward the human skin. [96, 117, 586, 162] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
239 14 4 text Hydrogel strain sensors have the capability to not only monitor human limb movement but also transmit information, thereby enabling opportunities for information encryption/decryption and enhancing in [96, 163, 588, 625] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
240 14 5 text Flexible Supercapacitor Performance. The AM₂₀-Ca²⁺ hydrogel was employed as a solid electrolyte in a flexible supercapacitor device. Ionic conductivity, a porous microstructure, and the ability to adh [96, 623, 588, 1158] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
241 14 6 text The CV experiment was performed by varying the scan rate from 10 to 500 mV s⁻¹ in the potential range of 0–1.2 V (Figure 11B). The data exhibit the symmetrical quasi-rectangular CV curve, denoting ele [96, 1157, 589, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
242 14 7 text [624, 117, 1116, 206] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
243 14 8 text GCD tests were performed to investigate the charge–discharge mechanism and precisely determine the specific capacitance by varying the current density. Figure 11D shows that within the potential windo [622, 205, 1116, 1181] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
244 14 9 text Since the hydrogel-based solid electrolyte is mechanically robust and flexible and has good self-recovery properties, the electrochemical performance of the supercapacitor device was checked under dif [622, 1180, 1117, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
245 14 10 number 33217 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
246 14 11 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
247 15 0 header ACS Omega [100, 77, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
248 15 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
249 15 2 header Article [1051, 80, 1101, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
250 15 3 chart [166, 119, 463, 345] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
251 15 4 chart [463, 121, 749, 345] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
252 15 5 chart [756, 121, 1044, 345] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
253 15 6 chart [166, 344, 464, 577] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
254 15 7 chart [461, 346, 751, 577] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
255 15 8 chart [755, 347, 1043, 576] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
256 15 9 figure_title (G) [168, 593, 205, 622] figure_inner_text 0.9 ["panel label / figure inner text: (G)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
257 15 10 image [213, 600, 1039, 821] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
258 15 11 chart [166, 832, 463, 1061] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
259 15 12 chart [460, 832, 751, 1061] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
260 15 13 chart [756, 832, 1045, 1060] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
261 15 14 figure_title Figure 12. (A) SE, (B) SE_A, (C) SE_R of AM_20 hydrogels before and after incorporation of different metal ions (Ca^2+, Ni^{2+}, and Zn^{2+}); variation of (D) SE, (E) SE_A, (F) SE_R of AM_20-Ca^{2+} [95, 1076, 1118, 1182] figure_caption 0.92 ["figure_title label: Figure 12. (A) SE, (B) SE_A, (C) SE_R of AM_20 hydrogels bef"] figure_caption 0.92 display_zone legend_like figure_number True True
262 15 15 text result showed that the specific capacitance decreased slightly on bending the device (Figure S10D). This can be attributed to the stretching of the electrolyte within the hydrogel during bending, whic [97, 1199, 588, 1376] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
263 15 16 text Environmental stability is also important for enhancing the lifetime of gel-based supercapacitor devices. Since this gel showed excellent antidrying properties, after 30 days also, it showed similar C [96, 1377, 588, 1511] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
264 15 17 text [624, 1199, 1115, 1286] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
265 15 18 text EMI Shielding Performance. The AM₂₀-Ca²⁺ hydrogel sample was utilized to investigate its capability to shield against electromagnetic interference (EMI). To study the EMI shielding effectiveness, a 1. [624, 1288, 1115, 1513] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
266 15 19 number 33218 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
267 15 20 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [890, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
268 16 0 header ACS Omega [100, 77, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
269 16 1 header http://pubs.acs.org/journal/acsodf [501, 79, 746, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
270 16 2 header Article [1051, 80, 1100, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
271 16 3 text displayed a total shielding efficiency (SE) of ~35 dB (Figure 12A), which is far exceeding the industrial standard of 20 dB. $ ^{67-69} $ This value also surpassed that of many other conducting filler [96, 116, 588, 934] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
272 16 4 text The total EMI shielding efficiency (SE) comprises two mechanisms: reflection (SE_R) and absorption (SE_A), which are attributed to mobile charge carriers and electric dipoles, respectively. Therefore, [97, 939, 588, 1423] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
273 16 5 text Apart from the metal ions, total water content inside the hydrogel plays a critical role in enhancing the electromagnetic shielding performance of the hydrogel. The presence of water molecules within [97, 1421, 588, 1510] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
274 16 6 text [625, 118, 1115, 360] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
275 16 7 text The traditional hydrogels are prone to rapid drying under working conditions, resulting in a significant loss of EMI SE. Since the AM₂₀-Ca²⁺ hydrogel exhibits antidehydration properties, this material [625, 361, 1116, 646] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
276 16 8 text The EMI shielding performance of the AM₂₀-Ca²⁺ hydrogel was also affected by the mechanical deformation of the hydrogel. To measure this, the AM₂₀-Ca²⁺ hydrogel was stretched to 100% and the correspon [622, 647, 1116, 1088] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
277 16 9 text The conventional hydrogels lose their ability to shield against electromagnetic interference at subzero temperature because of the onset of freezing of water inside the hydrogel. However, unlike conve [624, 1091, 1116, 1442] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
278 16 10 text Finally, the practical application of the EMI shielding performance of this hydrogel has been demonstrated by blocking the wifi signal from the cell phone (Figure S13B). For [625, 1443, 1116, 1512] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
279 16 11 number 33219 [584, 1528, 630, 1545] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
280 16 12 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
281 17 0 header ACS Omega [100, 77, 210, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
282 17 1 header http://pubs.acs.org/journal/acsodf [501, 79, 745, 99] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
283 17 2 header Article [1052, 80, 1100, 98] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
284 17 3 text this, first a 4G cell phone was wrapped with aluminum foil. Since the aluminum foil is a well-known EMI blocking element, it blocks the wifi comes out. Next the phone was covered with aluminum foil, k [97, 117, 587, 318] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
285 17 4 text In summary, we have successfully synthesized dynamic metal ion cross-linked adhesive and self-healing hydrogels through thermal copolymerization of acrylamide and maleic acid monomers and in situ inco [97, 364, 588, 872] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
286 17 5 paragraph_title ASSOCIATED CONTENT [102, 889, 352, 912] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: ASSOCIATED CONTENT"] section_heading 0.6 tail_nonref_hold_zone heading_like short_fragment False True
287 17 6 paragraph_title Supporting Information [101, 919, 336, 941] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Supporting Information"] backmatter_boundary_candidate 0.5 heading_like none True True
288 17 7 text The Supporting Information is available free of charge at https://pubs.acs.org/doi/10.1021/acsomega.4c04851. [98, 942, 586, 988] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone body_like none True True
289 17 8 text Investigation of conductive properties (MP4) [145, 993, 506, 1016] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
290 17 9 text Synthesis of the hydrogels and characterization procedures (mechanical properties, differential scanning calorimetry, microscopy, XPS spectroscopy, FTIR, resistive sensing, electrochemical measurement [145, 1020, 587, 1153] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
291 17 10 paragraph_title AUTHOR INFORMATION [101, 1177, 358, 1199] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: AUTHOR INFORMATION"] section_heading 0.6 tail_nonref_hold_zone heading_like short_fragment False True
292 17 11 paragraph_title Corresponding Author [100, 1208, 295, 1228] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Corresponding Author"] subsection_heading 0.6 tail_nonref_hold_zone heading_like none False True
293 17 12 text Rajat Kumar Das – Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0002-8842-0821; Email: rajat@matsc.iitkgp.ac.in [121, 1230, 586, 1318] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
294 17 13 paragraph_title Authors [99, 1332, 173, 1353] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Authors"] sub_subsection_heading 0.6 tail_nonref_hold_zone heading_like short_fragment True True
295 17 14 reference_content Ashis Ghosh – Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India [119, 1356, 582, 1399] reference_item 0.85 ["reference content label: Ashis Ghosh \u2013 Materials Science Centre, Indian Institute of "] reference_item 0.85 reference_zone unknown_like none True True
296 17 15 reference_content Sudhir Kumar – Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India [119, 1401, 588, 1443] reference_item 0.85 ["reference content label: Sudhir Kumar \u2013 Materials Science Centre, Indian Institute of"] reference_item 0.85 reference_zone unknown_like none True True
297 17 16 reference_content Prem Pal Singh – Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0002-6503-7002 [120, 1445, 589, 1509] reference_item 0.85 ["reference content label: Prem Pal Singh \u2013 Materials Science Centre, Indian Institute "] reference_item 0.85 reference_zone unknown_like none True True
298 17 17 reference_content Suvendu Nandi – School of Medical Science and Technology, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0001-6416-8636 [648, 118, 1112, 182] reference_item 0.85 ["reference content label: Suvendu Nandi \u2013 School of Medical Science and Technology, In"] reference_item 0.85 reference_zone unknown_like none True True
299 17 18 text Mahitosh Mandal – School of Medical Science and Technology, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0003-3861-3323 [648, 185, 1105, 268] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
300 17 19 text Debabrata Pradhan – Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0003-3968-9610 [648, 272, 1086, 337] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
301 17 20 text Bhanu Bhusan Khatua – Materials Science Centre, Indian Institute of Technology Kharagpur, Kharagpur 721302, India; orcid.org/0000-0002-1277-0091 [647, 338, 1096, 404] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
302 17 21 text Complete contact information is available at: https://pubs.acs.org/10.1021/acsomega.4c04851 [625, 411, 1011, 458] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
303 17 22 paragraph_title Notes [626, 476, 683, 496] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Notes"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
304 17 23 text The authors declare no competing financial interest. [625, 499, 1041, 522] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
305 17 24 paragraph_title ACKNOWLEDGMENTS [629, 539, 867, 563] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: ACKNOWLEDGMENTS"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
306 17 25 text R.K.D. acknowledges financial support from SERB, India (Grant No. CRG/2022/001671). D.P. acknowledges the DST, Govt. of India for the grant DST/TMD/MES/2K18/26(G). M.M. highly acknowledges the support [623, 570, 1116, 881] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
307 17 26 paragraph_title REFERENCES [629, 898, 783, 921] reference_heading 0.9 ["references heading: REFERENCES"] reference_heading 0.9 reference_zone heading_like short_fragment True True
308 17 27 reference_content (1) Lee, Y.; Song, W. J.; Sun, J. Y. Hydrogel Soft Robotics. Mater. Today Phys. 2020, 15, 100258. [627, 929, 1112, 968] reference_item 0.85 ["reference content label: (1) Lee, Y.; Song, W. J.; Sun, J. Y. Hydrogel Soft Robotics."] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
309 17 28 reference_content (2) Ling, Q.; Ke, T.; Liu, W.; Ren, Z.; Zhao, L.; Gu, H. Tough, Repeatedly Adhesive, Cyclic Compression-Stable, and Conductive Dual-Network Hydrogel Sensors for Human Health Monitoring. Ind. Eng. Chem [627, 970, 1113, 1048] reference_item 0.85 ["reference content label: (2) Ling, Q.; Ke, T.; Liu, W.; Ren, Z.; Zhao, L.; Gu, H. Tou"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
310 17 29 reference_content (3) Wang, J.; Sun, Y.; Jia, P.; Su, J.; Zhang, X.; Wu, N.; Yu, H.; Song, Y.; Zhou, J. Wearable Nanocomposite Hydrogel Temperature Sensor Based on Structural Colors. Chem. Eng. J. 2023, 476, 146602. [628, 1050, 1114, 1109] reference_item 0.85 ["reference content label: (3) Wang, J.; Sun, Y.; Jia, P.; Su, J.; Zhang, X.; Wu, N.; Y"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
311 17 30 reference_content (4) Chen, J.; Shi, D.; Yang, Z.; Dong, W.; Chen, M. A Solvent-Exchange Strategy to Develop Stiff and Tough Hydrogel Electrolytes for Flexible and Stable Supercapacitor. J. Power Sources 2022, 532, 231 [628, 1110, 1113, 1187] reference_item 0.85 ["reference content label: (4) Chen, J.; Shi, D.; Yang, Z.; Dong, W.; Chen, M. A Solven"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
312 17 31 reference_content (5) Hua, J.; Su, M.; Sun, X.; Li, J.; Sun, Y.; Qiu, H.; Shi, Y.; Pan, L. Hydrogel-Based Bioelectronics and Their Applications in Health Monitoring. Biosensors 2023, 13 (7), 696. [628, 1190, 1113, 1248] reference_item 0.85 ["reference content label: (5) Hua, J.; Su, M.; Sun, X.; Li, J.; Sun, Y.; Qiu, H.; Shi,"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
313 17 32 reference_content (6) Du, Y.; Du, W.; Lin, D.; Ai, M.; Li, S.; Zhang, L. Recent Progress on Hydrogel-Based Piezoelectric Devices for Biomedical Applications. Micromachines 2023, 14 (1), 167. [628, 1250, 1113, 1308] reference_item 0.85 ["reference content label: (6) Du, Y.; Du, W.; Lin, D.; Ai, M.; Li, S.; Zhang, L. Recen"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
314 17 33 reference_content (7) Lu, D.; Zhu, M.; Li, X.; Zhu, Z.; Lin, X.; Guo, C. F.; Xiang, X. Thermosensitive Hydrogel-Based, High Performance Flexible Sensors for Multi-Functional e-Skins. J. Mater. Chem. A 2023, 11 (34), 18 [626, 1309, 1113, 1387] reference_item 0.85 ["reference content label: (7) Lu, D.; Zhu, M.; Li, X.; Zhu, Z.; Lin, X.; Guo, C. F.; X"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
315 17 34 reference_content (8) Fu, R.; Tu, L.; Zhou, Y.; Fan, L.; Zhang, F.; Wang, Z.; Xing, J.; Chen, D.; Deng, C.; Tan, G.; et al. A Tough and Self-Powered Hydrogel for Artificial Skin. Chem. Mater. 2019, 31 (23), 9850–9860. [626, 1390, 1114, 1449] reference_item 0.85 ["reference content label: (8) Fu, R.; Tu, L.; Zhou, Y.; Fan, L.; Zhang, F.; Wang, Z.; "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
316 17 35 reference_content (9) Deng, Z.; Wang, H.; Ma, P. X.; Guo, B. Self-Healing Conductive Hydrogels: Preparation, Properties and Applications. Nanoscale 2020, 12, 1224–1246. [626, 1448, 1113, 1508] reference_item 0.85 ["reference content label: (9) Deng, Z.; Wang, H.; Ma, P. X.; Guo, B. Self-Healing Cond"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
317 17 36 number 33220 [584, 1528, 629, 1545] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
318 17 37 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1559] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
319 18 0 header ACS Omega [100, 78, 209, 98] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
320 18 1 header http://pubs.acs.org/journal/acsodf [501, 80, 745, 98] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
321 18 2 header Article [1052, 80, 1100, 97] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
322 18 3 reference_content (10) Zhang, H.; Guo, J.; Wang, Y.; Sun, L.; Zhao, Y. Stretchable and Conductive Composite Structural Color Hydrogel Films as Bionic Electronic Skins. Adv. Sci. 2021, 8, 2102156. [98, 116, 586, 175] reference_item 0.85 ["reference content label: (10) Zhang, H.; Guo, J.; Wang, Y.; Sun, L.; Zhao, Y. Stretch"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
323 18 4 reference_content (11) Hou, J.; Ren, X.; Guan, S.; Duan, L.; Gao, G. H.; Kuai, Y.; Zhang, H. Rapidly Recoverable, Anti-Fatigue, Super-Tough Double-Network Hydrogels Reinforced by Macromolecular Microspheres. Soft Matte [99, 177, 585, 256] reference_item 0.85 ["reference content label: (11) Hou, J.; Ren, X.; Guan, S.; Duan, L.; Gao, G. H.; Kuai,"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
324 18 5 reference_content (12) Okumura, Y.; Ito, K. The Polyrotaxane Gel: A Topological Gel by Figure-of-Eight Cross-Links. Adv. Mater. 2001, 13 (7), 485–487. [98, 258, 585, 297] reference_item 0.85 ["reference content label: (12) Okumura, Y.; Ito, K. The Polyrotaxane Gel: A Topologica"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
325 18 6 reference_content (13) Chen, Q.; Chen, H.; Zhu, L.; Zheng, J. Fundamentals of Double Network Hydrogels. J. Mater. Chem. B 2015, 3 (18), 3654–3676. [99, 297, 585, 357] reference_item 0.85 ["reference content label: (13) Chen, Q.; Chen, H.; Zhu, L.; Zheng, J. Fundamentals of "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
326 18 7 reference_content (14) Zhong, M.; Liu, Y. T.; Liu, X. Y.; Shi, F. K.; Zhang, L. Q.; Zhu, M. F.; Xie, X. M. Dually Cross-Linked Single Network Poly(Acrylic Acid) Hydrogels with Superior Mechanical Properties and Water A [99, 359, 586, 439] reference_item 0.85 ["reference content label: (14) Zhong, M.; Liu, Y. T.; Liu, X. Y.; Shi, F. K.; Zhang, L"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
327 18 8 reference_content (15) Gong, J. P.; Katsuyama, Y.; Kurokawa, T.; Osada, Y. Double-Network Hydrogels with Extremely High Mechanical Strength. Adv. Mater. 2003, 15 (14), 1155–1158. [99, 440, 586, 499] reference_item 0.85 ["reference content label: (15) Gong, J. P.; Katsuyama, Y.; Kurokawa, T.; Osada, Y. Dou"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
328 18 9 reference_content (16) Shen, J.; Li, N.; Ye, M. Preparation and Characterization of Dual-Sensitive Double Network Hydrogels with Clay as a Physical Crosslinker. Appl. Clay Sci. 2015, 103, 40–45. [99, 500, 586, 560] reference_item 0.85 ["reference content label: (16) Shen, J.; Li, N.; Ye, M. Preparation and Characterizati"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
329 18 10 reference_content (17) Shi, S.; Peng, X.; Liu, T.; Chen, Y. N.; He, C.; Wang, H. Facile Preparation of Hydrogen-Bonded Supramolecular Polyvinyl Alcohol-Glycerol Gels with Excellent Thermoplasticity and Mechanical Prope [99, 562, 586, 640] reference_item 0.85 ["reference content label: (17) Shi, S.; Peng, X.; Liu, T.; Chen, Y. N.; He, C.; Wang, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
330 18 11 reference_content (18) Ghosh, A.; Pandit, S.; Kumar, S.; Ganguly, D.; Chattopadhyay, S.; Pradhan, D.; Das, R. K. Designing Dynamic Metal-Coordinated Hydrophobically Associated Mechanically Robust and Stretchable Hydrog [99, 641, 586, 761] reference_item 0.85 ["reference content label: (18) Ghosh, A.; Pandit, S.; Kumar, S.; Ganguly, D.; Chattopa"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
331 18 12 reference_content (19) Luo, F.; Sun, T. L.; Nakajima, T.; Kurokawa, T.; Li, X.; Guo, H.; Huang, Y.; Zhang, H.; Gong, J. P. Tough Polyion-Complex Hydrogels from Soft to Stiff Controlled by Monomer Structure. Polymer 201 [99, 762, 585, 843] reference_item 0.85 ["reference content label: (19) Luo, F.; Sun, T. L.; Nakajima, T.; Kurokawa, T.; Li, X."] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
332 18 13 reference_content (20) Jiang, H.; Duan, L.; Ren, X.; Gao, G. Hydrophobic Association Hydrogels with Excellent Mechanical and Self-Healing Properties. Eur. Polym. J. 2019, 112, 660–669. [99, 843, 585, 903] reference_item 0.85 ["reference content label: (20) Jiang, H.; Duan, L.; Ren, X.; Gao, G. Hydrophobic Assoc"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
333 18 14 reference_content (21) Holten-Andersen, N.; Harrington, M. J.; Birkedal, H.; Lee, B. P.; Messersmith, P. B.; Lee, K. Y. C.; Waite, J. H. PH-Induced Metal-Ligand Cross-Links Inspired by Mussel Yield Self-Healing Polymer [99, 905, 584, 1004] reference_item 0.85 ["reference content label: (21) Holten-Andersen, N.; Harrington, M. J.; Birkedal, H.; L"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
334 18 15 reference_content (22) Liang, Y.; Li, Z.; Huang, Y.; Yu, R.; Guo, B. Dual-Dynamic-Bond Cross-Linked Antibacterial Adhesive Hydrogel Sealants with On-Demand Removability for Post-Wound-Closure and Infected Wound Healing [99, 1006, 585, 1084] reference_item 0.85 ["reference content label: (22) Liang, Y.; Li, Z.; Huang, Y.; Yu, R.; Guo, B. Dual-Dyna"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
335 18 16 reference_content (23) Guo, B.; Liang, Y.; Dong, R. Physical Dynamic Double-Network Hydrogels as Dressings to Facilitate Tissue Repair. Nat. Protoc. 2023, 18, 3322–3354. [99, 1086, 584, 1145] reference_item 0.85 ["reference content label: (23) Guo, B.; Liang, Y.; Dong, R. Physical Dynamic Double-Ne"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
336 18 17 reference_content (24) Ghosh, A.; Panda, P.; Ganguly, D.; Chattopadhyay, S.; Das, R. K. Dynamic Metal–Ligand Cross-Link Promoted Mechanically Robust and PH Responsive Hydrogels for Shape Memory, Programmable Actuation [99, 1146, 585, 1245] reference_item 0.85 ["reference content label: (24) Ghosh, A.; Panda, P.; Ganguly, D.; Chattopadhyay, S.; D"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
337 18 18 reference_content (25) Panda, P.; Dutta, A.; Ganguly, D.; Chattopadhyay, S.; Das, R. K. Engineering Hydrophobically Associated Hydrogels with Rapid Self-Recovery and Tunable Mechanical Properties Using Metal-Ligand Int [99, 1247, 585, 1326] reference_item 0.85 ["reference content label: (25) Panda, P.; Dutta, A.; Ganguly, D.; Chattopadhyay, S.; D"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
338 18 19 reference_content (26) Dutta, A.; Ghosal, K.; Sarkar, K.; Pradhan, D.; Das, R. K. From Ultrastiff to Soft Materials: Exploiting Dynamic Metal – Ligand Cross-Links to Access Polymer Hydrogels Combining Customized Mechan [99, 1328, 586, 1427] reference_item 0.85 ["reference content label: (26) Dutta, A.; Ghosal, K.; Sarkar, K.; Pradhan, D.; Das, R."] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
339 18 20 reference_content (27) Kolya, H.; Das, S.; Tripathy, T. Synthesis of Starch-g-Poly-(N-Methylacrylamide-Co-Acrylic Acid) and Its Application for the Removal of Mercury (II) from Aqueous Solution by Adsorption. Eur. Poly [98, 1429, 586, 1509] reference_item 0.85 ["reference content label: (27) Kolya, H.; Das, S.; Tripathy, T. Synthesis of Starch-g-"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
340 18 21 reference_content (28) Kolya, H.; Roy, A.; Tripathy, T. Starch-g-Poly-(N, N-Dimethyl Acrylamide-Co-Acrylic Acid): An Efficient Cr (VI) Ion Binder. Int. J. Biol. Macromol. 2015, 72, 560–568. [627, 116, 1113, 175] reference_item 0.85 ["reference content label: (28) Kolya, H.; Roy, A.; Tripathy, T. Starch-g-Poly-(N, N-Di"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
341 18 22 reference_content (29) Lin, Y.; Hong, Y.; Song, Q.; Zhang, Z.; Gao, J.; Tao, T. Highly Efficient Removal of Copper Ions from Water Using Poly(Acrylic Acid)-Grafted Chitosan Adsorbent. Colloid Polym. Sci. 2017, 295 (4), [626, 177, 1113, 256] reference_item 0.85 ["reference content label: (29) Lin, Y.; Hong, Y.; Song, Q.; Zhang, Z.; Gao, J.; Tao, T"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
342 18 23 reference_content (30) Rivas, B. L.; Villoslada, I. M. Chelation Properties of Polymer Complexes of poly(acrylic acid) with poly(acrylamide), and poly(acrylic acid) with poly(N,N-dimethylacrylamide). Macromol. Chem. Ph [627, 258, 1113, 338] reference_item 0.85 ["reference content label: (30) Rivas, B. L.; Villoslada, I. M. Chelation Properties of"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
343 18 24 reference_content (31) Zhang, H.; Cheng, Y.; Hou, X.; Yang, B.; Guo, F. Ionic Effects on the Mechanical and Swelling Properties of a Poly(Acrylic Acid/Acrylamide) Double Crosslinking Hydrogel. New J. Chem. 2018, 42(11) [626, 339, 1114, 419] reference_item 0.85 ["reference content label: (31) Zhang, H.; Cheng, Y.; Hou, X.; Yang, B.; Guo, F. Ionic "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
344 18 25 reference_content (32) Lin, P.; Ma, S.; Wang, X.; Zhou, F. Molecularly Engineered Dual-Crosslinked Hydrogel with Ultrahigh Mechanical Strength, Toughness, and Good Self-Recovery. Adv. Mater. 2015, 27 (12), 2054–2059. [626, 420, 1113, 498] reference_item 0.85 ["reference content label: (32) Lin, P.; Ma, S.; Wang, X.; Zhou, F. Molecularly Enginee"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
345 18 26 reference_content (33) Tran, V. T.; Mredha, M. T. I.; Pathak, S. K.; Yoon, H.; Cui, J.; Jeon, I. Conductive Tough Hydrogels with a Staggered Ion-Coordinating Structure for High Self-Recovery Rate. ACS Appl. Mater. Inte [626, 500, 1113, 581] reference_item 0.85 ["reference content label: (33) Tran, V. T.; Mredha, M. T. I.; Pathak, S. K.; Yoon, H.;"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
346 18 27 reference_content (34) Simha, N. K.; Carlson, C. S.; Lewis, J. L. Evaluation of Fracture Toughness of Cartilage by Micropenetration. J. Mater. Sci.: Mater. Med. 2004, 15 (5), 631–639. [627, 582, 1113, 641] reference_item 0.85 ["reference content label: (34) Simha, N. K.; Carlson, C. S.; Lewis, J. L. Evaluation o"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
347 18 28 reference_content (35) Rivlin, R. S.; Thomas, A. G. Rupture of Rubber. I. Characteristic Energy for Tearing. J. Polym. Sci. 1953, 10, 291–318. [628, 642, 1113, 682] reference_item 0.85 ["reference content label: (35) Rivlin, R. S.; Thomas, A. G. Rupture of Rubber. I. Char"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
348 18 29 reference_content (36) Sun, J. Y.; Zhao, X.; Illeperuma, W. R. K.; Chaudhuri, O.; Oh, K. H.; Mooney, D. J.; Vlassak, J. J.; Suo, Z. Highly Stretchable and Tough Hydrogels. Nature 2012, 489 (7414), 133–136. [627, 682, 1113, 741] reference_item 0.85 ["reference content label: (36) Sun, J. Y.; Zhao, X.; Illeperuma, W. R. K.; Chaudhuri, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
349 18 30 reference_content (37) Fuchs, S.; Shariati, K.; Ma, M. Specialty Tough Hydrogels and Their Biomedical Applications. Adv. Healthc. Mater. 2020, 9 (2), 1901396. [627, 742, 1113, 801] reference_item 0.85 ["reference content label: (37) Fuchs, S.; Shariati, K.; Ma, M. Specialty Tough Hydroge"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
350 18 31 reference_content (38) Moghadam, M. N.; Pioletti, D. P. Improving Hydrogels' Toughness by Increasing the Dissipative Properties of Their Network. J. Mech. Behav. Biomed. Mater. 2015, 41, 161–167. [627, 803, 1113, 862] reference_item 0.85 ["reference content label: (38) Moghadam, M. N.; Pioletti, D. P. Improving Hydrogels' T"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
351 18 32 reference_content (39) Liu, H.; Cao, L.; Wang, X.; Xu, C.; Huo, H.; Jiang, B.; Yuan, H.; Lin, Z.; Zhang, P. A Highly Stretchable and Sensitive Carboxymethyl Chitosan-Based Hydrogel for Flexible Strain Sensors. J. Mater [627, 864, 1113, 943] reference_item 0.85 ["reference content label: (39) Liu, H.; Cao, L.; Wang, X.; Xu, C.; Huo, H.; Jiang, B.;"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
352 18 33 reference_content (40) Gan, D.; Xing, W.; Jiang, L.; Fang, J.; Zhao, C.; Ren, F.; Fang, L.; Wang, K.; Lu, X. Plant-Inspired Adhesive and Tough Hydrogel Based on Ag-Lignin Nanoparticles-Triggered Dynamic Redox Catechol [626, 945, 1113, 1025] reference_item 0.85 ["reference content label: (40) Gan, D.; Xing, W.; Jiang, L.; Fang, J.; Zhao, C.; Ren, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
353 18 34 reference_content (41) Han, L.; Wang, M.; Prieto-López, L. O.; Deng, X.; Cui, J. Self-Hydrophobization in a Dynamic Hydrogel for Creating Nonspecific Repeatable Underwater Adhesion. Adv. Funct. Mater. 2020, 30 (7), 190 [627, 1026, 1113, 1104] reference_item 0.85 ["reference content label: (41) Han, L.; Wang, M.; Prieto-L\u00f3pez, L. O.; Deng, X.; Cui, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
354 18 35 reference_content (42) Wang, Z.; Chen, J.; Wang, L.; Gao, G.; Zhou, Y.; Wang, R.; Xu, T.; Yin, J.; Fu, J. Flexible and Wearable Strain Sensors Based on Tough and Self-Adhesive Ion Conducting Hydrogels. J. Mater. Chem. [626, 1106, 1113, 1185] reference_item 0.85 ["reference content label: (42) Wang, Z.; Chen, J.; Wang, L.; Gao, G.; Zhou, Y.; Wang, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
355 18 36 reference_content (43) Meng, L.; He, J.; Pan, C. Research Progress on Hydrogel–Elastomer Adhesion. Materials 2022, 15, 2548. [627, 1186, 1112, 1226] reference_item 0.85 ["reference content label: (43) Meng, L.; He, J.; Pan, C. Research Progress on Hydrogel"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
356 18 37 reference_content (44) Lv, H.; Zong, S.; Li, T.; Zhao, Q.; Xu, Z.; Duan, J. Room Temperature Ca $ ^{2+} $-Initiated Free Radical Polymerization for the Preparation of Conductive, Adhesive, Anti-Freezing and UV-Blocking [626, 1228, 1114, 1326] reference_item 0.85 ["reference content label: (44) Lv, H.; Zong, S.; Li, T.; Zhao, Q.; Xu, Z.; Duan, J. Ro"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
357 18 38 reference_content (45) Gilbert, J. A.; Davies, P. L.; Laybourn-Parry, J. A. Hyperactive, Ca $ ^{2+} $-Dependent Antifreeze Protein in an Antarctic Bacterium. FEMS Microbiol Lett. 2005, 245, 67–72. [627, 1328, 1113, 1387] reference_item 0.85 ["reference content label: (45) Gilbert, J. A.; Davies, P. L.; Laybourn-Parry, J. A. Hy"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
358 18 39 reference_content (46) Li, T.; Xu, K.; Shi, L.; Wu, J.; He, J.; Zhang, Z. Dual-Ionic Hydrogels with Ultralong Anti-Dehydration Lifespan and Superior Anti-Icing Performance. Appl. Mater. Today 2022, 26, 101367. [626, 1388, 1114, 1449] reference_item 0.85 ["reference content label: (46) Li, T.; Xu, K.; Shi, L.; Wu, J.; He, J.; Zhang, Z. Dual"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
359 18 40 reference_content (47) Wang, Y.; Pang, B.; Wang, R.; Gao, Y.; Liu, Y.; Gao, C. An Anti-Freezing Wearable Strain Sensor Based on Nanoarchitectonics with a Highly Stretchable, Tough, Anti-Fatigue and Fast Self-Healing [626, 1450, 1115, 1510] reference_item 0.85 ["reference content label: (47) Wang, Y.; Pang, B.; Wang, R.; Gao, Y.; Liu, Y.; Gao, C."] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
360 18 41 number 33221 [584, 1528, 628, 1545] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
361 18 42 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
362 19 0 header ACS Omega [100, 77, 209, 98] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
363 19 1 header http://pubs.acs.org/journal/acsodf [501, 80, 745, 98] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
364 19 2 header Article [1052, 80, 1100, 97] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
365 19 3 reference_content Composite Hydrogel. Compos. Part A Appl. Sci. Manuf. 2022, 160, 107039. [99, 117, 585, 155] reference_item 0.85 ["reference content label: Composite Hydrogel. Compos. Part A Appl. Sci. Manuf. 2022, 1"] reference_item 0.85 reference_zone unknown_like none True True
366 19 4 reference_content (48) Song, Y.; Niu, L.; Ma, P.; Li, X.; Feng, J.; Liu, Z. Rapid Preparation of Antifreezing Conductive Hydrogels for Flexible Strain Sensors and Supercapacitors. ACS Appl. Mater. Interfaces 2023, 15(7 [99, 158, 586, 236] reference_item 0.85 ["reference content label: (48) Song, Y.; Niu, L.; Ma, P.; Li, X.; Feng, J.; Liu, Z. Ra"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
367 19 5 reference_content (49) Liu, S.; Li, L. Ultrastretchable and Self-Healing Double-Network Hydrogel for 3D Printing and Strain Sensor. ACS Appl. Mater. Interfaces 2017, 9 (31), 26429–26437. [99, 238, 584, 297] reference_item 0.85 ["reference content label: (49) Liu, S.; Li, L. Ultrastretchable and Self-Healing Doubl"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
368 19 6 reference_content (50) Ge, G.; Yuan, W.; Zhao, W.; Lu, Y.; Zhang, Y.; Wang, W.; Chen, P.; Huang, W.; Si, W.; Dong, X. Highly Stretchable and Autonomously Healable Epidermal Sensor Based on Multi-Functional Hydrogel Fra [99, 298, 586, 378] reference_item 0.85 ["reference content label: (50) Ge, G.; Yuan, W.; Zhao, W.; Lu, Y.; Zhang, Y.; Wang, W."] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
369 19 7 reference_content (51) Yamada, T.; Hayamizu, Y.; Yamamoto, Y.; Yomogida, Y.; Izadi-Najafabadi, A.; Futaba, D. N.; Hata, K. A Stretchable Carbon Nanotube Strain Sensor for Human-Motion Detection. Nat. Nanotechnol. 2011, [99, 379, 586, 458] reference_item 0.85 ["reference content label: (51) Yamada, T.; Hayamizu, Y.; Yamamoto, Y.; Yomogida, Y.; I"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
370 19 8 reference_content (52) Xin, Y.; Liang, J.; Ren, L.; Gao, W.; Qiu, W.; Li, Z.; Qu, B.; Peng, A.; Ye, Z.; Fu, J. Tough, Healable, and Sensitive Strain Sensor Based on Multiphysically Cross-Linked Hydrogel for Ionic Skin. [99, 460, 585, 539] reference_item 0.85 ["reference content label: (52) Xin, Y.; Liang, J.; Ren, L.; Gao, W.; Qiu, W.; Li, Z.; "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
371 19 9 reference_content (53) Arévalo, F.; Uscategui, Y. L.; Diaz, L.; Cobo, M.; Valero, M. F. Effect of the Incorporation of Chitosan on the Physico-Chemical, Mechanical Properties and Biological Activity on a Mixture of Pol [99, 540, 586, 640] reference_item 0.85 ["reference content label: (53) Ar\u00e9valo, F.; Uscategui, Y. L.; Diaz, L.; Cobo, M.; Vale"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
372 19 10 reference_content (54) Wadajkar, A. S.; Ahn, C.; Nguyen, K. T.; Zhu, Q.; Komabayashi, T. In Vitro Cytotoxicity Evaluation of Four Vital Pulp Therapy Materials on L929 Fibroblasts. ISRN Dentistry 2014, 2014, 191068. [99, 641, 585, 719] reference_item 0.85 ["reference content label: (54) Wadajkar, A. S.; Ahn, C.; Nguyen, K. T.; Zhu, Q.; Komab"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
373 19 11 reference_content (55) Wang, M. O.; Etheridge, J. M.; Thompson, J. A.; Vorwald, C. E.; Dean, D.; Fisher, J. P. Evaluation of the in Vitro Cytotoxicity of Cross-Linked Biomaterials. Biomacromolecules 2013, 14 (5), 1321– [99, 722, 586, 801] reference_item 0.85 ["reference content label: (55) Wang, M. O.; Etheridge, J. M.; Thompson, J. A.; Vorwald"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
374 19 12 reference_content (56) Idrees, A.; Chiono, V.; Ciardelli, G.; Shah, S.; Viebahn, R.; Zhang, X.; Salber, J. Validation of in Vitro Assays in Three Dimensional Human Dermal Constructs. Int. J. Artif. Organs. 2018, 41 (11 [99, 803, 585, 882] reference_item 0.85 ["reference content label: (56) Idrees, A.; Chiono, V.; Ciardelli, G.; Shah, S.; Viebah"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
375 19 13 reference_content (57) Peng, K.; Wang, W.; Zhang, J.; Ma, Y.; Lin, L.; Gan, Q.; Chen, Y.; Feng, C. Preparation of Chitosan/Sodium Alginate Conductive Hydrogels with High Salt Contents and Their Application in Flexible [98, 884, 585, 982] reference_item 0.85 ["reference content label: (57) Peng, K.; Wang, W.; Zhang, J.; Ma, Y.; Lin, L.; Gan, Q."] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
376 19 14 reference_content (58) He, X.; Zhuang, T.; Ruan, S.; Xia, X.; Xia, Y.; Zhang, J.; Huang, H.; Gan, Y.; Zhang, W. An Innovative Poly(Ionic Liquid) Hydrogel-Based Anti-Freezing Electrolyte with High Conductivity for Super [99, 985, 585, 1064] reference_item 0.85 ["reference content label: (58) He, X.; Zhuang, T.; Ruan, S.; Xia, X.; Xia, Y.; Zhang, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
377 19 15 reference_content (59) Cai, H.; Zhang, D.; Zhang, H.; Tang, M.; Xu, Z.; Xia, H.; Li, K.; Wang, J. Trehalose-Enhanced Ionic Conductive Hydrogels with Extreme Stretchability, Self-Adhesive and Anti-Freezing Abilities for [99, 1066, 586, 1165] reference_item 0.85 ["reference content label: (59) Cai, H.; Zhang, D.; Zhang, H.; Tang, M.; Xu, Z.; Xia, H"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
378 19 16 reference_content (60) Qin, L.; Yang, G.; Li, D.; Ou, K.; Zheng, H.; Fu, Q.; Sun, Y. High Area Energy Density of All-Solid-State Supercapacitor Based on Double-Network Hydrogel with High Content of Graphene/PANI Fiber. [99, 1167, 585, 1246] reference_item 0.85 ["reference content label: (60) Qin, L.; Yang, G.; Li, D.; Ou, K.; Zheng, H.; Fu, Q.; S"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
379 19 17 reference_content (61) Yin, B. S.; Zhang, S. W.; Ren, Q. Q.; Liu, C.; Ke, K.; Wang, Z. B. Elastic Soft Hydrogel Supercapacitor for Energy Storage. J. Mater. Chem. A 2017, 5 (47), 24942–24950. [100, 1247, 585, 1306] reference_item 0.85 ["reference content label: (61) Yin, B. S.; Zhang, S. W.; Ren, Q. Q.; Liu, C.; Ke, K.; "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
380 19 18 reference_content (62) Xu, S.; Liang, X.; Ge, K.; Yuan, H.; Liu, G. Supramolecular Gel Electrolyte-Based Supercapacitors with a Comparable Dependence of Electrochemical Performances on Electrode Thickness to Those Base [99, 1307, 586, 1407] reference_item 0.85 ["reference content label: (62) Xu, S.; Liang, X.; Ge, K.; Yuan, H.; Liu, G. Supramolec"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
381 19 19 reference_content (63) Dutta, A.; Panda, P.; Das, A.; Ganguly, D.; Chattopadhyay, S.; Banerji, P.; Pradhan, D.; Das, R. K. Intrinsically Freezing-Tolerant, Conductive, and Adhesive Proton Donor-Acceptor Hydrogel for Mu [98, 1409, 586, 1508] reference_item 0.85 ["reference content label: (63) Dutta, A.; Panda, P.; Das, A.; Ganguly, D.; Chattopadhy"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
382 19 20 reference_content (64) Lin, T.; Shi, M.; Huang, F.; Peng, J.; Bai, Q.; Li, J.; Zhai, M. One-Pot Synthesis of a Double-Network Hydrogel Electrolyte with Extraordinarily Excellent Mechanical Properties for a Highly Compr [626, 117, 1114, 216] reference_item 0.85 ["reference content label: (64) Lin, T.; Shi, M.; Huang, F.; Peng, J.; Bai, Q.; Li, J.;"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
383 19 21 reference_content (65) Zhao, J.; Lu, Y.; Liu, Y.; Liu, L.; Yin, J.; Sun, B.; Wang, G.; Zhang, Y. A Self-Healing PVA-Linked Phytic Acid Hydrogel-Based Electrolyte for High-Performance Flexible Supercapacitors. Nanomater [627, 218, 1113, 297] reference_item 0.85 ["reference content label: (65) Zhao, J.; Lu, Y.; Liu, Y.; Liu, L.; Yin, J.; Sun, B.; W"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
384 19 22 reference_content (66) Singh, P. P.; De, A.; Khatua, B. B. Hydro-Tunable CZTO/SWCNT/PVA/PDMS Hybrid Composites for Smart Green EMI Shielding. J. Mater. Chem. C 2022, 10 (44), 16903–16913. [626, 298, 1114, 358] reference_item 0.85 ["reference content label: (66) Singh, P. P.; De, A.; Khatua, B. B. Hydro-Tunable CZTO/"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
385 19 23 reference_content (67) Gong, S.; Sheng, X.; Li, X.; Sheng, M.; Wu, H.; Lu, X.; Qu, J. A Multifunctional Flexible Composite Film with Excellent Multi-Source Driven Thermal Management, Electromagnetic Interference Shield [627, 359, 1114, 459] reference_item 0.85 ["reference content label: (67) Gong, S.; Sheng, X.; Li, X.; Sheng, M.; Wu, H.; Lu, X.;"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
386 19 24 reference_content (68) Liu, H.; Fu, R.; Su, X.; Wu, B.; Wang, H.; Xu, Y.; Liu, X. MXene Confined in Shape-Stabilized Phase Change Material Combining Enhanced Electromagnetic Interference Shielding and Thermal Managemen [627, 460, 1114, 559] reference_item 0.85 ["reference content label: (68) Liu, H.; Fu, R.; Su, X.; Wu, B.; Wang, H.; Xu, Y.; Liu,"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
387 19 25 reference_content (69) Liang, J.; Wang, Y.; Huang, Y.; Ma, Y.; Liu, Z.; Cai, J.; Zhang, C.; Gao, H.; Chen, Y. Electromagnetic Interference Shielding of Graphene/Epoxy Composites. Carbon 2009, 47 (3), 922–925. [627, 561, 1114, 621] reference_item 0.85 ["reference content label: (69) Liang, J.; Wang, Y.; Huang, Y.; Ma, Y.; Liu, Z.; Cai, J"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
388 19 26 reference_content (70) Wang, S.; Li, D.; Meng, W.; Jiang, L.; Fang, D. Scalable Superelastic, and Superhydrophobic MXene/Silver Nanowire/Melamine Hybrid Sponges for High-Performance Electromagnetic Interference Shieldi [626, 622, 1114, 701] reference_item 0.85 ["reference content label: (70) Wang, S.; Li, D.; Meng, W.; Jiang, L.; Fang, D. Scalabl"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
389 19 27 reference_content (71) Jia, X.; Shen, B.; Zhang, L.; Zheng, W. Construction of Shape-Memory Carbon Foam Composites for Adjustable EMI Shielding under Self-Fixable Mechanical Deformation. Chem. Eng. J. 2021, 405, 126927 [627, 703, 1114, 781] reference_item 0.85 ["reference content label: (71) Jia, X.; Shen, B.; Zhang, L.; Zheng, W. Construction of"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
390 19 28 reference_content (72) Yang, W.; Shao, B.; Liu, T.; Zhang, Y.; Huang, R.; Chen, F.; Fu, Q. Robust and Mechanically and Electrically Self-Healing Hydrogel for Efficient Electromagnetic Interference Shielding. ACS Appl. [627, 784, 1113, 862] reference_item 0.85 ["reference content label: (72) Yang, W.; Shao, B.; Liu, T.; Zhang, Y.; Huang, R.; Chen"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
391 19 29 reference_content (73) De, A.; Paria, S.; Bera, A.; Si, S. K.; Bera, S.; Khatua, B. B. Elastomer Encapsulated Silver Nanorod Dispersed Polyacrylamide-Alginate Hydrogel for Water-Pressure-Dependent EMI Shielding Applica [627, 864, 1114, 943] reference_item 0.85 ["reference content label: (73) De, A.; Paria, S.; Bera, A.; Si, S. K.; Bera, S.; Khatu"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
392 19 30 reference_content (74) Yu, L.; Yang, Q.; Liao, J.; Zhu, Y.; Li, X.; Yang, W.; Fu, Y. A Novel 3D Silver Nanowires@polypyrrole Sponge Loaded with Water Giving Excellent Microwave Absorption Properties. Chem. Eng. J. 2018 [627, 944, 1114, 1024] reference_item 0.85 ["reference content label: (74) Yu, L.; Yang, Q.; Liao, J.; Zhu, Y.; Li, X.; Yang, W.; "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
393 19 31 reference_content (75) Yuan, S.; Dai, T.; Jiang, X.; Zou, H.; Liu, P. Transparent and Environmentally Adaptive Semi-Interpenetrating Network Hydrogels for Electromagnetic Interference Shielding. ACS Appl. Polym. Mater. [627, 1026, 1113, 1105] reference_item 0.85 ["reference content label: (75) Yuan, S.; Dai, T.; Jiang, X.; Zou, H.; Liu, P. Transpar"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
394 19 32 reference_content (76) Xu, Y.; Pei, M.; Du, J.; Yang, R.; Pan, Y.; Zhang, D.; Qin, S. A Tough, Anticorrosive Hydrogel Consisting of Bio-Friendly Resources for Conductive and Electromagnetic Shielding Materials. New J. [626, 1106, 1115, 1185] reference_item 0.85 ["reference content label: (76) Xu, Y.; Pei, M.; Du, J.; Yang, R.; Pan, Y.; Zhang, D.; "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
395 19 33 reference_content (77) Xu, Y.; Tan, Y.; Xue, Y.; Pei, M.; Zhang, D.; Liu, S.; Qin, S. A Novel PVA/MWCNTs Hydrogel with High Toughness and Electromagnetic Shielding Properties. Polym. Eng. Sci. 2023, 63 (11), 3555–3564. [626, 1187, 1114, 1264] reference_item 0.85 ["reference content label: (77) Xu, Y.; Tan, Y.; Xue, Y.; Pei, M.; Zhang, D.; Liu, S.; "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
396 19 34 reference_content (78) Chen, Z.; Xu, C.; Ma, C.; Ren, W.; Cheng, H. M. Lightweight and Flexible Graphene Foam Composites for High-Performance Electromagnetic Interference Shielding. Adv. Mater. 2013, 25 (9), 1296–1300. [627, 1267, 1114, 1346] reference_item 0.85 ["reference content label: (78) Chen, Z.; Xu, C.; Ma, C.; Ren, W.; Cheng, H. M. Lightwe"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
397 19 35 reference_content (79) Shen, B.; Zhai, W.; Tao, M.; Ling, J.; Zheng, W. Lightweight, Multifunctional Polyetherimide/Graphene@Fe 3 O 4 Composite Foams for Shielding of Electromagnetic Pollution. ACS Appl. Mater. Interfa [626, 1348, 1113, 1427] reference_item 0.85 ["reference content label: (79) Shen, B.; Zhai, W.; Tao, M.; Ling, J.; Zheng, W. Lightw"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
398 19 36 reference_content (80) Ling, J.; Zhai, W.; Feng, W.; Shen, B.; Zhang, J.; Zheng, W. G. Facile Preparation of Lightweight Microcellular Polyetherimide/Graphene Composite Foams for Electromagnetic Interference Shielding. [626, 1429, 1114, 1509] reference_item 0.85 ["reference content label: (80) Ling, J.; Zhai, W.; Feng, W.; Shen, B.; Zhang, J.; Zhen"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
399 19 37 number 33222 [584, 1528, 629, 1544] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
400 19 38 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1529, 1113, 1558] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
401 20 0 header ACS Omega [100, 78, 209, 98] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
402 20 1 header http://pubs.acs.org/journal/acsodf [501, 80, 745, 98] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
403 20 2 header Article [1052, 80, 1100, 98] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
404 20 3 reference_content (81) Yan, D. X.; Ren, P. G.; Pang, H.; Fu, Q.; Yang, M. B.; Li, Z. M. Efficient Electromagnetic Interference Shielding of Lightweight Graphene/Polystyrene Composite. J. Mater. Chem. 2012, 22 (36), 187 [100, 116, 585, 196] reference_item 0.85 ["reference content label: (81) Yan, D. X.; Ren, P. G.; Pang, H.; Fu, Q.; Yang, M. B.; "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
405 20 4 reference_content (82) Zhang, H.-B.; Yan, Q.; Zheng, W.-G.; He, Z.; Yu, Z.-Z. Tough Graphene–Polymer Microcellular Foams for Electromagnetic Interference Shielding. ACS Appl. Mater. Interfaces 2011, 3 (3), 918–924. [99, 198, 585, 258] reference_item 0.85 ["reference content label: (82) Zhang, H.-B.; Yan, Q.; Zheng, W.-G.; He, Z.; Yu, Z.-Z. "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
406 20 5 reference_content (83) Gavgani, J. N.; Adelnia, H.; Zaarei, D.; Moazzami Gudarzi, M. Lightweight Flexible Polyurethane/Reduced Ultralarge Graphene Oxide Composite Foams for Electromagnetic Interference Shielding. RSC A [99, 258, 585, 337] reference_item 0.85 ["reference content label: (83) Gavgani, J. N.; Adelnia, H.; Zaarei, D.; Moazzami Gudar"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
407 20 6 reference_content (84) Li, Y.; Pei, X.; Shen, B.; Zhai, W.; Zhang, L.; Zheng, W. Polyimide/Graphene Composite Foam Sheets with Ultrahigh Thermostability for Electromagnetic Interference Shielding. RSC Adv. 2015, 5 (31) [99, 339, 585, 419] reference_item 0.85 ["reference content label: (84) Li, Y.; Pei, X.; Shen, B.; Zhai, W.; Zhang, L.; Zheng, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
408 20 7 reference_content (85) De, A.; Singh, P. P.; Mondal, A.; Khatua, B. B. Lithium Chloride-Driven Enhanced Conductivity of Silicone-Encapsulated Polyacrylamide/Alginate/Ionic Liquid-Based Transparent Hydrogel for High-Per [99, 421, 586, 519] reference_item 0.85 ["reference content label: (85) De, A.; Singh, P. P.; Mondal, A.; Khatua, B. B. Lithium"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
409 20 8 reference_content (86) Chen, J.; Shen, B.; Jia, X.; Liu, Y.; Zheng, W. Lightweight and Compressible Anisotropic Honeycomb-like Graphene Composites for Highly Tunable Electromagnetic Shielding with Multiple Functions. M [99, 520, 585, 600] reference_item 0.85 ["reference content label: (86) Chen, J.; Shen, B.; Jia, X.; Liu, Y.; Zheng, W. Lightwe"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
410 20 9 reference_content (87) Andryieuski, A.; Kuznetsova, S. M.; Zhukovsky, S. V.; Kivshar, Y. S.; Lavrinenko, A. V. W. Water: Promising Opportunities For Tunable All-dielectric Electromagnetic Metamaterials. Sci. Rep. 2015, [99, 601, 585, 681] reference_item 0.85 ["reference content label: (87) Andryieuski, A.; Kuznetsova, S. M.; Zhukovsky, S. V.; K"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
411 20 10 reference_content (88) Hogg, D. C.; Guiraud, F. O. Microwave Measurements of the Absolute Values of Absorption by Water Vapour in the Atmosphere. Nature 1979, 279 (5712), 408–409. [99, 682, 585, 742] reference_item 0.85 ["reference content label: (88) Hogg, D. C.; Guiraud, F. O. Microwave Measurements of t"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
412 20 11 reference_content (89) Buchner, R.; Barthel, J.; Stauber, J. The Dielectric Relaxation of Water between 0° C and 35° C. Chem. Phys. Lett. 1999, 306 (1–2), 57–63. [100, 743, 585, 801] reference_item 0.85 ["reference content label: (89) Buchner, R.; Barthel, J.; Stauber, J. The Dielectric Re"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
413 20 12 reference_content (90) Garner, H. R.; Ohkawa, T.; Tuason, O.; Lee, R. L. Microwave Absorption in Substances That Form Hydration Layers with Water. Phys. Rev. A 1990, 42 (12), 7264–7270. [101, 803, 584, 863] reference_item 0.85 ["reference content label: (90) Garner, H. R.; Ohkawa, T.; Tuason, O.; Lee, R. L. Micro"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
414 20 13 reference_content (91) Lai, D.; Chen, X.; Wang, G.; Xu, X.; Wang, Y. Arbitrarily Reshaping and Instantaneously Self-Healing Graphene Composite Hydrogel with Molecule Polarization-Enhanced Ultrahigh Electromagnetic Inte [99, 864, 585, 962] reference_item 0.85 ["reference content label: (91) Lai, D.; Chen, X.; Wang, G.; Xu, X.; Wang, Y. Arbitrari"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
415 20 14 reference_content (92) Zhu, M.; Yan, X.; Xu, H.; Xu, Y.; Kong, L. Ultralight, compressible, and anisotropic MXene@Wood nanocomposite aerogel with excellent electromagnetic wave shielding and absorbing properties at dif [99, 965, 585, 1045] reference_item 0.85 ["reference content label: (92) Zhu, M.; Yan, X.; Xu, H.; Xu, Y.; Kong, L. Ultralight, "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
416 20 15 reference_content (93) Zeng, Z.; Jin, H.; Chen, M.; Li, W.; Zhou, L.; Zhang, Z. Lightweight and Anisotropic Porous MWCNT/WPU Composites for Ultrahigh Performance Electromagnetic Interference Shielding. Adv. Funct. Mate [99, 1046, 585, 1125] reference_item 0.85 ["reference content label: (93) Zeng, Z.; Jin, H.; Chen, M.; Li, W.; Zhou, L.; Zhang, Z"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
417 20 16 reference_content (94) Zhan, Z.; Song, Q.; Zhou, Z.; Lu, C. Ultrastrong and Conductive MXene/Cellulose Nanofiber Films Enhanced by Hierarchical Nano-Architecture and Interfacial Interaction for Flexible Electromagnetic [99, 1126, 585, 1226] reference_item 0.85 ["reference content label: (94) Zhan, Z.; Song, Q.; Zhou, Z.; Lu, C. Ultrastrong and Co"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
418 20 17 reference_content (95) Jin, W.-W.; Wang, W.-K.; Mazumdar, S.; Xu, G.-Z.; Zhang, Q.-Q. Carbon Foams with Fe-Organic Network-Derived Fe3O4 for Efficient Electromagnetic Shielding. Mater. Chem. Phys. 2023, 304 (April), 12 [99, 1227, 585, 1306] reference_item 0.85 ["reference content label: (95) Jin, W.-W.; Wang, W.-K.; Mazumdar, S.; Xu, G.-Z.; Zhang"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
419 20 18 reference_content (96) Singh, P. P.; Mondal, A.; Maity, P.; Khatua, B. B. Ionic Liquid-Dispersed PDMS/SWCNT/Ag@Ni Hybrid Composite for Temperature- and Pressure-Sensitive Smart Electromagnetic Shielding Applications. J [99, 1308, 585, 1388] reference_item 0.85 ["reference content label: (96) Singh, P. P.; Mondal, A.; Maity, P.; Khatua, B. B. Ioni"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
420 20 19 reference_content (97) Hwang, U.; Kim, J.; Seol, M.; Lee, B.; Park, I. K.; Suhr, J.; Nam, J. D. Quantitative Interpretation of Electromagnetic Interference Shielding Efficiency: Is It Really a Wave Absorber or a Reflec [98, 1389, 585, 1467] reference_item 0.85 ["reference content label: (97) Hwang, U.; Kim, J.; Seol, M.; Lee, B.; Park, I. K.; Suh"] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
421 20 20 reference_content (98) Yuan, W.; Yang, J.; Yin, F.; Li, Y.; Yuan, Y. Flexible and Stretchable MXene/Polyurethane Fabrics with Delicate Wrinkle [100, 1469, 586, 1509] reference_item 0.85 ["reference content label: (98) Yuan, W.; Yang, J.; Yin, F.; Li, Y.; Yuan, Y. Flexible "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
422 20 21 reference_content Structure Design for Effective Electromagnetic Interference Shielding at a Dynamic Stretching Process. Compos. Commun. 2020, 19 (March), 90–98. [627, 118, 1114, 175] reference_item 0.85 ["reference content label: Structure Design for Effective Electromagnetic Interference "] reference_item 0.85 reference_zone unknown_like none True True
423 20 22 reference_content (99) Guo, T.; Chen, X.; Su, L.; Li, C.; Huang, X.; Tang, X. Z. Stretched Graphene Nanosheets Formed the "Obstacle Walls" in Melamine Sponge towards Effective Electromagnetic Interference Shielding App [626, 178, 1114, 258] reference_item 0.85 ["reference content label: (99) Guo, T.; Chen, X.; Su, L.; Li, C.; Huang, X.; Tang, X. "] reference_item 0.85 reference_zone reference_like reference_numeric_parenthesis True True
424 20 23 image [633, 869, 752, 1510] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
425 20 24 text CAS BIOFINDER DISCOVERY PLATFORM™ PRECISION DATA FOR FASTER DRUG DISCOVERY [778, 1022, 1076, 1190] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
426 20 25 text CAS BioFinder helps you identify targets, biomarkers, and pathways [778, 1194, 1081, 1239] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
427 20 26 text Unlock insights [791, 1261, 993, 1291] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
428 20 27 image [948, 1414, 1093, 1500] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
429 20 28 number 33223 [585, 1528, 629, 1545] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
430 20 29 footer https://doi.org/10.1021/acsomega.4c04851 ACS Omega 2024, 9, 33204–33223 [891, 1530, 1112, 1558] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False

View file

@ -1,6 +1,6 @@
{
"document": {
"expected_reader_figure_count_min": 4,
"expected_reader_figure_count_min": 3,
"expected_reference_zone": true,
"expected_abstract_span": true,
"expected_post_reference_backmatter_zone": true,
@ -188,7 +188,6 @@
},
"41": {
"expected_object_ownership": [
{"object_type": "figure", "figure_number": 3, "asset_block_ids": [2], "must_render_as_object": true},
{"object_type": "figure", "figure_number": 4, "asset_block_ids": [8, 9], "must_render_as_object": true}
]
}

View file

@ -0,0 +1,202 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,Original Research,"[856, 55, 1101, 87]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,doc_title,Does My Patient With Shoulder Pain Have a Rotator Cuff Tear?,"[67, 134, 902, 237]",paper_title,0.8,"[""page-1 zone title_zone: Does My Patient With Shoulder Pain Have a Rotator Cuff Tear?""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,2,text,A Predictive Model From the ROW Cohort,"[65, 277, 795, 317]",unknown_structural,0.8,"[""page-1 zone title_zone: A Predictive Model From the ROW Cohort""]",paper_title,0.8,frontmatter_main_zone,support_like,none,False,True
1,3,text,"Nitin B. Jain, $ ^{*††} $ MD, MSPH, Run Fan, $ § $ PhD, MS, Laurence D. Higgins, $ || $ MD, MBA, John E. Kuhn, $ ‡ $ MD, MS, and Gregory D. Ayers, $ § $ MS","[66, 349, 953, 408]",authors,0.8,"[""page-1 zone author_zone: Nitin B. Jain, $ ^{*\u2020\u2020} $ MD, MSPH, Run Fan, $ \u00a7 $ PhD, MS, ""]",authors,0.8,body_zone,reference_like,citation_line,True,True
1,4,text,"Investigation performed at Vanderbilt University Medical Center, Nashville, Tennessee, USA","[66, 415, 1048, 444]",affiliation,0.8,"[""page-1 zone affiliation_zone: Investigation performed at Vanderbilt University Medical Cen""]",affiliation,0.8,frontmatter_main_zone,support_like,none,True,True
1,5,abstract,"Background: Rotator cuff tears are the leading cause of shoulder pain and disability. However, the diagnosis of a rotator cuff tear based on patient characteristics, symptoms, and physical examination","[65, 471, 1104, 562]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,6,abstract,"Purpose: To model patient characteristics, symptoms, and physical examination findings that predict a rotator cuff tear. We present a nomogram based on our predictive model that can be used in patient","[65, 565, 1104, 635]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,7,abstract,"Study Design: Cohort study (diagnosis); Level of evidence, 2.","[67, 636, 572, 660]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,8,abstract,Methods: We recruited patients from outpatient clinics who were $ \geq $45 years of age and who had shoulder pain of at least 4 weeks' duration. A rotator cuff tear was diagnosed based on expert clin,"[65, 664, 1103, 733]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,9,abstract,"Results: A total of 123 patients (41%) had rotator cuff tears, and 178 patients (59%) did not. The predictors of the diagnosis of a rotator cuff tear included external rotation strength ratio of the a","[65, 737, 1103, 827]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,10,abstract,"Conclusion: Presented is a model that can accurately predict the diagnosis of a rotator cuff tear with satisfactory discrimination and calibration based on 4 variables: sex, lift-off test, Jobe test, ","[65, 831, 1104, 920]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,11,text,Keywords: rotator cuff tears; diagnostic accuracy; predictive modeling,"[67, 924, 647, 949]",frontmatter_noise,0.7,"[""frontmatter noise text: Keywords: rotator cuff tears; diagnostic accuracy; predictiv""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,12,text,"In the United States, shoulder symptoms accounted for an estimated 10.7 million ambulatory care visits to physician offices in 2013. $ ^{10} $ The prevalence of shoulder pain in the population ranges ","[65, 990, 563, 1279]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,13,text,,"[605, 990, 1102, 1079]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,frontmatter_main_zone,support_like,empty,True,True
1,14,text,There are several “special” shoulder physical examinations described for the diagnosis of rotator cuff tears. Data on the diagnostic accuracy of individual special shoulder tests for rotator cuff tear,"[605, 1079, 1103, 1368]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,15,footnote,"The Orthopaedic Journal of Sports Medicine, 6(7), 2325967118784897
DOI: 10.1177/2325967118784897
© The Author(s) 2018","[67, 1306, 548, 1365]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: The Orthopaedic Journal of Sports Medicine, 6(7), 2325967118""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,16,footnote,"This open-access article is published and distributed under the Creative Commons Attribution - NonCommercial - No Derivatives License (http://creativecommons.org/licenses/by-nc-nd/4.0/), which permits","[66, 1386, 1104, 1457]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: This open-access article is published and distributed under ""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,17,number,1,"[578, 1484, 591, 1500]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,0,number,2,"[68, 70, 84, 86]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,header,Jain et al,"[99, 69, 180, 89]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,2,header,The Orthopaedic Journal of Sports Medicine,"[744, 68, 1101, 90]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,3,text,diagnostic predictive model in a large cohort for use in clinical practice.,"[65, 139, 560, 183]",unknown_structural,0.8,"[""page-1 zone title_zone: diagnostic predictive model in a large cohort for use in cli""]",paper_title,0.8,body_zone,body_like,none,False,True
2,4,text,"In a large cohort of patients with shoulder pain, we modeled patient characteristics, symptoms, and physical examination findings that predict a symptomatic rotator cuff tear. We present a nomogram ba","[65, 184, 563, 340]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,5,paragraph_title,METHODS,"[67, 375, 174, 399]",section_heading,0.9,"[""explicit scholarly heading: METHODS""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
2,6,paragraph_title,Patient Population,"[67, 415, 239, 441]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Patient Population""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,7,text,We recruited a cohort of 390 patients with shoulder pain and/or limitation in range of motion lasting at least 4 weeks and who completed baseline history questionnaires. These patients were recruited ,"[64, 456, 562, 855]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,8,paragraph_title,History and Shoulder Pain/Function Assessment,"[67, 876, 508, 901]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: History and Shoulder Pain/Function Assessment""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
2,9,text,"The structured shoulder and general health questionnaire assessed patient demographics; comorbidities; symptoms; smoking habits; prior treatments, including physical therapy and corticosteroid injecti","[65, 917, 562, 1227]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,10,paragraph_title,Physical Examination Protocol,"[607, 139, 888, 164]",unknown_structural,0.6,"[""page-1 frontmatter title guard: Physical Examination Protocol""]",paper_title,0.6,body_zone,heading_like,none,False,True
2,11,text,"Special Tests. Our standardized physical examination protocol has been previously published and was based on the original descriptions of the special shoulder tests. $ ^{28,29} $ Briefly, shoulder spe","[605, 181, 1103, 554]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,12,text,"Strength Testing. Strength testing was performed using a handheld dynamometer in abduction, external rotation, and internal rotation by trained research assistants. Both the affected and contralateral","[605, 554, 1103, 798]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,13,paragraph_title,Diagnostic Imaging,"[607, 831, 789, 857]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Diagnostic Imaging""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,14,text,Shoulder MRI scans were read in a blinded fashion by consensus of 2 shoulder experts (L.D.H. and N.B.J. or J.E.K. and N.B.J.). Although this was a pragmatic cohort with no specific requirements for MR,"[605, 872, 1103, 1229]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,15,footnote,"*Address correspondence to Nitin B. Jain, MD, MSPH, Department of Physical Medicine and Rehabilitation, Vanderbilt University Medical Center, 2201 Children's Way, Suite 1318, Nashville, TN 37212, USA ","[68, 1256, 1099, 1294]",footnote,0.7,"[""footnote label: *Address correspondence to Nitin B. Jain, MD, MSPH, Departme""]",footnote,0.7,body_zone,body_like,none,True,True
2,16,footnote," $ ^{\dagger} $Department of Physical Medicine and Rehabilitation. Vanderbilt University Medical Center, Nashville, Tennessee, USA.","[91, 1292, 904, 1313]",footnote,0.7,"[""footnote label: $ ^{\\dagger} $Department of Physical Medicine and Rehabilita""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
2,17,footnote," $ ^{†} $Department of Orthopaedic Surgery and Rehabilitation, Vanderbilt University Medical Center, Nashville, Tennessee, USA.","[95, 1309, 929, 1328]",footnote,0.7,"[""footnote label: $ ^{\u2020} $Department of Orthopaedic Surgery and Rehabilitation""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
2,18,footnote," $ ^{§} $Department of Biostatistics, Vanderbilt University Medical Center, Nashville, Tennessee, USA.","[90, 1326, 736, 1345]",footnote,0.7,"[""footnote label: $ ^{\u00a7} $Department of Biostatistics, Vanderbilt University M""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
2,19,footnote,"Department of Orthopaedic Surgery, Brigham and Women's Hospital, Harvard Medical School, Boston, Massachusetts, USA.","[86, 1344, 949, 1364]",footnote,0.7,"[""footnote label: Department of Orthopaedic Surgery, Brigham and Women's Hospi""]",footnote,0.7,body_zone,body_like,none,True,True
2,20,footnote,One or more of the authors has declared the following potential conflict of interest or source of funding: This work was supported by a Clinical and Translational Science Award (No. UL1TR000445) from ,"[65, 1363, 1104, 1436]",footnote,0.7,"[""footnote label: One or more of the authors has declared the following potent""]",footnote,0.7,body_zone,support_like,none,True,True
2,21,footnote,Ethical approval for this study was obtained from Partners HealthCare and Vanderbilt University.,"[90, 1435, 745, 1456]",footnote,0.7,"[""footnote label: Ethical approval for this study was obtained from Partners H""]",footnote,0.7,body_zone,body_like,none,True,True
3,0,header,The Orthopaedic Journal of Sports Medicine,"[67, 68, 424, 90]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,1,header,Predicting Rotator Cuff Diagnosis,"[798, 68, 1071, 90]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,2,number,3,"[1086, 69, 1101, 86]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,3,text,"0.90 for tear presence, tear size, and tear thickness. $ ^{26} $ MRI features that were assessed in a standardized manner included tear thickness, tear size in the longitudinal and transverse planes, ","[65, 137, 562, 295]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,4,paragraph_title,Diagnosis of Rotator Cuff Tears (Reference Standard),"[66, 327, 357, 376]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Diagnosis of Rotator Cuff Tears (Reference Standard)""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
3,5,text,"Prior literature has shown structural evidence for rotator cuff tears even in asymptomatic patients. $ ^{44,54,61,62} $ Moreover, a rotator cuff tear is a clinical syndrome, and a case definition simp","[66, 393, 562, 831]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,"In our analysis, we excluded 65 patients who had a degree of certainty of $ \geq $50 but (1) who did not undergo MRI because it was not clinically indicated/ordered (n = 31) or (2) whose MRI did not ","[65, 831, 562, 1162]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,7,paragraph_title,Statistical Analysis,"[67, 1195, 241, 1219]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
3,8,text,"We followed the methodology described by Harrell $ ^{19} $ for creating our predictive model. Among 115 individual and composite variables, 41 variables were selected a priori by clinical judgment as ","[65, 1235, 562, 1457]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,9,text,,"[606, 140, 1102, 403]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,10,text,"We used logistic regression to model the probability of a rotator cuff tear with our predictor set. The effect size from this model was the odds ratio, which estimated the increased odds of a rotator ","[606, 404, 1103, 688]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,11,text,"Seeking the most parsimonious predictive model (termed the final model), we used ordinary least squares to fit the full model—predicted values with all 9 variables, with backward elimination for each ","[606, 688, 1104, 953]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,12,paragraph_title,RESULTS,"[608, 997, 705, 1020]",section_heading,0.9,"[""explicit scholarly heading: RESULTS""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
3,13,text,"Of the 301 patients in our cohort who were included in this analysis, 123 (41%) were diagnosed with a rotator cuff tear, and 178 patients (59%) did not have a tear (Table 1). Patients without tears ha","[606, 1038, 1101, 1302]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,14,text,Our final model was derived using bootstrapped backward elimination of the full model variable fitted to the predicted values of the full model. The subsequent final model variable set was refit to th,"[605, 1302, 1102, 1458]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,0,number,4,"[68, 70, 84, 87]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,header,Jain et al,"[99, 68, 180, 89]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,2,header,The Orthopaedic Journal of Sports Medicine,"[744, 67, 1101, 90]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,3,figure_title,TABLE 1,"[270, 139, 355, 159]",table_caption,0.9,"[""table prefix matched: TABLE 1""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
4,4,figure_title,Baseline Characteristics of the ROW Cohort by the Presence of Rotator Cuff Tears $ ^{a} $,"[129, 160, 502, 207]",figure_caption,0.85,"[""figure_title label: Baseline Characteristics of the ROW Cohort by the Presence o""]",figure_caption,0.85,body_zone,legend_like,none,True,True
4,5,table,<table><tr><td></td><td>Rotator Cuff Tear (n = 123)</td><td>No Rotator Cuff Tear (n = 178)</td></tr><tr><td>Sex</td><td></td><td></td></tr><tr><td>Female</td><td>49 (40)</td><td>95 (53)</td></tr><tr><,"[66, 210, 562, 1021]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
4,6,vision_footnote," $ ^{a} $Data are shown as n (%) unless otherwise indicated. ROW, Rotator Cuff Outcomes Workgroup; SPADI, Shoulder Pain and Disability Index.","[67, 1030, 559, 1092]",footnote,0.7,"[""vision_footnote label: $ ^{a} $Data are shown as n (%) unless otherwise indicated. ""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
4,7,vision_footnote, $ ^{b} $Ratio of the affected versus contralateral shoulder.,"[91, 1092, 480, 1113]",footnote,0.7,"[""vision_footnote label: $ ^{b} $Ratio of the affected versus contralateral shoulder.""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
4,8,text,"A patient with a positive Jobe test result was 9.19 (95% CI, 4.69-17.99) times more likely to have a rotator cuff tear versus a patient with a negative test result. The lift-off test had an odds ratio","[65, 1145, 561, 1345]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,9,text,"For ease of use in clinical settings, we plotted a nomogram with each of the significant variables in our final model (Figure 2A). The nomogram can be used to calculate the probability of a rotator cu","[65, 1346, 562, 1458]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,10,figure_title,TABLE 2,"[812, 139, 898, 159]",table_caption,0.9,"[""table prefix matched: TABLE 2""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
4,11,figure_title,Predictors of the Diagnosis of a Rotator Cuff Tear (Final Model),"[720, 162, 990, 207]",figure_caption_candidate,0.85,"[""figure_title label: Predictors of the Diagnosis of a Rotator Cuff Tear (Final Mo""]",figure_caption,0.85,body_zone,body_like,none,False,False
4,12,table,<table><tr><td></td><td>Odds Ratio (95% CI)</td></tr><tr><td>External rotation strength ratio (affected vs contralateral shoulder)</td><td>1.20 (1.08-1.34)</td></tr><tr><td>Sex (male vs female)</td><t,"[608, 214, 1099, 382]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
4,13,text,"test result (40 points), positive Jobe test result (~60 points), and external rotation strength ratio of 1 (~50 points) has a cumulative score of approximately 170 points and has a probability exceedi","[606, 431, 1103, 629]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,14,text,A calibration curve for our final model showed almost perfect overlap of predicted versus actual values (slope = 0.95) for the diagnosis of a rotator cuff tear (Figure 3). The corrected c-index for th,"[606, 629, 1102, 787]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,15,paragraph_title,DISCUSSION,"[608, 820, 738, 844]",section_heading,0.9,"[""explicit scholarly heading: DISCUSSION""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
4,16,text,"The diagnostic dilemma of a rotator cuff tear in patients with shoulder pain is recognized by experts in the recent literature. $ ^{22,42} $ In a large cohort of patients with shoulder pain, our resul","[606, 862, 1103, 1105]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,17,text,"Several studies, including data from our cohort, have reported on the sensitivity and specificity of special tests in the diagnosis of rotator cuff tears. $ ^{4-6,25,28,38,39,47,63} $ The limitations ","[605, 1104, 1103, 1458]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,0,header,The Orthopaedic Journal of Sports Medicine,"[68, 68, 424, 90]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,1,header,Predicting Rotator Cuff Diagnosis,"[798, 68, 1071, 90]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,2,number,5,"[1086, 69, 1101, 87]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,3,image,,"[187, 135, 978, 458]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,4,figure_title,"Figure 1. Odds ratios with CIs for the probability of a rotator cuff tear (final model). The bars represent 90% (dark blue), 95% (light blue), and 99% (gray) CIs for the odds ratios.","[66, 478, 1103, 528]",figure_caption,0.92,"[""figure_title label: Figure 1. Odds ratios with CIs for the probability of a rota""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,5,figure_title,A,"[232, 553, 265, 582]",figure_inner_text,0.9,"[""panel label / figure inner text: A""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
5,6,image,,"[233, 566, 936, 1188]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,7,figure_title,Figure 2. Nomogram to predict the probability of a rotator cuff tear (final model). (A) The values of a predictor variable for a patient are compared via a perpendicular line with the points scale. Th,"[66, 1207, 1104, 1297]",figure_caption,0.92,"[""figure_title label: Figure 2. Nomogram to predict the probability of a rotator c""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,8,text,"combination of imaging/surgical deficits and clinical findings is essential in making a diagnosis of the clinical syndrome of rotator cuff tear. Our study addresses this issue, although the clinical d","[65, 1322, 562, 1458]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,text,,"[606, 1323, 1102, 1412]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
5,10,text,"Our study found that in addition to a patients sex, the performance of simple physical maneuvers such as the","[607, 1412, 1103, 1458]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,0,number,6,"[69, 69, 84, 87]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,header,Jain et al,"[99, 68, 180, 89]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,2,header,The Orthopaedic Journal of Sports Medicine,"[744, 68, 1101, 90]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
6,3,chart,,"[108, 139, 518, 507]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,4,figure_title,Figure 3. Calibration curve for the fitted final model. Small vertical lines at the top of the graph denote the frequency of predicted probabilities for the patient set. The apparent line depicts the ,"[66, 532, 561, 754]",figure_caption,0.92,"[""figure_title label: Figure 3. Calibration curve for the fitted final model. Smal""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,5,text,lift-off test and Jobe test as well as the external rotation strength ratio can assist in the diagnosis of a rotator cuff tear. Strength measurements using a handheld dynamometer are easily performed ,"[65, 787, 562, 1012]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,6,text,The Jobe test $ ^{32} $ or empty can test is performed by first assessing the deltoid with the arm in $ 90^{\circ} $ of abduction and neutral rotation. The shoulder is then internally rotated and ang,"[65, 1009, 563, 1459]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,7,text,,"[606, 138, 1102, 205]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
6,8,text,"The lift-off test for subscapularis tears is based on the tendon's function as an internal rotator. With the clinician's assistance, the patient touches his or her lower back with the arm fully extend","[606, 206, 1103, 579]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,9,text,Our study was performed in a specialty clinic setting. This study design was ideal and was chosen a priori because an accurate clinical diagnosis of a rotator cuff tear was an essential component of t,"[605, 578, 1102, 886]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,10,text,We did not assess the role of a local anesthetic injection in the subacromial space to diagnose rotator cuff tears or impingement syndrome. Another limitation is the potential variability in the perfo,"[605, 885, 1103, 1304]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,11,paragraph_title,CONCLUSION,"[608, 1347, 748, 1371]",section_heading,0.9,"[""explicit scholarly heading: CONCLUSION""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
6,12,text,"We present a model that can predict the diagnosis of a rotator cuff tear based on 4 variables—sex, lift-off test, Job test, and external rotation strength ratio—without the","[605, 1388, 1103, 1458]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,0,header,The Orthopaedic Journal of Sports Medicine,"[67, 69, 423, 89]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
7,1,header,Predicting Rotator Cuff Diagnosis,"[799, 69, 1071, 89]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
7,2,number,7,"[1087, 70, 1100, 86]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,3,text,"need for expensive imaging such as MRI. There may be situations, such as considerations for surgery, profound loss of strength, and major traumatic events leading to the current presentation, that may","[65, 139, 561, 365]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,4,paragraph_title,REFERENCES,"[69, 412, 196, 433]",reference_heading,0.9,"[""references heading: REFERENCES""]",reference_heading,0.9,reference_zone,unknown_like,short_fragment,True,True
7,5,reference_content,"1. Altman R, Asch E, Bloch D, et al. Development of criteria for the classification and reporting of osteoarthritis: classification of osteoarthritis of the knee. Diagnostic and Therapeutic Criteria C","[77, 451, 560, 545]",reference_item,0.85,"[""reference content label: 1. Altman R, Asch E, Bloch D, et al. Development of criteria""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,6,reference_content,"2. Andersson HI, Ejlertsson G, Leden I, Rosenberg C. Chronic pain in a geographically defined general population: studies of differences in age, gender, social class, and pain localization. Clin J Pai","[76, 549, 559, 622]",reference_item,0.85,"[""reference content label: 2. Andersson HI, Ejlertsson G, Leden I, Rosenberg C. Chronic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,7,reference_content,"3. Arnett FC, Edworthy SM, Bloch DA, et al. The American Rheumatism Association 1987 revised criteria for the classification of rheumatoid arthritis. Arthritis Rheum. 1988;31(3):315-324.","[76, 626, 559, 681]",reference_item,0.85,"[""reference content label: 3. Arnett FC, Edworthy SM, Bloch DA, et al. The American Rhe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,8,reference_content,"4. Bak K, Sorensen AK, Jorgensen U, et al. The value of clinical tests in acute full-thickness tears of the supraspinatus tendon: does a subacromial lidocaine injection help in the clinical diagnosis?","[76, 685, 559, 758]",reference_item,0.85,"[""reference content label: 4. Bak K, Sorensen AK, Jorgensen U, et al. The value of clin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,9,reference_content,"5. Barth J, Audebert S, Toussaint B, et al. Diagnosis of subscapularis tendon tears: are available diagnostic tests pertinent for a positive diagnosis? Orthop Traumatol Surg Res. 2012;98(suppl 8):S178","[76, 762, 559, 817]",reference_item,0.85,"[""reference content label: 5. Barth J, Audebert S, Toussaint B, et al. Diagnosis of sub""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,10,reference_content,"6. Barth JR, Burkhart SS, De Beer JF. The bear-hug test: a new and sensitive test for diagnosing a subscapularis tear. Arthroscopy. 2006;22(10):1076-1084.","[77, 819, 558, 874]",reference_item,0.85,"[""reference content label: 6. Barth JR, Burkhart SS, De Beer JF. The bear-hug test: a n""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,11,reference_content,"7. Beach H, Gordon P. Clinical examination of the shoulder. New Engl J Med. 2016;375(11):e24.","[76, 877, 559, 914]",reference_item,0.85,"[""reference content label: 7. Beach H, Gordon P. Clinical examination of the shoulder. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,12,reference_content,"8. Bergenudd H, Lindgarde F, Nilsson B, Petersson CJ. Shoulder pain in middle age: a study of prevalence and relation to occupational work load and psychosocial factors. Clin Orthop Relat Res. 1988;(2","[77, 916, 558, 989]",reference_item,0.85,"[""reference content label: 8. Bergenudd H, Lindgarde F, Nilsson B, Petersson CJ. Should""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,13,reference_content,"9. Cadogan A, Laslett M, Hing W, McNair P, Williams M. Interexaminer reliability of orthopaedic special tests used in the assessment of shoulder pain. Man Ther. 2011;16(2):131-135.","[74, 993, 559, 1049]",reference_item,0.85,"[""reference content label: 9. Cadogan A, Laslett M, Hing W, McNair P, Williams M. Inter""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,14,reference_content,10. Centers for Disease Control and Prevention/National Center for Health Statistics. National Ambulatory Medical Care Survey: 2013 state and national summary tables. Available at: https://www.cdc.gov,"[72, 1052, 560, 1126]",reference_item,0.85,"[""reference content label: 10. Centers for Disease Control and Prevention/National Cent""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,15,reference_content,"11. Chard MD, Hazleman R, Hazleman BL, King RH, Reiss BB. Shoulder disorders in the elderly: a community survey. Arthritis Rheum. 1991;34(6):766-769.","[71, 1128, 558, 1183]",reference_item,0.85,"[""reference content label: 11. Chard MD, Hazleman R, Hazleman BL, King RH, Reiss BB. Sh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,16,reference_content,"12. Colvin AC, Egorova N, Harrison AK, Moskowitz A, Flatow EL. National trends in rotator cuff repair. J Bone Joint Surg Am. 2012;94(3):227-233.","[71, 1186, 558, 1240]",reference_item,0.85,"[""reference content label: 12. Colvin AC, Egorova N, Harrison AK, Moskowitz A, Flatow E""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,17,reference_content,"13. de Jesus JO, Parker L, Frangos AJ, Nazarian LN. Accuracy of MRI, MR arthrography, and ultrasound in the diagnosis of rotator cuff tears: a meta-analysis. AJR Am J Roentgenol. 2009;192(6):1701-1707","[71, 1244, 558, 1300]",reference_item,0.85,"[""reference content label: 13. de Jesus JO, Parker L, Frangos AJ, Nazarian LN. Accuracy""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,18,reference_content,"14. Dougados M, van der Linden S, Juhlin R, et al. The European Spondylarthropathy Study Group preliminary criteria for the classification of spondylarthropathy. Arthritis Rheum. 1991;34(10):1218-1227","[71, 1303, 559, 1358]",reference_item,0.85,"[""reference content label: 14. Dougados M, van der Linden S, Juhlin R, et al. The Europ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,19,reference_content,"15. Dromerick AW, Kumar A, Volshteyn O, Edwards DF. Hemiplegic shoulder pain syndrome: interrater reliability of physical diagnosis signs. Arch Phys Med Rehabil. 2006;87(2):294-295.","[71, 1360, 558, 1416]",reference_item,0.85,"[""reference content label: 15. Dromerick AW, Kumar A, Volshteyn O, Edwards DF. Hemipleg""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,20,reference_content,"16. Gerber C, Hersche O, Farron A. Isolated rupture of the subscapularis tendon. J Bone Joint Surg Am. 1996;78(7):1015-1023.","[71, 1418, 558, 1454]",reference_item,0.85,"[""reference content label: 16. Gerber C, Hersche O, Farron A. Isolated rupture of the s""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,21,reference_content,"17. Gerber C, Krushell RJ. Isolated rupture of the tendon of the subscapularis muscle: clinical features in 16 cases. J Bone Joint Surg Br. 1991;73(3):389-394.","[611, 141, 1100, 196]",reference_item,0.85,"[""reference content label: 17. Gerber C, Krushell RJ. Isolated rupture of the tendon of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,22,reference_content,"18. Gismervik SO, Droget JO, Granviken F, Ro M, Leivseth G. Physical examination tests of the shoulder: a systematic review and meta-analysis of diagnostic test performance. BMC Musculoskelet Disord. ","[611, 199, 1101, 273]",reference_item,0.85,"[""reference content label: 18. Gismervik SO, Droget JO, Granviken F, Ro M, Leivseth G. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,23,reference_content,"19. Harrell FE. Regression Modeling Strategies: With Applications to Linear Models, Logistic and Ordinal Regression, and Survival Analysis. 2nd ed. New York: Springer; 2015.","[611, 276, 1100, 332]",reference_item,0.85,"[""reference content label: 19. Harrell FE. Regression Modeling Strategies: With Applica""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,24,reference_content,"20. Hawkins RJ, Kennedy JC. Impingement syndrome in athletes. Am J Sports Med. 1980;8(3):151-158.","[610, 335, 1101, 370]",reference_item,0.85,"[""reference content label: 20. Hawkins RJ, Kennedy JC. Impingement syndrome in athletes""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,25,reference_content,"21. Hayes K, Walton JR, Szomor ZL, Murrell GA. Reliability of 3 methods for assessing shoulder strength. J Shoulder Elbow Surg. 2002;11(1):33-39.","[610, 373, 1100, 427]",reference_item,0.85,"[""reference content label: 21. Hayes K, Walton JR, Szomor ZL, Murrell GA. Reliability o""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
7,26,reference_content,"22. Hermans J, Luime JJ, Meuffels DE, Reijman M, Simel DL, Bierma-Zeinstra SM. Does this patient with shoulder pain have rotator cuff disease? The Rational Clinical Examination systematic review. JAMA","[609, 431, 1100, 506]",reference_item,0.85,"[""reference content label: 22. Hermans J, Luime JJ, Meuffels DE, Reijman M, Simel DL, B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,27,reference_content,"23. Hertel R, Ballmer FT, Lombert SM, Gerber C. Lag signs in the diagnosis of rotator cuff rupture. J Shoulder Elbow Surg. 1996;5(4):307-313.","[610, 509, 1100, 563]",reference_item,0.85,"[""reference content label: 23. Hertel R, Ballmer FT, Lombert SM, Gerber C. Lag signs in""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,28,reference_content,"24. Hijioka A, Suzuki K, Nakamura T, Hojo T. Degenerative change and rotator cuff tears: an anatomical study in 160 shoulders of 80 cadavers. Arch Orthop Trauma Surg. 1993;112(2):61-64.","[610, 567, 1100, 622]",reference_item,0.85,"[""reference content label: 24. Hijioka A, Suzuki K, Nakamura T, Hojo T. Degenerative ch""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,29,reference_content,"25. Itoi E, Minagawa H, Yamamoto N, Seki N, Abe H. Are pain location and physical examinations useful in locating a tear site of the rotator cuff? Am J Sports Med. 2006;34(2):256-264.","[610, 626, 1101, 681]",reference_item,0.85,"[""reference content label: 25. Itoi E, Minagawa H, Yamamoto N, Seki N, Abe H. Are pain ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,30,reference_content,"26. Jain NB, Collins J, Newman JS, Katz JN, Losina E, Higgins LD. Reliability of magnetic resonance imaging assessment of rotator cuff: the ROW study. PM R. 2015;7(3):245-254.","[610, 683, 1101, 737]",reference_item,0.85,"[""reference content label: 26. Jain NB, Collins J, Newman JS, Katz JN, Losina E, Higgin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,31,reference_content,"27. Jain NB, Higgins LD, Losina E, Collins J, Blazar PE, Katz JN. Epidemiology of musculoskeletal upper extremity ambulatory surgery in the United States. BMC Musculoskelet Disord. 2014;15(1):4.","[610, 741, 1100, 796]",reference_item,0.85,"[""reference content label: 27. Jain NB, Higgins LD, Losina E, Collins J, Blazar PE, Kat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,32,reference_content,"28. Jain NB, Luz J, Higgins LD, et al. The diagnostic accuracy of special tests for rotator cuff tear: the ROW cohort study. Am J Phys Med Rehabil. 2017;96(3):176-183.","[610, 799, 1100, 854]",reference_item,0.85,"[""reference content label: 28. Jain NB, Luz J, Higgins LD, et al. The diagnostic accura""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,33,reference_content,"29. Jain NB, Wilcox RB 3rd, Katz JN, Higgins LD. Clinical examination of the rotator cuff. PM R. 2013;5(1):45-56.","[609, 857, 1100, 892]",reference_item,0.85,"[""reference content label: 29. Jain NB, Wilcox RB 3rd, Katz JN, Higgins LD. Clinical ex""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,34,reference_content,"30. Jain NB, Yamaguchi K. History and physical examination provide little guidance on diagnosis of rotator cuff tears. Evid Based Med. 2014;19(3):108.","[611, 896, 1100, 949]",reference_item,0.85,"[""reference content label: 30. Jain NB, Yamaguchi K. History and physical examination p""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,35,reference_content,"31. Jia X, Petersen SA, Khosravi AH, Almareddi V, Pannirselvam V, McFarland EG. Examination of the shoulder: the past, the present, and the future. J Bone Joint Surg Am. 2009;91(suppl 6):10-18.","[609, 953, 1099, 1009]",reference_item,0.85,"[""reference content label: 31. Jia X, Petersen SA, Khosravi AH, Almareddi V, Pannirselv""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,36,reference_content,"32. Jobe FW, Jobe CM. Painful athletic injuries of the shoulder. Clin Orthop Relat Res. 1983;(173):117-124.","[609, 1011, 1100, 1047]",reference_item,0.85,"[""reference content label: 32. Jobe FW, Jobe CM. Painful athletic injuries of the shoul""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,37,reference_content,"33. Jobe FW, Moynes DR. Delineation of diagnostic criteria and a rehabilitation program for rotator cuff injuries. Am J Sports Med. 1982;10(6):336-339.","[610, 1050, 1100, 1104]",reference_item,0.85,"[""reference content label: 33. Jobe FW, Moynes DR. Delineation of diagnostic criteria a""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,38,reference_content,"34. Johansson K, Ivarson S. Intra- and interexaminer reliability of four manual shoulder maneuvers used to identify subacromial pain. Man Ther. 2009;14(2):231-239.","[609, 1108, 1099, 1164]",reference_item,0.85,"[""reference content label: 34. Johansson K, Ivarson S. Intra- and interexaminer reliabi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,39,reference_content,"35. Katz JN, Dalgas M, Stucki G, et al. Degenerative lumbar spinal stenosis: diagnostic value of the history and physical examination. Arthritis Rheum. 1995;38(9):1236-1241.","[610, 1166, 1100, 1221]",reference_item,0.85,"[""reference content label: 35. Katz JN, Dalgas M, Stucki G, et al. Degenerative lumbar ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,40,reference_content,"36. Kelly BT, Kadrmas WR, Speer KP. Empty can versus full can exercise for rotator cuff rehabilitation: an electromyographic analysis. Orthop Trans. 1997;21:147-148.","[610, 1224, 1100, 1279]",reference_item,0.85,"[""reference content label: 36. Kelly BT, Kadrmas WR, Speer KP. Empty can versus full ca""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,41,reference_content,"37. Kim E, Jeong HJ, Lee KW, Song JS. Interpreting positive signs of the supraspinatus test in screening for torn rotator cuff. Acta Med Okayama. 2006;60(4):223-228.","[610, 1282, 1100, 1337]",reference_item,0.85,"[""reference content label: 37. Kim E, Jeong HJ, Lee KW, Song JS. Interpreting positive ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,42,reference_content,"38. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of painful shoulders and correlation between physical examination and ultrasonographic rotator cuff tear. Mod Rheumatol. 2007;17(3):213-219.","[610, 1340, 1100, 1395]",reference_item,0.85,"[""reference content label: 38. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of pai""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
7,43,reference_content,"39. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of the shoulder in patients with rheumatoid arthritis and comparison with physical examination. J Korean Med Sci. 2007;22:660-666.","[610, 1398, 1100, 1454]",reference_item,0.85,"[""reference content label: 39. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of the""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,0,number,8,"[69, 70, 83, 86]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
8,1,header,Jain et al,"[99, 69, 179, 88]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
8,2,header,The Orthopaedic Journal of Sports Medicine,"[745, 69, 1100, 89]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
8,3,reference_content,"40. MacDonald PB, Clark P, Sutherland K. An analysis of the diagnostic accuracy of the Hawkins and Neer subacromial impingement signs. J Shoulder Elbow Surg. 2000;9(4):299-301.","[68, 141, 560, 195]",reference_item,0.85,"[""reference content label: 40. MacDonald PB, Clark P, Sutherland K. An analysis of the ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,4,reference_content,"41. Marantz PR, Tobin JN, Wassertheil-Smoller S, et al. The relationship between left ventricular systolic function and congestive heart failure diagnosed by clinical criteria. Circulation. 1988;77(3)","[69, 198, 558, 252]",reference_item,0.85,"[""reference content label: 41. Marantz PR, Tobin JN, Wassertheil-Smoller S, et al. The ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,5,reference_content,42. Matsen FA 3rd. Clinical practice: rotator-cuff failure. New Engl J Med. 2008;358(20):2138-2147.,"[70, 255, 557, 290]",reference_item,0.85,"[""reference content label: 42. Matsen FA 3rd. Clinical practice: rotator-cuff failure. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,6,reference_content,"43. Michener LA, Walsworth MK, Doukas WC, Murphy KP. Reliability and diagnostic accuracy of 5 physical examination tests and combination of tests for subacromial impingement. Arch Phys Med Rehabil. 20","[69, 293, 559, 365]",reference_item,0.85,"[""reference content label: 43. Michener LA, Walsworth MK, Doukas WC, Murphy KP. Reliabi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,7,reference_content,"44. Milgrom C, Schaffler M, Gilbert S, van Holsbeeck M. Rotator-cuff changes in asymptomatic adults: the effect of age, hand dominance and gender. J Bone Joint Surg Br. 1995;77(2):296-298.","[69, 368, 559, 422]",reference_item,0.85,"[""reference content label: 44. Milgrom C, Schaffler M, Gilbert S, van Holsbeeck M. Rota""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,8,reference_content,"45. Miller JE, Higgins LD, Dong Y, et al. Association of strength measurement with rotator cuff tear in patients with shoulder pain: the Rotator Cuff Outcomes Workgroup Study. Am J Phys Med Rehabil. 2","[71, 425, 559, 498]",reference_item,0.85,"[""reference content label: 45. Miller JE, Higgins LD, Dong Y, et al. Association of str""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,9,reference_content,"46. Mitchell C, Adebajo A, Hay E, Carr A. Shoulder pain: diagnosis and management in primary care. BMJ. 2005;331(7525):1124-1128.","[69, 501, 558, 537]",reference_item,0.85,"[""reference content label: 46. Mitchell C, Adebajo A, Hay E, Carr A. Shoulder pain: dia""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,10,reference_content,"47. Naredo E, Aguado P, De Miguel E, et al. Painful shoulder: comparison of physical examination and ultrasonographic findings. Ann Rheum Dis. 2002;61:132-136.","[70, 539, 559, 593]",reference_item,0.85,"[""reference content label: 47. Naredo E, Aguado P, De Miguel E, et al. Painful shoulder""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,11,reference_content,48. Neer CS 2nd. Impingement lesions. Clin Orthop Relat Res. 1983; (173): 70-77.,"[69, 595, 558, 630]",reference_item,0.85,"[""reference content label: 48. Neer CS 2nd. Impingement lesions. Clin Orthop Relat Res.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,12,reference_content,"49. Park HB, Yokota A, Gill HS, El Rassi G, McFarland EG. Diagnostic accuracy of clinical tests for the different degrees of subacromial impingement syndrome. J Bone Joint Surg Am. 2005;87(7):1446-145","[70, 633, 558, 705]",reference_item,0.85,"[""reference content label: 49. Park HB, Yokota A, Gill HS, El Rassi G, McFarland EG. Di""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,13,reference_content,"50. Pope DP, Croft PR, Pritchard CM, Macfarlane GJ, Silman AJ. The frequency of restricted range of movement in individuals with self-reported shoulder pain: results from a population-based survey. Br","[70, 709, 559, 782]",reference_item,0.85,"[""reference content label: 50. Pope DP, Croft PR, Pritchard CM, Macfarlane GJ, Silman A""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,14,reference_content,"51. Roach KE, Budiman-Mak E, Songsiridej N, Lertratanakul Y. Development of a Shoulder Pain and Disability Index. Arthritis Care Res. 1991;4(4):143-149.","[70, 785, 559, 839]",reference_item,0.85,"[""reference content label: 51. Roach KE, Budiman-Mak E, Songsiridej N, Lertratanakul Y.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,15,reference_content,52. Rubin DB. Multiple Imputation for Nonresponse in Surveys. New York: John Wiley and Sons; 2004.,"[70, 842, 559, 878]",reference_item,0.85,"[""reference content label: 52. Rubin DB. Multiple Imputation for Nonresponse in Surveys""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,16,reference_content,"53. Scheibel M, Magosch P, Pritsch M, Lichtenberg S, Habermeyer P. The belly-off sign: a new clinical diagnostic sign for subscapularis lesions. Arthroscopy. 2005;21(10):1229-1235.","[609, 140, 1100, 196]",reference_item,0.85,"[""reference content label: 53. Scheibel M, Magosch P, Pritsch M, Lichtenberg S, Haberme""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,17,reference_content,"54. Sher JS, Uribe JW, Posada A, Murphy BJ, Zlatkin MB. Abnormal findings on magnetic resonance images of asymptomatic shoulders. J Bone Joint Surg Am. 1995;77(1):10-15.","[610, 198, 1099, 254]",reference_item,0.85,"[""reference content label: 54. Sher JS, Uribe JW, Posada A, Murphy BJ, Zlatkin MB. Abno""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,18,reference_content,55. Speed C. Shoulder pain. BMJ Clinical Evidence. 2006;2006:1107.,"[609, 256, 1081, 274]",reference_item,0.85,"[""reference content label: 55. Speed C. Shoulder pain. BMJ Clinical Evidence. 2006;2006""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,19,reference_content,"56. Urwin M, Symmons D, Allison T, et al. Estimating the burden of musculoskeletal disorders in the community: the comparative prevalence of symptoms at different anatomical sites, and the relation to","[611, 277, 1101, 352]",reference_item,0.85,"[""reference content label: 56. Urwin M, Symmons D, Allison T, et al. Estimating the bur""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,20,reference_content,"57. Vecchio P, Kavanagh R, Hazleman BL, King RH. Shoulder pain in a community-based rheumatology clinic. Br J Rheumatol. 1995;34(5):440-442.","[610, 354, 1100, 408]",reference_item,0.85,"[""reference content label: 57. Vecchio P, Kavanagh R, Hazleman BL, King RH. Shoulder pa""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,21,reference_content,"58. Walch G, Boulahia A, Calderone S, Robinson AH. The “dropping” and “hornblowers” signs in evaluation of rotator-cuff tears. J Bone Joint Surg Br. 1998;80(4):624-628.","[610, 412, 1100, 467]",reference_item,0.85,"[""reference content label: 58. Walch G, Boulahia A, Calderone S, Robinson AH. The \u201cdrop""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,22,reference_content,"59. Wolfe F, Smythe HA, Yunus MB, et al. The American College of Rheumatology 1990 criteria for the classification of fibromyalgia: report of the Multicenter Criteria Committee. Arthritis Rheum. 1990;","[611, 470, 1100, 544]",reference_item,0.85,"[""reference content label: 59. Wolfe F, Smythe HA, Yunus MB, et al. The American Colleg""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,23,reference_content,"60. Woodward TW, Best TM. The painful shoulder, part I: clinical evaluation. Am Fam Physician. 2000;61(10):3079-3088.","[609, 547, 1100, 585]",reference_item,0.85,"[""reference content label: 60. Woodward TW, Best TM. The painful shoulder, part I: clin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,24,reference_content,"61. Yamaguchi K, Ditsios K, Middleton WD, Hildebolt CF, Galatz LM, Teefey SA. The demographic and morphological features of rotator cuff disease: a comparison of asymptomatic and symptomatic shoulders","[611, 587, 1100, 661]",reference_item,0.85,"[""reference content label: 61. Yamaguchi K, Ditsios K, Middleton WD, Hildebolt CF, Gala""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,25,reference_content,"62. Yamaguchi K, Tetro AM, Blam O, Evanoff BA, Teefey SA, Middleton WD. Natural history of asymptomatic rotator cuff tears: a longitudinal analysis of asymptomatic tears detected sonographically. J Sh","[609, 664, 1100, 739]",reference_item,0.85,"[""reference content label: 62. Yamaguchi K, Tetro AM, Blam O, Evanoff BA, Teefey SA, Mi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,26,reference_content,"63. Yoon JP, Chung SW, Kim SH, Oh JH. Diagnostic value of four clinical tests for the evaluation of subscapularis integrity. J Shoulder Elbow Surg. 2013;22(9):1186-1192.","[609, 741, 1100, 797]",reference_item,0.85,"[""reference content label: 63. Yoon JP, Chung SW, Kim SH, Oh JH. Diagnostic value of fo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,27,reference_content,"64. Yuen CK, Mok KL, Kan PG. The validity of 9 physical tests for full-thickness rotator cuff tears after primary anterior shoulder dislocation in ED patients. Am J Emerg Med. 2012;30(8):1522-1529.","[610, 800, 1101, 875]",reference_item,0.85,"[""reference content label: 64. Yuen CK, Mok KL, Kan PG. The validity of 9 physical test""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,28,figure_title,APPENDIX,"[549, 933, 652, 956]",figure_caption_candidate,0.85,"[""figure_title label: APPENDIX""]",figure_caption,0.85,,unknown_like,short_fragment,False,False
8,29,text,"Age in years - 67:52.8
External rotation strength ratio (Affected shoulder versus Unaffected shoulder) - 0.1:0.2","[191, 1022, 514, 1083]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
8,30,text,SPADI score - 62.7:27,"[365, 1087, 513, 1107]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
8,31,text,Sex - Male: Female,"[386, 1120, 513, 1140]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,,unknown_like,short_fragment,False,True
8,32,text,"Is dominant shoulder affected? - Yes: No
Daily shoulder use at work? - Heavy/Moderate manual labor: Light/No manual labor
Medication for shoulder pain/Corticosteroid injection - Yes: No
Lift-off test ","[210, 1154, 516, 1339]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
8,33,image,,"[534, 976, 978, 1334]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
8,34,figure_title,"Figure A1. Odds ratios with CIs for the probability of a rotator cuff tear (full model). The bars represent 90% (dark blue), 95% (light blue), and 99% (gray) CIs for the odds ratios. SPADI, Shoulder P","[66, 1362, 1100, 1409]",figure_caption_candidate,0.85,"[""figure_title label: Figure A1. Odds ratios with CIs for the probability of a rot""]",figure_caption,0.85,,legend_like,none,False,False
9,0,header,The Orthopaedic Journal of Sports Medicine,"[67, 67, 424, 90]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
9,1,header,Predicting Rotator Cuff Diagnosis,"[798, 67, 1071, 90]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
9,2,number,9,"[1085, 69, 1100, 87]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,3,figure_title,A,"[233, 139, 267, 171]",figure_inner_text,0.9,"[""panel label / figure inner text: A""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
9,4,image,,"[235, 135, 939, 806]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
9,5,figure_title,Figure A2. Nomogram to predict the probability of a rotator cuff tear (full model). (A) I he values of a predictor variable for a patient are compared via a perpendicular line with the points scale. T,"[66, 826, 1103, 919]",figure_caption_candidate,0.85,"[""figure_title label: Figure A2. Nomogram to predict the probability of a rotator ""]",figure_caption,0.85,,legend_like,none,False,False
9,6,chart,,"[379, 950, 788, 1317]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
9,7,figure_title,Figure A3. Calibration curve for the fitted full model. Small vertical lines at the top of the graph denote the frequency of predicted probabilities for the patient set. The apparent line depicts the ,"[67, 1341, 1102, 1455]",figure_caption,0.85,"[""figure_title label: Figure A3. Calibration curve for the fitted full model. Smal""]",figure_caption,0.85,,legend_like,none,True,True
10,0,number,10,"[70, 70, 93, 87]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,1,header,Jain et al,"[108, 69, 189, 88]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,2,header,The Orthopaedic Journal of Sports Medicine,"[744, 68, 1101, 90]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
10,3,figure_title,TABLE A1,"[535, 140, 633, 160]",figure_caption_candidate,0.85,"[""figure_title label: TABLE A1""]",figure_caption,0.85,,table_caption_like,short_fragment,False,False
10,4,figure_title,Predictors of the Diagnosis of a Rotator Cuff Tear (Full Model) $ ^{a} $,"[317, 162, 852, 185]",figure_caption,0.85,"[""figure_title label: Predictors of the Diagnosis of a Rotator Cuff Tear (Full Mod""]",figure_caption,0.85,,legend_like,none,True,True
10,5,table,<table><tr><td></td><td>Odds Ratio (95% CI)</td></tr><tr><td>Age</td><td>1.02 (0.99-1.06)</td></tr><tr><td>External rotation strength ratio (affected vs contralateral shoulder)</td><td>1.21 (1.08-1.35,"[66, 193, 1098, 442]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
10,6,vision_footnote," $ ^{a} $SPADI, Shoulder Pain and Disability Index.","[91, 451, 432, 473]",footnote,0.7,"[""vision_footnote label: $ ^{a} $SPADI, Shoulder Pain and Disability Index.""]",footnote,0.7,,unknown_like,affiliation_marker,True,True
10,7,figure_title,TABLE A2,"[535, 516, 635, 535]",figure_caption,0.85,"[""figure_title label: TABLE A2""]",figure_caption,0.85,,table_caption_like,short_fragment,True,True
10,8,figure_title,Probability of a Rotator Cuff Tear for Selected Values of Predictive Variables,"[262, 538, 907, 561]",figure_caption_candidate,0.85,"[""figure_title label: Probability of a Rotator Cuff Tear for Selected Values of Pr""]",figure_caption,0.85,,legend_like,none,False,False
10,9,table,"<table><tr><td rowspan=""2""></td><td colspan=""6"">Probability</td></tr><tr><td>5.0%</td><td>9.4%</td><td>18.4%</td><td>28.6%</td><td>32.4%</td><td>96.9%</td></tr><tr><td>External rotation strength ratio","[66, 565, 1099, 734]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
10,10,vision_footnote, $ ^{a} $Low effect value for external rotation strength ratio set at 1.1 to elicit a probability of a rotator cuff tear at 5.0%.,"[89, 744, 941, 766]",footnote,0.7,"[""vision_footnote label: $ ^{a} $Low effect value for external rotation strength rati""]",footnote,0.7,,unknown_like,affiliation_marker,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header Original Research [856, 55, 1101, 87] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 doc_title Does My Patient With Shoulder Pain Have a Rotator Cuff Tear? [67, 134, 902, 237] paper_title 0.8 ["page-1 zone title_zone: Does My Patient With Shoulder Pain Have a Rotator Cuff Tear?"] paper_title 0.8 frontmatter_main_zone support_like none True True
4 1 2 text A Predictive Model From the ROW Cohort [65, 277, 795, 317] unknown_structural 0.8 ["page-1 zone title_zone: A Predictive Model From the ROW Cohort"] paper_title 0.8 frontmatter_main_zone support_like none False True
5 1 3 text Nitin B. Jain, $ ^{*††} $ MD, MSPH, Run Fan, $ § $ PhD, MS, Laurence D. Higgins, $ || $ MD, MBA, John E. Kuhn, $ ‡ $ MD, MS, and Gregory D. Ayers, $ § $ MS [66, 349, 953, 408] authors 0.8 ["page-1 zone author_zone: Nitin B. Jain, $ ^{*\u2020\u2020} $ MD, MSPH, Run Fan, $ \u00a7 $ PhD, MS, "] authors 0.8 body_zone reference_like citation_line True True
6 1 4 text Investigation performed at Vanderbilt University Medical Center, Nashville, Tennessee, USA [66, 415, 1048, 444] affiliation 0.8 ["page-1 zone affiliation_zone: Investigation performed at Vanderbilt University Medical Cen"] affiliation 0.8 frontmatter_main_zone support_like none True True
7 1 5 abstract Background: Rotator cuff tears are the leading cause of shoulder pain and disability. However, the diagnosis of a rotator cuff tear based on patient characteristics, symptoms, and physical examination [65, 471, 1104, 562] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
8 1 6 abstract Purpose: To model patient characteristics, symptoms, and physical examination findings that predict a rotator cuff tear. We present a nomogram based on our predictive model that can be used in patient [65, 565, 1104, 635] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
9 1 7 abstract Study Design: Cohort study (diagnosis); Level of evidence, 2. [67, 636, 572, 660] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
10 1 8 abstract Methods: We recruited patients from outpatient clinics who were $ \geq $45 years of age and who had shoulder pain of at least 4 weeks' duration. A rotator cuff tear was diagnosed based on expert clin [65, 664, 1103, 733] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
11 1 9 abstract Results: A total of 123 patients (41%) had rotator cuff tears, and 178 patients (59%) did not. The predictors of the diagnosis of a rotator cuff tear included external rotation strength ratio of the a [65, 737, 1103, 827] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
12 1 10 abstract Conclusion: Presented is a model that can accurately predict the diagnosis of a rotator cuff tear with satisfactory discrimination and calibration based on 4 variables: sex, lift-off test, Jobe test, [65, 831, 1104, 920] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
13 1 11 text Keywords: rotator cuff tears; diagnostic accuracy; predictive modeling [67, 924, 647, 949] frontmatter_noise 0.7 ["frontmatter noise text: Keywords: rotator cuff tears; diagnostic accuracy; predictiv"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
14 1 12 text In the United States, shoulder symptoms accounted for an estimated 10.7 million ambulatory care visits to physician offices in 2013. $ ^{10} $ The prevalence of shoulder pain in the population ranges [65, 990, 563, 1279] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
15 1 13 text [605, 990, 1102, 1079] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 frontmatter_main_zone support_like empty True True
16 1 14 text There are several “special” shoulder physical examinations described for the diagnosis of rotator cuff tears. Data on the diagnostic accuracy of individual special shoulder tests for rotator cuff tear [605, 1079, 1103, 1368] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
17 1 15 footnote The Orthopaedic Journal of Sports Medicine, 6(7), 2325967118784897 DOI: 10.1177/2325967118784897 © The Author(s) 2018 [67, 1306, 548, 1365] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: The Orthopaedic Journal of Sports Medicine, 6(7), 2325967118"] frontmatter_noise 0.8 body_zone body_like none False False
18 1 16 footnote This open-access article is published and distributed under the Creative Commons Attribution - NonCommercial - No Derivatives License (http://creativecommons.org/licenses/by-nc-nd/4.0/), which permits [66, 1386, 1104, 1457] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: This open-access article is published and distributed under "] frontmatter_noise 0.8 body_zone body_like none False False
19 1 17 number 1 [578, 1484, 591, 1500] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
20 2 0 number 2 [68, 70, 84, 86] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
21 2 1 header Jain et al [99, 69, 180, 89] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
22 2 2 header The Orthopaedic Journal of Sports Medicine [744, 68, 1101, 90] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
23 2 3 text diagnostic predictive model in a large cohort for use in clinical practice. [65, 139, 560, 183] unknown_structural 0.8 ["page-1 zone title_zone: diagnostic predictive model in a large cohort for use in cli"] paper_title 0.8 body_zone body_like none False True
24 2 4 text In a large cohort of patients with shoulder pain, we modeled patient characteristics, symptoms, and physical examination findings that predict a symptomatic rotator cuff tear. We present a nomogram ba [65, 184, 563, 340] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 2 5 paragraph_title METHODS [67, 375, 174, 399] section_heading 0.9 ["explicit scholarly heading: METHODS"] section_heading 0.9 body_zone heading_like canonical_section_name True True
26 2 6 paragraph_title Patient Population [67, 415, 239, 441] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Patient Population"] subsection_heading 0.6 body_zone heading_like short_fragment True True
27 2 7 text We recruited a cohort of 390 patients with shoulder pain and/or limitation in range of motion lasting at least 4 weeks and who completed baseline history questionnaires. These patients were recruited [64, 456, 562, 855] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
28 2 8 paragraph_title History and Shoulder Pain/Function Assessment [67, 876, 508, 901] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: History and Shoulder Pain/Function Assessment"] subsection_heading 0.6 body_zone heading_like none True True
29 2 9 text The structured shoulder and general health questionnaire assessed patient demographics; comorbidities; symptoms; smoking habits; prior treatments, including physical therapy and corticosteroid injecti [65, 917, 562, 1227] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 2 10 paragraph_title Physical Examination Protocol [607, 139, 888, 164] unknown_structural 0.6 ["page-1 frontmatter title guard: Physical Examination Protocol"] paper_title 0.6 body_zone heading_like none False True
31 2 11 text Special Tests. Our standardized physical examination protocol has been previously published and was based on the original descriptions of the special shoulder tests. $ ^{28,29} $ Briefly, shoulder spe [605, 181, 1103, 554] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
32 2 12 text Strength Testing. Strength testing was performed using a handheld dynamometer in abduction, external rotation, and internal rotation by trained research assistants. Both the affected and contralateral [605, 554, 1103, 798] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
33 2 13 paragraph_title Diagnostic Imaging [607, 831, 789, 857] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Diagnostic Imaging"] subsection_heading 0.6 body_zone heading_like short_fragment True True
34 2 14 text Shoulder MRI scans were read in a blinded fashion by consensus of 2 shoulder experts (L.D.H. and N.B.J. or J.E.K. and N.B.J.). Although this was a pragmatic cohort with no specific requirements for MR [605, 872, 1103, 1229] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
35 2 15 footnote *Address correspondence to Nitin B. Jain, MD, MSPH, Department of Physical Medicine and Rehabilitation, Vanderbilt University Medical Center, 2201 Children's Way, Suite 1318, Nashville, TN 37212, USA [68, 1256, 1099, 1294] footnote 0.7 ["footnote label: *Address correspondence to Nitin B. Jain, MD, MSPH, Departme"] footnote 0.7 body_zone body_like none True True
36 2 16 footnote $ ^{\dagger} $Department of Physical Medicine and Rehabilitation. Vanderbilt University Medical Center, Nashville, Tennessee, USA. [91, 1292, 904, 1313] footnote 0.7 ["footnote label: $ ^{\\dagger} $Department of Physical Medicine and Rehabilita"] footnote 0.7 body_zone body_like affiliation_marker True True
37 2 17 footnote $ ^{†} $Department of Orthopaedic Surgery and Rehabilitation, Vanderbilt University Medical Center, Nashville, Tennessee, USA. [95, 1309, 929, 1328] footnote 0.7 ["footnote label: $ ^{\u2020} $Department of Orthopaedic Surgery and Rehabilitation"] footnote 0.7 body_zone body_like affiliation_marker True True
38 2 18 footnote $ ^{§} $Department of Biostatistics, Vanderbilt University Medical Center, Nashville, Tennessee, USA. [90, 1326, 736, 1345] footnote 0.7 ["footnote label: $ ^{\u00a7} $Department of Biostatistics, Vanderbilt University M"] footnote 0.7 body_zone body_like affiliation_marker True True
39 2 19 footnote Department of Orthopaedic Surgery, Brigham and Women's Hospital, Harvard Medical School, Boston, Massachusetts, USA. [86, 1344, 949, 1364] footnote 0.7 ["footnote label: Department of Orthopaedic Surgery, Brigham and Women's Hospi"] footnote 0.7 body_zone body_like none True True
40 2 20 footnote One or more of the authors has declared the following potential conflict of interest or source of funding: This work was supported by a Clinical and Translational Science Award (No. UL1TR000445) from [65, 1363, 1104, 1436] footnote 0.7 ["footnote label: One or more of the authors has declared the following potent"] footnote 0.7 body_zone support_like none True True
41 2 21 footnote Ethical approval for this study was obtained from Partners HealthCare and Vanderbilt University. [90, 1435, 745, 1456] footnote 0.7 ["footnote label: Ethical approval for this study was obtained from Partners H"] footnote 0.7 body_zone body_like none True True
42 3 0 header The Orthopaedic Journal of Sports Medicine [67, 68, 424, 90] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
43 3 1 header Predicting Rotator Cuff Diagnosis [798, 68, 1071, 90] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
44 3 2 number 3 [1086, 69, 1101, 86] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
45 3 3 text 0.90 for tear presence, tear size, and tear thickness. $ ^{26} $ MRI features that were assessed in a standardized manner included tear thickness, tear size in the longitudinal and transverse planes, [65, 137, 562, 295] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
46 3 4 paragraph_title Diagnosis of Rotator Cuff Tears (Reference Standard) [66, 327, 357, 376] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Diagnosis of Rotator Cuff Tears (Reference Standard)"] subsection_heading 0.6 body_zone heading_like none True True
47 3 5 text Prior literature has shown structural evidence for rotator cuff tears even in asymptomatic patients. $ ^{44,54,61,62} $ Moreover, a rotator cuff tear is a clinical syndrome, and a case definition simp [66, 393, 562, 831] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
48 3 6 text In our analysis, we excluded 65 patients who had a degree of certainty of $ \geq $50 but (1) who did not undergo MRI because it was not clinically indicated/ordered (n = 31) or (2) whose MRI did not [65, 831, 562, 1162] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
49 3 7 paragraph_title Statistical Analysis [67, 1195, 241, 1219] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis"] subsection_heading 0.6 body_zone heading_like none True True
50 3 8 text We followed the methodology described by Harrell $ ^{19} $ for creating our predictive model. Among 115 individual and composite variables, 41 variables were selected a priori by clinical judgment as [65, 1235, 562, 1457] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 3 9 text [606, 140, 1102, 403] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
52 3 10 text We used logistic regression to model the probability of a rotator cuff tear with our predictor set. The effect size from this model was the odds ratio, which estimated the increased odds of a rotator [606, 404, 1103, 688] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
53 3 11 text Seeking the most parsimonious predictive model (termed the final model), we used ordinary least squares to fit the full model—predicted values with all 9 variables, with backward elimination for each [606, 688, 1104, 953] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
54 3 12 paragraph_title RESULTS [608, 997, 705, 1020] section_heading 0.9 ["explicit scholarly heading: RESULTS"] section_heading 0.9 body_zone heading_like canonical_section_name True True
55 3 13 text Of the 301 patients in our cohort who were included in this analysis, 123 (41%) were diagnosed with a rotator cuff tear, and 178 patients (59%) did not have a tear (Table 1). Patients without tears ha [606, 1038, 1101, 1302] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
56 3 14 text Our final model was derived using bootstrapped backward elimination of the full model variable fitted to the predicted values of the full model. The subsequent final model variable set was refit to th [605, 1302, 1102, 1458] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
57 4 0 number 4 [68, 70, 84, 87] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
58 4 1 header Jain et al [99, 68, 180, 89] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
59 4 2 header The Orthopaedic Journal of Sports Medicine [744, 67, 1101, 90] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
60 4 3 figure_title TABLE 1 [270, 139, 355, 159] table_caption 0.9 ["table prefix matched: TABLE 1"] table_caption 0.9 display_zone table_caption_like table_number True True
61 4 4 figure_title Baseline Characteristics of the ROW Cohort by the Presence of Rotator Cuff Tears $ ^{a} $ [129, 160, 502, 207] figure_caption 0.85 ["figure_title label: Baseline Characteristics of the ROW Cohort by the Presence o"] figure_caption 0.85 body_zone legend_like none True True
62 4 5 table <table><tr><td></td><td>Rotator Cuff Tear (n = 123)</td><td>No Rotator Cuff Tear (n = 178)</td></tr><tr><td>Sex</td><td></td><td></td></tr><tr><td>Female</td><td>49 (40)</td><td>95 (53)</td></tr><tr>< [66, 210, 562, 1021] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
63 4 6 vision_footnote $ ^{a} $Data are shown as n (%) unless otherwise indicated. ROW, Rotator Cuff Outcomes Workgroup; SPADI, Shoulder Pain and Disability Index. [67, 1030, 559, 1092] footnote 0.7 ["vision_footnote label: $ ^{a} $Data are shown as n (%) unless otherwise indicated. "] footnote 0.7 body_zone body_like affiliation_marker True True
64 4 7 vision_footnote $ ^{b} $Ratio of the affected versus contralateral shoulder. [91, 1092, 480, 1113] footnote 0.7 ["vision_footnote label: $ ^{b} $Ratio of the affected versus contralateral shoulder."] footnote 0.7 body_zone body_like affiliation_marker True True
65 4 8 text A patient with a positive Jobe test result was 9.19 (95% CI, 4.69-17.99) times more likely to have a rotator cuff tear versus a patient with a negative test result. The lift-off test had an odds ratio [65, 1145, 561, 1345] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
66 4 9 text For ease of use in clinical settings, we plotted a nomogram with each of the significant variables in our final model (Figure 2A). The nomogram can be used to calculate the probability of a rotator cu [65, 1346, 562, 1458] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 4 10 figure_title TABLE 2 [812, 139, 898, 159] table_caption 0.9 ["table prefix matched: TABLE 2"] table_caption 0.9 display_zone table_caption_like table_number True True
68 4 11 figure_title Predictors of the Diagnosis of a Rotator Cuff Tear (Final Model) [720, 162, 990, 207] figure_caption_candidate 0.85 ["figure_title label: Predictors of the Diagnosis of a Rotator Cuff Tear (Final Mo"] figure_caption 0.85 body_zone body_like none False False
69 4 12 table <table><tr><td></td><td>Odds Ratio (95% CI)</td></tr><tr><td>External rotation strength ratio (affected vs contralateral shoulder)</td><td>1.20 (1.08-1.34)</td></tr><tr><td>Sex (male vs female)</td><t [608, 214, 1099, 382] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
70 4 13 text test result (40 points), positive Jobe test result (~60 points), and external rotation strength ratio of 1 (~50 points) has a cumulative score of approximately 170 points and has a probability exceedi [606, 431, 1103, 629] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
71 4 14 text A calibration curve for our final model showed almost perfect overlap of predicted versus actual values (slope = 0.95) for the diagnosis of a rotator cuff tear (Figure 3). The corrected c-index for th [606, 629, 1102, 787] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
72 4 15 paragraph_title DISCUSSION [608, 820, 738, 844] section_heading 0.9 ["explicit scholarly heading: DISCUSSION"] section_heading 0.9 body_zone heading_like canonical_section_name True True
73 4 16 text The diagnostic dilemma of a rotator cuff tear in patients with shoulder pain is recognized by experts in the recent literature. $ ^{22,42} $ In a large cohort of patients with shoulder pain, our resul [606, 862, 1103, 1105] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
74 4 17 text Several studies, including data from our cohort, have reported on the sensitivity and specificity of special tests in the diagnosis of rotator cuff tears. $ ^{4-6,25,28,38,39,47,63} $ The limitations [605, 1104, 1103, 1458] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 5 0 header The Orthopaedic Journal of Sports Medicine [68, 68, 424, 90] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
76 5 1 header Predicting Rotator Cuff Diagnosis [798, 68, 1071, 90] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
77 5 2 number 5 [1086, 69, 1101, 87] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
78 5 3 image [187, 135, 978, 458] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
79 5 4 figure_title Figure 1. Odds ratios with CIs for the probability of a rotator cuff tear (final model). The bars represent 90% (dark blue), 95% (light blue), and 99% (gray) CIs for the odds ratios. [66, 478, 1103, 528] figure_caption 0.92 ["figure_title label: Figure 1. Odds ratios with CIs for the probability of a rota"] figure_caption 0.92 display_zone legend_like figure_number True True
80 5 5 figure_title A [232, 553, 265, 582] figure_inner_text 0.9 ["panel label / figure inner text: A"] figure_inner_text 0.9 display_zone legend_like panel_label True True
81 5 6 image [233, 566, 936, 1188] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
82 5 7 figure_title Figure 2. Nomogram to predict the probability of a rotator cuff tear (final model). (A) The values of a predictor variable for a patient are compared via a perpendicular line with the points scale. Th [66, 1207, 1104, 1297] figure_caption 0.92 ["figure_title label: Figure 2. Nomogram to predict the probability of a rotator c"] figure_caption 0.92 display_zone legend_like figure_number True True
83 5 8 text combination of imaging/surgical deficits and clinical findings is essential in making a diagnosis of the clinical syndrome of rotator cuff tear. Our study addresses this issue, although the clinical d [65, 1322, 562, 1458] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
84 5 9 text [606, 1323, 1102, 1412] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
85 5 10 text Our study found that in addition to a patient’s sex, the performance of simple physical maneuvers such as the [607, 1412, 1103, 1458] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
86 6 0 number 6 [69, 69, 84, 87] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
87 6 1 header Jain et al [99, 68, 180, 89] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
88 6 2 header The Orthopaedic Journal of Sports Medicine [744, 68, 1101, 90] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
89 6 3 chart [108, 139, 518, 507] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
90 6 4 figure_title Figure 3. Calibration curve for the fitted final model. Small vertical lines at the top of the graph denote the frequency of predicted probabilities for the patient set. The apparent line depicts the [66, 532, 561, 754] figure_caption 0.92 ["figure_title label: Figure 3. Calibration curve for the fitted final model. Smal"] figure_caption 0.92 display_zone legend_like figure_number True True
91 6 5 text lift-off test and Jobe test as well as the external rotation strength ratio can assist in the diagnosis of a rotator cuff tear. Strength measurements using a handheld dynamometer are easily performed [65, 787, 562, 1012] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
92 6 6 text The Jobe test $ ^{32} $ or empty can test is performed by first assessing the deltoid with the arm in $ 90^{\circ} $ of abduction and neutral rotation. The shoulder is then internally rotated and ang [65, 1009, 563, 1459] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
93 6 7 text [606, 138, 1102, 205] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
94 6 8 text The lift-off test for subscapularis tears is based on the tendon's function as an internal rotator. With the clinician's assistance, the patient touches his or her lower back with the arm fully extend [606, 206, 1103, 579] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
95 6 9 text Our study was performed in a specialty clinic setting. This study design was ideal and was chosen a priori because an accurate clinical diagnosis of a rotator cuff tear was an essential component of t [605, 578, 1102, 886] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
96 6 10 text We did not assess the role of a local anesthetic injection in the subacromial space to diagnose rotator cuff tears or impingement syndrome. Another limitation is the potential variability in the perfo [605, 885, 1103, 1304] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
97 6 11 paragraph_title CONCLUSION [608, 1347, 748, 1371] section_heading 0.9 ["explicit scholarly heading: CONCLUSION"] section_heading 0.9 body_zone heading_like canonical_section_name True True
98 6 12 text We present a model that can predict the diagnosis of a rotator cuff tear based on 4 variables—sex, lift-off test, Job test, and external rotation strength ratio—without the [605, 1388, 1103, 1458] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
99 7 0 header The Orthopaedic Journal of Sports Medicine [67, 69, 423, 89] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
100 7 1 header Predicting Rotator Cuff Diagnosis [799, 69, 1071, 89] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
101 7 2 number 7 [1087, 70, 1100, 86] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
102 7 3 text need for expensive imaging such as MRI. There may be situations, such as considerations for surgery, profound loss of strength, and major traumatic events leading to the current presentation, that may [65, 139, 561, 365] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
103 7 4 paragraph_title REFERENCES [69, 412, 196, 433] reference_heading 0.9 ["references heading: REFERENCES"] reference_heading 0.9 reference_zone unknown_like short_fragment True True
104 7 5 reference_content 1. Altman R, Asch E, Bloch D, et al. Development of criteria for the classification and reporting of osteoarthritis: classification of osteoarthritis of the knee. Diagnostic and Therapeutic Criteria C [77, 451, 560, 545] reference_item 0.85 ["reference content label: 1. Altman R, Asch E, Bloch D, et al. Development of criteria"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
105 7 6 reference_content 2. Andersson HI, Ejlertsson G, Leden I, Rosenberg C. Chronic pain in a geographically defined general population: studies of differences in age, gender, social class, and pain localization. Clin J Pai [76, 549, 559, 622] reference_item 0.85 ["reference content label: 2. Andersson HI, Ejlertsson G, Leden I, Rosenberg C. Chronic"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
106 7 7 reference_content 3. Arnett FC, Edworthy SM, Bloch DA, et al. The American Rheumatism Association 1987 revised criteria for the classification of rheumatoid arthritis. Arthritis Rheum. 1988;31(3):315-324. [76, 626, 559, 681] reference_item 0.85 ["reference content label: 3. Arnett FC, Edworthy SM, Bloch DA, et al. The American Rhe"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
107 7 8 reference_content 4. Bak K, Sorensen AK, Jorgensen U, et al. The value of clinical tests in acute full-thickness tears of the supraspinatus tendon: does a subacromial lidocaine injection help in the clinical diagnosis? [76, 685, 559, 758] reference_item 0.85 ["reference content label: 4. Bak K, Sorensen AK, Jorgensen U, et al. The value of clin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
108 7 9 reference_content 5. Barth J, Audebert S, Toussaint B, et al. Diagnosis of subscapularis tendon tears: are available diagnostic tests pertinent for a positive diagnosis? Orthop Traumatol Surg Res. 2012;98(suppl 8):S178 [76, 762, 559, 817] reference_item 0.85 ["reference content label: 5. Barth J, Audebert S, Toussaint B, et al. Diagnosis of sub"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
109 7 10 reference_content 6. Barth JR, Burkhart SS, De Beer JF. The bear-hug test: a new and sensitive test for diagnosing a subscapularis tear. Arthroscopy. 2006;22(10):1076-1084. [77, 819, 558, 874] reference_item 0.85 ["reference content label: 6. Barth JR, Burkhart SS, De Beer JF. The bear-hug test: a n"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
110 7 11 reference_content 7. Beach H, Gordon P. Clinical examination of the shoulder. New Engl J Med. 2016;375(11):e24. [76, 877, 559, 914] reference_item 0.85 ["reference content label: 7. Beach H, Gordon P. Clinical examination of the shoulder. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
111 7 12 reference_content 8. Bergenudd H, Lindgarde F, Nilsson B, Petersson CJ. Shoulder pain in middle age: a study of prevalence and relation to occupational work load and psychosocial factors. Clin Orthop Relat Res. 1988;(2 [77, 916, 558, 989] reference_item 0.85 ["reference content label: 8. Bergenudd H, Lindgarde F, Nilsson B, Petersson CJ. Should"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
112 7 13 reference_content 9. Cadogan A, Laslett M, Hing W, McNair P, Williams M. Interexaminer reliability of orthopaedic special tests used in the assessment of shoulder pain. Man Ther. 2011;16(2):131-135. [74, 993, 559, 1049] reference_item 0.85 ["reference content label: 9. Cadogan A, Laslett M, Hing W, McNair P, Williams M. Inter"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
113 7 14 reference_content 10. Centers for Disease Control and Prevention/National Center for Health Statistics. National Ambulatory Medical Care Survey: 2013 state and national summary tables. Available at: https://www.cdc.gov [72, 1052, 560, 1126] reference_item 0.85 ["reference content label: 10. Centers for Disease Control and Prevention/National Cent"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
114 7 15 reference_content 11. Chard MD, Hazleman R, Hazleman BL, King RH, Reiss BB. Shoulder disorders in the elderly: a community survey. Arthritis Rheum. 1991;34(6):766-769. [71, 1128, 558, 1183] reference_item 0.85 ["reference content label: 11. Chard MD, Hazleman R, Hazleman BL, King RH, Reiss BB. Sh"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
115 7 16 reference_content 12. Colvin AC, Egorova N, Harrison AK, Moskowitz A, Flatow EL. National trends in rotator cuff repair. J Bone Joint Surg Am. 2012;94(3):227-233. [71, 1186, 558, 1240] reference_item 0.85 ["reference content label: 12. Colvin AC, Egorova N, Harrison AK, Moskowitz A, Flatow E"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
116 7 17 reference_content 13. de Jesus JO, Parker L, Frangos AJ, Nazarian LN. Accuracy of MRI, MR arthrography, and ultrasound in the diagnosis of rotator cuff tears: a meta-analysis. AJR Am J Roentgenol. 2009;192(6):1701-1707 [71, 1244, 558, 1300] reference_item 0.85 ["reference content label: 13. de Jesus JO, Parker L, Frangos AJ, Nazarian LN. Accuracy"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
117 7 18 reference_content 14. Dougados M, van der Linden S, Juhlin R, et al. The European Spondylarthropathy Study Group preliminary criteria for the classification of spondylarthropathy. Arthritis Rheum. 1991;34(10):1218-1227 [71, 1303, 559, 1358] reference_item 0.85 ["reference content label: 14. Dougados M, van der Linden S, Juhlin R, et al. The Europ"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
118 7 19 reference_content 15. Dromerick AW, Kumar A, Volshteyn O, Edwards DF. Hemiplegic shoulder pain syndrome: interrater reliability of physical diagnosis signs. Arch Phys Med Rehabil. 2006;87(2):294-295. [71, 1360, 558, 1416] reference_item 0.85 ["reference content label: 15. Dromerick AW, Kumar A, Volshteyn O, Edwards DF. Hemipleg"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
119 7 20 reference_content 16. Gerber C, Hersche O, Farron A. Isolated rupture of the subscapularis tendon. J Bone Joint Surg Am. 1996;78(7):1015-1023. [71, 1418, 558, 1454] reference_item 0.85 ["reference content label: 16. Gerber C, Hersche O, Farron A. Isolated rupture of the s"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
120 7 21 reference_content 17. Gerber C, Krushell RJ. Isolated rupture of the tendon of the subscapularis muscle: clinical features in 16 cases. J Bone Joint Surg Br. 1991;73(3):389-394. [611, 141, 1100, 196] reference_item 0.85 ["reference content label: 17. Gerber C, Krushell RJ. Isolated rupture of the tendon of"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
121 7 22 reference_content 18. Gismervik SO, Droget JO, Granviken F, Ro M, Leivseth G. Physical examination tests of the shoulder: a systematic review and meta-analysis of diagnostic test performance. BMC Musculoskelet Disord. [611, 199, 1101, 273] reference_item 0.85 ["reference content label: 18. Gismervik SO, Droget JO, Granviken F, Ro M, Leivseth G. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
122 7 23 reference_content 19. Harrell FE. Regression Modeling Strategies: With Applications to Linear Models, Logistic and Ordinal Regression, and Survival Analysis. 2nd ed. New York: Springer; 2015. [611, 276, 1100, 332] reference_item 0.85 ["reference content label: 19. Harrell FE. Regression Modeling Strategies: With Applica"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
123 7 24 reference_content 20. Hawkins RJ, Kennedy JC. Impingement syndrome in athletes. Am J Sports Med. 1980;8(3):151-158. [610, 335, 1101, 370] reference_item 0.85 ["reference content label: 20. Hawkins RJ, Kennedy JC. Impingement syndrome in athletes"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
124 7 25 reference_content 21. Hayes K, Walton JR, Szomor ZL, Murrell GA. Reliability of 3 methods for assessing shoulder strength. J Shoulder Elbow Surg. 2002;11(1):33-39. [610, 373, 1100, 427] reference_item 0.85 ["reference content label: 21. Hayes K, Walton JR, Szomor ZL, Murrell GA. Reliability o"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
125 7 26 reference_content 22. Hermans J, Luime JJ, Meuffels DE, Reijman M, Simel DL, Bierma-Zeinstra SM. Does this patient with shoulder pain have rotator cuff disease? The Rational Clinical Examination systematic review. JAMA [609, 431, 1100, 506] reference_item 0.85 ["reference content label: 22. Hermans J, Luime JJ, Meuffels DE, Reijman M, Simel DL, B"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
126 7 27 reference_content 23. Hertel R, Ballmer FT, Lombert SM, Gerber C. Lag signs in the diagnosis of rotator cuff rupture. J Shoulder Elbow Surg. 1996;5(4):307-313. [610, 509, 1100, 563] reference_item 0.85 ["reference content label: 23. Hertel R, Ballmer FT, Lombert SM, Gerber C. Lag signs in"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
127 7 28 reference_content 24. Hijioka A, Suzuki K, Nakamura T, Hojo T. Degenerative change and rotator cuff tears: an anatomical study in 160 shoulders of 80 cadavers. Arch Orthop Trauma Surg. 1993;112(2):61-64. [610, 567, 1100, 622] reference_item 0.85 ["reference content label: 24. Hijioka A, Suzuki K, Nakamura T, Hojo T. Degenerative ch"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
128 7 29 reference_content 25. Itoi E, Minagawa H, Yamamoto N, Seki N, Abe H. Are pain location and physical examinations useful in locating a tear site of the rotator cuff? Am J Sports Med. 2006;34(2):256-264. [610, 626, 1101, 681] reference_item 0.85 ["reference content label: 25. Itoi E, Minagawa H, Yamamoto N, Seki N, Abe H. Are pain "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
129 7 30 reference_content 26. Jain NB, Collins J, Newman JS, Katz JN, Losina E, Higgins LD. Reliability of magnetic resonance imaging assessment of rotator cuff: the ROW study. PM R. 2015;7(3):245-254. [610, 683, 1101, 737] reference_item 0.85 ["reference content label: 26. Jain NB, Collins J, Newman JS, Katz JN, Losina E, Higgin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
130 7 31 reference_content 27. Jain NB, Higgins LD, Losina E, Collins J, Blazar PE, Katz JN. Epidemiology of musculoskeletal upper extremity ambulatory surgery in the United States. BMC Musculoskelet Disord. 2014;15(1):4. [610, 741, 1100, 796] reference_item 0.85 ["reference content label: 27. Jain NB, Higgins LD, Losina E, Collins J, Blazar PE, Kat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
131 7 32 reference_content 28. Jain NB, Luz J, Higgins LD, et al. The diagnostic accuracy of special tests for rotator cuff tear: the ROW cohort study. Am J Phys Med Rehabil. 2017;96(3):176-183. [610, 799, 1100, 854] reference_item 0.85 ["reference content label: 28. Jain NB, Luz J, Higgins LD, et al. The diagnostic accura"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
132 7 33 reference_content 29. Jain NB, Wilcox RB 3rd, Katz JN, Higgins LD. Clinical examination of the rotator cuff. PM R. 2013;5(1):45-56. [609, 857, 1100, 892] reference_item 0.85 ["reference content label: 29. Jain NB, Wilcox RB 3rd, Katz JN, Higgins LD. Clinical ex"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
133 7 34 reference_content 30. Jain NB, Yamaguchi K. History and physical examination provide little guidance on diagnosis of rotator cuff tears. Evid Based Med. 2014;19(3):108. [611, 896, 1100, 949] reference_item 0.85 ["reference content label: 30. Jain NB, Yamaguchi K. History and physical examination p"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
134 7 35 reference_content 31. Jia X, Petersen SA, Khosravi AH, Almareddi V, Pannirselvam V, McFarland EG. Examination of the shoulder: the past, the present, and the future. J Bone Joint Surg Am. 2009;91(suppl 6):10-18. [609, 953, 1099, 1009] reference_item 0.85 ["reference content label: 31. Jia X, Petersen SA, Khosravi AH, Almareddi V, Pannirselv"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
135 7 36 reference_content 32. Jobe FW, Jobe CM. Painful athletic injuries of the shoulder. Clin Orthop Relat Res. 1983;(173):117-124. [609, 1011, 1100, 1047] reference_item 0.85 ["reference content label: 32. Jobe FW, Jobe CM. Painful athletic injuries of the shoul"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
136 7 37 reference_content 33. Jobe FW, Moynes DR. Delineation of diagnostic criteria and a rehabilitation program for rotator cuff injuries. Am J Sports Med. 1982;10(6):336-339. [610, 1050, 1100, 1104] reference_item 0.85 ["reference content label: 33. Jobe FW, Moynes DR. Delineation of diagnostic criteria a"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
137 7 38 reference_content 34. Johansson K, Ivarson S. Intra- and interexaminer reliability of four manual shoulder maneuvers used to identify subacromial pain. Man Ther. 2009;14(2):231-239. [609, 1108, 1099, 1164] reference_item 0.85 ["reference content label: 34. Johansson K, Ivarson S. Intra- and interexaminer reliabi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
138 7 39 reference_content 35. Katz JN, Dalgas M, Stucki G, et al. Degenerative lumbar spinal stenosis: diagnostic value of the history and physical examination. Arthritis Rheum. 1995;38(9):1236-1241. [610, 1166, 1100, 1221] reference_item 0.85 ["reference content label: 35. Katz JN, Dalgas M, Stucki G, et al. Degenerative lumbar "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
139 7 40 reference_content 36. Kelly BT, Kadrmas WR, Speer KP. Empty can versus full can exercise for rotator cuff rehabilitation: an electromyographic analysis. Orthop Trans. 1997;21:147-148. [610, 1224, 1100, 1279] reference_item 0.85 ["reference content label: 36. Kelly BT, Kadrmas WR, Speer KP. Empty can versus full ca"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
140 7 41 reference_content 37. Kim E, Jeong HJ, Lee KW, Song JS. Interpreting positive signs of the supraspinatus test in screening for torn rotator cuff. Acta Med Okayama. 2006;60(4):223-228. [610, 1282, 1100, 1337] reference_item 0.85 ["reference content label: 37. Kim E, Jeong HJ, Lee KW, Song JS. Interpreting positive "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
141 7 42 reference_content 38. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of painful shoulders and correlation between physical examination and ultrasonographic rotator cuff tear. Mod Rheumatol. 2007;17(3):213-219. [610, 1340, 1100, 1395] reference_item 0.85 ["reference content label: 38. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of pai"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
142 7 43 reference_content 39. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of the shoulder in patients with rheumatoid arthritis and comparison with physical examination. J Korean Med Sci. 2007;22:660-666. [610, 1398, 1100, 1454] reference_item 0.85 ["reference content label: 39. Kim HA, Kim SH, Seo YI. Ultrasonographic findings of the"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
143 8 0 number 8 [69, 70, 83, 86] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
144 8 1 header Jain et al [99, 69, 179, 88] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
145 8 2 header The Orthopaedic Journal of Sports Medicine [745, 69, 1100, 89] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
146 8 3 reference_content 40. MacDonald PB, Clark P, Sutherland K. An analysis of the diagnostic accuracy of the Hawkins and Neer subacromial impingement signs. J Shoulder Elbow Surg. 2000;9(4):299-301. [68, 141, 560, 195] reference_item 0.85 ["reference content label: 40. MacDonald PB, Clark P, Sutherland K. An analysis of the "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
147 8 4 reference_content 41. Marantz PR, Tobin JN, Wassertheil-Smoller S, et al. The relationship between left ventricular systolic function and congestive heart failure diagnosed by clinical criteria. Circulation. 1988;77(3) [69, 198, 558, 252] reference_item 0.85 ["reference content label: 41. Marantz PR, Tobin JN, Wassertheil-Smoller S, et al. The "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
148 8 5 reference_content 42. Matsen FA 3rd. Clinical practice: rotator-cuff failure. New Engl J Med. 2008;358(20):2138-2147. [70, 255, 557, 290] reference_item 0.85 ["reference content label: 42. Matsen FA 3rd. Clinical practice: rotator-cuff failure. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
149 8 6 reference_content 43. Michener LA, Walsworth MK, Doukas WC, Murphy KP. Reliability and diagnostic accuracy of 5 physical examination tests and combination of tests for subacromial impingement. Arch Phys Med Rehabil. 20 [69, 293, 559, 365] reference_item 0.85 ["reference content label: 43. Michener LA, Walsworth MK, Doukas WC, Murphy KP. Reliabi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
150 8 7 reference_content 44. Milgrom C, Schaffler M, Gilbert S, van Holsbeeck M. Rotator-cuff changes in asymptomatic adults: the effect of age, hand dominance and gender. J Bone Joint Surg Br. 1995;77(2):296-298. [69, 368, 559, 422] reference_item 0.85 ["reference content label: 44. Milgrom C, Schaffler M, Gilbert S, van Holsbeeck M. Rota"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
151 8 8 reference_content 45. Miller JE, Higgins LD, Dong Y, et al. Association of strength measurement with rotator cuff tear in patients with shoulder pain: the Rotator Cuff Outcomes Workgroup Study. Am J Phys Med Rehabil. 2 [71, 425, 559, 498] reference_item 0.85 ["reference content label: 45. Miller JE, Higgins LD, Dong Y, et al. Association of str"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
152 8 9 reference_content 46. Mitchell C, Adebajo A, Hay E, Carr A. Shoulder pain: diagnosis and management in primary care. BMJ. 2005;331(7525):1124-1128. [69, 501, 558, 537] reference_item 0.85 ["reference content label: 46. Mitchell C, Adebajo A, Hay E, Carr A. Shoulder pain: dia"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
153 8 10 reference_content 47. Naredo E, Aguado P, De Miguel E, et al. Painful shoulder: comparison of physical examination and ultrasonographic findings. Ann Rheum Dis. 2002;61:132-136. [70, 539, 559, 593] reference_item 0.85 ["reference content label: 47. Naredo E, Aguado P, De Miguel E, et al. Painful shoulder"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
154 8 11 reference_content 48. Neer CS 2nd. Impingement lesions. Clin Orthop Relat Res. 1983; (173): 70-77. [69, 595, 558, 630] reference_item 0.85 ["reference content label: 48. Neer CS 2nd. Impingement lesions. Clin Orthop Relat Res."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
155 8 12 reference_content 49. Park HB, Yokota A, Gill HS, El Rassi G, McFarland EG. Diagnostic accuracy of clinical tests for the different degrees of subacromial impingement syndrome. J Bone Joint Surg Am. 2005;87(7):1446-145 [70, 633, 558, 705] reference_item 0.85 ["reference content label: 49. Park HB, Yokota A, Gill HS, El Rassi G, McFarland EG. Di"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
156 8 13 reference_content 50. Pope DP, Croft PR, Pritchard CM, Macfarlane GJ, Silman AJ. The frequency of restricted range of movement in individuals with self-reported shoulder pain: results from a population-based survey. Br [70, 709, 559, 782] reference_item 0.85 ["reference content label: 50. Pope DP, Croft PR, Pritchard CM, Macfarlane GJ, Silman A"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
157 8 14 reference_content 51. Roach KE, Budiman-Mak E, Songsiridej N, Lertratanakul Y. Development of a Shoulder Pain and Disability Index. Arthritis Care Res. 1991;4(4):143-149. [70, 785, 559, 839] reference_item 0.85 ["reference content label: 51. Roach KE, Budiman-Mak E, Songsiridej N, Lertratanakul Y."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
158 8 15 reference_content 52. Rubin DB. Multiple Imputation for Nonresponse in Surveys. New York: John Wiley and Sons; 2004. [70, 842, 559, 878] reference_item 0.85 ["reference content label: 52. Rubin DB. Multiple Imputation for Nonresponse in Surveys"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
159 8 16 reference_content 53. Scheibel M, Magosch P, Pritsch M, Lichtenberg S, Habermeyer P. The belly-off sign: a new clinical diagnostic sign for subscapularis lesions. Arthroscopy. 2005;21(10):1229-1235. [609, 140, 1100, 196] reference_item 0.85 ["reference content label: 53. Scheibel M, Magosch P, Pritsch M, Lichtenberg S, Haberme"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
160 8 17 reference_content 54. Sher JS, Uribe JW, Posada A, Murphy BJ, Zlatkin MB. Abnormal findings on magnetic resonance images of asymptomatic shoulders. J Bone Joint Surg Am. 1995;77(1):10-15. [610, 198, 1099, 254] reference_item 0.85 ["reference content label: 54. Sher JS, Uribe JW, Posada A, Murphy BJ, Zlatkin MB. Abno"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
161 8 18 reference_content 55. Speed C. Shoulder pain. BMJ Clinical Evidence. 2006;2006:1107. [609, 256, 1081, 274] reference_item 0.85 ["reference content label: 55. Speed C. Shoulder pain. BMJ Clinical Evidence. 2006;2006"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
162 8 19 reference_content 56. Urwin M, Symmons D, Allison T, et al. Estimating the burden of musculoskeletal disorders in the community: the comparative prevalence of symptoms at different anatomical sites, and the relation to [611, 277, 1101, 352] reference_item 0.85 ["reference content label: 56. Urwin M, Symmons D, Allison T, et al. Estimating the bur"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
163 8 20 reference_content 57. Vecchio P, Kavanagh R, Hazleman BL, King RH. Shoulder pain in a community-based rheumatology clinic. Br J Rheumatol. 1995;34(5):440-442. [610, 354, 1100, 408] reference_item 0.85 ["reference content label: 57. Vecchio P, Kavanagh R, Hazleman BL, King RH. Shoulder pa"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
164 8 21 reference_content 58. Walch G, Boulahia A, Calderone S, Robinson AH. The “dropping” and “hornblower’s” signs in evaluation of rotator-cuff tears. J Bone Joint Surg Br. 1998;80(4):624-628. [610, 412, 1100, 467] reference_item 0.85 ["reference content label: 58. Walch G, Boulahia A, Calderone S, Robinson AH. The \u201cdrop"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
165 8 22 reference_content 59. Wolfe F, Smythe HA, Yunus MB, et al. The American College of Rheumatology 1990 criteria for the classification of fibromyalgia: report of the Multicenter Criteria Committee. Arthritis Rheum. 1990; [611, 470, 1100, 544] reference_item 0.85 ["reference content label: 59. Wolfe F, Smythe HA, Yunus MB, et al. The American Colleg"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
166 8 23 reference_content 60. Woodward TW, Best TM. The painful shoulder, part I: clinical evaluation. Am Fam Physician. 2000;61(10):3079-3088. [609, 547, 1100, 585] reference_item 0.85 ["reference content label: 60. Woodward TW, Best TM. The painful shoulder, part I: clin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
167 8 24 reference_content 61. Yamaguchi K, Ditsios K, Middleton WD, Hildebolt CF, Galatz LM, Teefey SA. The demographic and morphological features of rotator cuff disease: a comparison of asymptomatic and symptomatic shoulders [611, 587, 1100, 661] reference_item 0.85 ["reference content label: 61. Yamaguchi K, Ditsios K, Middleton WD, Hildebolt CF, Gala"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
168 8 25 reference_content 62. Yamaguchi K, Tetro AM, Blam O, Evanoff BA, Teefey SA, Middleton WD. Natural history of asymptomatic rotator cuff tears: a longitudinal analysis of asymptomatic tears detected sonographically. J Sh [609, 664, 1100, 739] reference_item 0.85 ["reference content label: 62. Yamaguchi K, Tetro AM, Blam O, Evanoff BA, Teefey SA, Mi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
169 8 26 reference_content 63. Yoon JP, Chung SW, Kim SH, Oh JH. Diagnostic value of four clinical tests for the evaluation of subscapularis integrity. J Shoulder Elbow Surg. 2013;22(9):1186-1192. [609, 741, 1100, 797] reference_item 0.85 ["reference content label: 63. Yoon JP, Chung SW, Kim SH, Oh JH. Diagnostic value of fo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
170 8 27 reference_content 64. Yuen CK, Mok KL, Kan PG. The validity of 9 physical tests for full-thickness rotator cuff tears after primary anterior shoulder dislocation in ED patients. Am J Emerg Med. 2012;30(8):1522-1529. [610, 800, 1101, 875] reference_item 0.85 ["reference content label: 64. Yuen CK, Mok KL, Kan PG. The validity of 9 physical test"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
171 8 28 figure_title APPENDIX [549, 933, 652, 956] figure_caption_candidate 0.85 ["figure_title label: APPENDIX"] figure_caption 0.85 unknown_like short_fragment False False
172 8 29 text Age in years - 67:52.8 External rotation strength ratio (Affected shoulder versus Unaffected shoulder) - 0.1:0.2 [191, 1022, 514, 1083] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
173 8 30 text SPADI score - 62.7:27 [365, 1087, 513, 1107] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
174 8 31 text Sex - Male: Female [386, 1120, 513, 1140] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 unknown_like short_fragment False True
175 8 32 text Is dominant shoulder affected? - Yes: No Daily shoulder use at work? - Heavy/Moderate manual labor: Light/No manual labor Medication for shoulder pain/Corticosteroid injection - Yes: No Lift-off test [210, 1154, 516, 1339] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
176 8 33 image [534, 976, 978, 1334] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
177 8 34 figure_title Figure A1. Odds ratios with CIs for the probability of a rotator cuff tear (full model). The bars represent 90% (dark blue), 95% (light blue), and 99% (gray) CIs for the odds ratios. SPADI, Shoulder P [66, 1362, 1100, 1409] figure_caption_candidate 0.85 ["figure_title label: Figure A1. Odds ratios with CIs for the probability of a rot"] figure_caption 0.85 legend_like none False False
178 9 0 header The Orthopaedic Journal of Sports Medicine [67, 67, 424, 90] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
179 9 1 header Predicting Rotator Cuff Diagnosis [798, 67, 1071, 90] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
180 9 2 number 9 [1085, 69, 1100, 87] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
181 9 3 figure_title A [233, 139, 267, 171] figure_inner_text 0.9 ["panel label / figure inner text: A"] figure_inner_text 0.9 display_zone legend_like panel_label True True
182 9 4 image [235, 135, 939, 806] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
183 9 5 figure_title Figure A2. Nomogram to predict the probability of a rotator cuff tear (full model). (A) I he values of a predictor variable for a patient are compared via a perpendicular line with the points scale. T [66, 826, 1103, 919] figure_caption_candidate 0.85 ["figure_title label: Figure A2. Nomogram to predict the probability of a rotator "] figure_caption 0.85 legend_like none False False
184 9 6 chart [379, 950, 788, 1317] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
185 9 7 figure_title Figure A3. Calibration curve for the fitted full model. Small vertical lines at the top of the graph denote the frequency of predicted probabilities for the patient set. The apparent line depicts the [67, 1341, 1102, 1455] figure_caption 0.85 ["figure_title label: Figure A3. Calibration curve for the fitted full model. Smal"] figure_caption 0.85 legend_like none True True
186 10 0 number 10 [70, 70, 93, 87] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
187 10 1 header Jain et al [108, 69, 189, 88] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
188 10 2 header The Orthopaedic Journal of Sports Medicine [744, 68, 1101, 90] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
189 10 3 figure_title TABLE A1 [535, 140, 633, 160] figure_caption_candidate 0.85 ["figure_title label: TABLE A1"] figure_caption 0.85 table_caption_like short_fragment False False
190 10 4 figure_title Predictors of the Diagnosis of a Rotator Cuff Tear (Full Model) $ ^{a} $ [317, 162, 852, 185] figure_caption 0.85 ["figure_title label: Predictors of the Diagnosis of a Rotator Cuff Tear (Full Mod"] figure_caption 0.85 legend_like none True True
191 10 5 table <table><tr><td></td><td>Odds Ratio (95% CI)</td></tr><tr><td>Age</td><td>1.02 (0.99-1.06)</td></tr><tr><td>External rotation strength ratio (affected vs contralateral shoulder)</td><td>1.21 (1.08-1.35 [66, 193, 1098, 442] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
192 10 6 vision_footnote $ ^{a} $SPADI, Shoulder Pain and Disability Index. [91, 451, 432, 473] footnote 0.7 ["vision_footnote label: $ ^{a} $SPADI, Shoulder Pain and Disability Index."] footnote 0.7 unknown_like affiliation_marker True True
193 10 7 figure_title TABLE A2 [535, 516, 635, 535] figure_caption 0.85 ["figure_title label: TABLE A2"] figure_caption 0.85 table_caption_like short_fragment True True
194 10 8 figure_title Probability of a Rotator Cuff Tear for Selected Values of Predictive Variables [262, 538, 907, 561] figure_caption_candidate 0.85 ["figure_title label: Probability of a Rotator Cuff Tear for Selected Values of Pr"] figure_caption 0.85 legend_like none False False
195 10 9 table <table><tr><td rowspan="2"></td><td colspan="6">Probability</td></tr><tr><td>5.0%</td><td>9.4%</td><td>18.4%</td><td>28.6%</td><td>32.4%</td><td>96.9%</td></tr><tr><td>External rotation strength ratio [66, 565, 1099, 734] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
196 10 10 vision_footnote $ ^{a} $Low effect value for external rotation strength ratio set at 1.1 to elicit a probability of a rotator cuff tear at 5.0%. [89, 744, 941, 766] footnote 0.7 ["vision_footnote label: $ ^{a} $Low effect value for external rotation strength rati"] footnote 0.7 unknown_like affiliation_marker True True

View file

@ -0,0 +1,237 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,Exosome Research,"[93, 76, 240, 99]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,doc_title,The Effect of Different Frequencies of Pulsed Electromagnetic Fields on Cartilage Repair of Adipose Mesenchymal Stem Cell-Derived Exosomes in Osteoarthritis,"[91, 138, 825, 297]",paper_title,0.8,"[""page-1 zone title_zone: The Effect of Different Frequencies of Pulsed Electromagneti""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,2,text,"CARTILAGE
2022, Vol. 13(4) 200212
© The Author(s) 2022
DOI: 10.1177/19476035221137726
journals.sagepub.com/home/CAR
SAGE","[858, 118, 1070, 232]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: CARTILAGE\n2022, Vol. 13(4) 200\u2013212\n\u00a9 The Author(s) 2022\nDOI:""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,3,text,"Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wang $ ^{1,2,3} $, Xiao-Na Xiang $ ^{1,2,3} $, Jia-Lei Peng $ ^{1,2,3} $, Cheng-Qi He $ ^{1,2,3} $ $ ^{ID} $, and Hong-Chen He $ ^{1,2,3} $ $ ","[88, 353, 878, 414]",authors,0.8,"[""page-1 zone author_zone: Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wa""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,4,paragraph_title,Abstract,"[90, 471, 183, 493]",abstract_heading,0.95,"[""abstract heading""]",abstract_heading,0.95,frontmatter_main_zone,heading_like,short_fragment,True,True
1,5,abstract,Background. The intra-articular injection of mesenchymal stem cell (MSC)-derived exosomes has already been proved to reverse osteoarthritic cartilage degeneration. Pulsed electromagnetic field (PEMF) ,"[87, 496, 1085, 1024]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,6,paragraph_title,Keywords,"[91, 1057, 193, 1079]",structured_insert,0.9,"[""frontmatter noise: Keywords""]",frontmatter_noise,0.9,frontmatter_main_zone,heading_like,short_fragment,False,False
1,7,text,"adipose mesenchymal stem cell, exosomes, pulsed electromagnetic fields, osteoarthritis, cartilage repair","[89, 1081, 940, 1106]",frontmatter_noise,0.7,"[""keyword-like block: adipose mesenchymal stem cell, exosomes, pulsed electromagne""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,8,paragraph_title,Introduction,"[92, 1143, 240, 1167]",section_heading,0.9,"[""explicit scholarly heading: Introduction""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
1,9,text,"Osteoarthritis (OA) is a prevalent chronic inflammatory disease worldwide, with a strong impact on individual health. $ ^{1-4} $ OA is characterized by pathology involving the whole joint, including c","[89, 1181, 575, 1399]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,10,footnote,"¹Rehabilitation Medicine Centre, West China Hospital, Sichuan University, Chengdu, P.R. China
²School of Rehabilitation Sciences, West China School of Medicine, Sichuan University, Chengdu, P.R. China","[599, 1164, 1074, 1296]",footnote,0.7,"[""footnote label: \u00b9Rehabilitation Medicine Centre, West China Hospital, Sichua""]",footnote,0.7,body_zone,body_like,none,True,True
1,11,footnote, $ ^{*} $Yang Xu and Qian Wang contributed equally to the work.,"[601, 1284, 995, 1305]",footnote,0.7,"[""footnote label: $ ^{*} $Yang Xu and Qian Wang contributed equally to the wor""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,12,footnote,"Corresponding Author:
Hong-Chen He, Rehabilitation Medicine Centre, West China Hospital,
Sichuan University, Chengdu 610041, Sichuan, P.R. China.
Email: hxkfhhc@126.com","[599, 1316, 1069, 1397]",frontmatter_support,0.75,"[""page-1 correspondence footnote: Corresponding Author:\nHong-Chen He, Rehabilitation Medicine ""]",frontmatter_support,0.75,body_zone,body_like,none,True,True
1,13,footer,Creative Commons Non Commercial CC BY-NC: This article is distributed under the terms of the Creative Commons Attribution-NonCommercial 4.0 License (https://creativecommons.org/licenses/by-nc/4.0/) wh,"[91, 1443, 1072, 1522]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,header,Xu et al.,"[122, 81, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,number,201,"[1077, 80, 1110, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,2,text,"investigated to overcome the current limitations of cell-based therapies, such as immune responses, deterioration of stem cells' intrinsic activity, or variation by age of cell donors. $ ^{9-11} $","[119, 134, 606, 229]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,3,text,"In this case, exosomes could deliver a variety of biological signals including protein, cytokines, and microRNA (miRNA), which are derived from the source stem cells. It could be reasonably expected t","[119, 231, 605, 589]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,text,"Pulsed electromagnetic field (PEMF) has been clinically used in the treatment of OA. $ ^{20} $ Also, PEMF treatment increased bone and cartilage formation, and decreased bone and cartilage resorption ","[119, 590, 605, 878]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,5,text,"However, the effect of PEMF with different frequencies on MSC-derived exosomes in osteoarthritic cartilage has still been unknown. Therefore, this study aimed to explore the regulatory effect of PEMF ","[119, 878, 605, 1073]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,paragraph_title,Materials and Methods Ethics Statement,"[121, 1104, 385, 1170]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Materials and Methods Ethics Statement""]",subsection_heading,0.6,body_zone,support_like,none,True,True
2,7,footer,,"[121, 1143, 284, 1170]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
2,8,text,"This study was conducted under the approval of the Animal Ethical Committee of West China Hospital, Sichuan University. All animal care and surgical techniques strictly complied with the Declaration o","[120, 1182, 604, 1281]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,9,paragraph_title,In Vitro Study,"[121, 1310, 253, 1337]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: In Vitro Study""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,10,text,"Isolation and characterization of rat adipose mesenchymal stem cells. Adipose mesenchymal stem cells (AMSCs) were isolated from 3-week-old healthy Sprague-Dawley rats' epididymal fat (n = 2, provided ","[119, 1348, 605, 1422]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,11,text,,"[628, 140, 1114, 452]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
2,12,text,"For determining the multipotent differentiation capabilities of rat AMSCs, including osteogenic, adipogenic, and chondrogenic differentiation, AMSCs were cultured in the following medium types: (1) os","[627, 451, 1115, 1103]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,13,text,"PEMF stimulates MSC-derived exosomes. Rat MSCs (P3-P6) were cultured in low-glucose DMEM (Gibco, USA) when cell confluence reached 80% to 90%. The custom-designed PEMF exposure system comprises a wave","[628, 1133, 1115, 1425]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,0,number,202,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,1,header,CARTILAGE 13(4),"[940, 80, 1082, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,2,image,,"[100, 159, 1049, 912]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,3,figure_title,Figure I. PEMF modulates AMSC-derived exosomes in the incubator. PEMF = pulsed electromagnetic field; AMSC = adipose tissue-derived MSC.,"[90, 952, 620, 995]",figure_caption,0.85,"[""figure_title label: Figure I. PEMF modulates AMSC-derived exosomes in the incuba""]",figure_caption,0.85,,reference_like,citation_line,True,True
3,4,text,"contained inside the cylindrical electromagnetic coil seal, embedded in the middle of the constant temperature incubator. MSC cells were cultured in pure low-glucose DMEM before being exposed to PEMF ","[89, 1029, 573, 1269]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,text,"Isolation and characterization of MSC-derived exosomes. MSCs were cultured in pure low-glucose DMEM for 48 hours to collect the conditioned medium. The supernatant was then centrifuged at 120,000g at ","[89, 1293, 574, 1415]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,,"[599, 1029, 1084, 1100]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,7,text,"The exosome morphology was observed under 100-kV transmission electron microscopy (TEM; HITACHI H-7000FA, Japan). The particle size distribution of exosomes was analyzed by Zetaview (Particle Metrix, ","[599, 1101, 1084, 1270]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,8,text,"Primary culture of chondrocytes and in vitro model of OA-like chondrocytes. Rat chondrocytes were isolated from 1-week-old Sprague-Dawley rats' ribs (n = 2, provided by the Chengdu Dossy Experimental ","[598, 1293, 1085, 1415]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,0,header,Xu et al.,"[122, 81, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,number,203,"[1077, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,2,figure_title,Table I. Primer Sequences and Mapleton Sizes for Quantitative Polymerase Chain Reaction.,"[121, 133, 603, 178]",table_caption,0.9,"[""table prefix matched: Table I. Primer Sequences and Mapleton Sizes for Quantitativ""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
4,3,table,<table><tr><td>Genes</td><td>Primer Sequence (5-3)</td></tr><tr><td>MMP13</td><td>F: 5-AGCAGGTTGAGCCTGAACTGT-3 R: 5-GCAGCACTGAGCCTTTTCACC-3</td></tr><tr><td>COL2A1</td><td>F: 5-GCCCAACTGGCAAACA,"[120, 184, 592, 495]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
4,4,text,"cultured with DMEM/F-12 medium containing 10% FBS, 100 U/ml penicillin, and 100 U/ml streptomycin (Gibco). The medium was changed every 3 days. For all experiments described, the chondrocytes in monol","[120, 537, 603, 658]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,5,text,"For the in vitro model of OA-like chondrocytes, chondrocytes were induced to express an OA-like phenotype by interleukin (IL)-1 $ \beta $ treatment (Cyagen Biosciences Inc.). Briefly, IL-1 $ \beta $ (","[120, 658, 603, 779]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,6,text,"MSC-derived exosome uptake in vitro. Exosomes were labeled using the red fluorescent dye 3,3'-dioctadecyloxacarbocyanine perchlorate (DiO) according to the manufacturer's instructions (Cyagen Bioscien","[120, 802, 605, 1117]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,7,text,"Real-time RT-qPCR. Total RNA was extracted from cells using the Total Exosome Isolation Reagent (Invitrogen, USA), followed by reverse transcription to generate the first-strand cDNA using the PrimeSc","[119, 1138, 604, 1429]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,8,text,,"[628, 134, 1115, 471]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,9,text,"Western blot. Passage 2-4 chondrocytes were used for protein extraction. Briefly, chondrocytes were washed with PBS 3 times and lysed with radioimmunoprecipitation assay (RIPA) lysis buffer (Beyotime,","[628, 495, 1115, 1001]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,10,paragraph_title,In Vivo Study,"[631, 1032, 764, 1058]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: In Vivo Study""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
4,11,text,The rat model of OA and experimental design. Thirty-nine 8-week-old male SD rats (provided by the Chengdu Dossy Experimental Animals Company) were anesthetized with 2.5% to 3% isoflurane. Twenty-seven,"[629, 1070, 1115, 1433]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,0,number,204,"[93, 80, 130, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,1,header,CARTILAGE 13(4),"[940, 79, 1083, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,2,text,"EXO group; n = 7, OA + 75 Hz EXO group) (AMSC-derived exosomes exposed to PEMF were injected with the same concentration), while intra-articular injection of 10 μl of normal PBS was performed in the O","[88, 138, 575, 334]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,3,text,"Micro-CT imaging study. At 8 weeks of treatment, rats were sacrificed and the distal part of the femur and the proximal part of the tibia were cut with a blunt scissor to acquire knee joint tissues. M","[88, 360, 575, 627]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,4,text,"Histological staining and immunohistochemistry. At 8 weeks of treatment, the rats were sacrificed and articular cartilage samples were collected. After fixation with paraformaldehyde for 24 hours and ","[89, 650, 575, 1156]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,5,text,"For immunohistochemistry (IHC), the deparaffinized sections were soaked in EDTA (pH 9.0) for antigen retrieval by a microwave method. The sections were placed in a 3% hydrogen peroxide solution and in","[89, 1156, 574, 1446]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,6,paragraph_title,Statistical Analysis,"[601, 133, 774, 161]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,7,text,Data are expressed as mean ± standard deviation (SD). Repeated measures were analyzed by repeated-measures analysis of variance (ANOVA) with Bonferroni post hoc analysis. The other data were analyzed ,"[599, 171, 1085, 366]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,8,paragraph_title,Results Characterization of AMSCs and AMSC-Derived Exosomes,"[600, 396, 1034, 492]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Results Characterization of AMSCs and AMSC-Derived Exosomes""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,9,footer,,"[600, 436, 1034, 492]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
5,10,text,"The AMSCs were extracted from the rat adipose tissue. Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and CD45 (Fig. 2A)","[599, 503, 1084, 672]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,11,text,"For exosome preparation, 200 ml of AMSC-conditioned medium was centrifuged, and 50 µg of exosomes can be purified. The dynamic light-scattering measurement indicated that the mean size of AMSC-derived","[597, 672, 1085, 939]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,12,paragraph_title,PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes,"[599, 964, 1036, 1021]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,13,text,"To investigate whether PEMF-exposed AMSC-derived exosomes could enter chondrocytes through co-culture, exosomes stained with DiO were co-cultured with chondrocytes, and 24 hours later chondrocytes wer","[598, 1031, 1085, 1273]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,14,paragraph_title,PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Inflammation,"[599, 1301, 999, 1386]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,15,text,"Next, to evaluate whether PEMF at different frequencies could modulate the effect of AMSC-derived exosomes on","[598, 1395, 1085, 1446]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,0,header,Xu et al.,"[123, 81, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,number,205,"[1077, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,2,figure_title,A,"[164, 165, 189, 190]",figure_inner_text,0.9,"[""panel label / figure inner text: A""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,3,chart,,"[164, 194, 603, 369]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,4,chart,,"[616, 195, 1056, 369]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,5,chart,,"[166, 384, 601, 558]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,6,chart,,"[617, 382, 1057, 558]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,7,figure_title,B,"[166, 573, 187, 596]",figure_inner_text,0.9,"[""panel label / figure inner text: B""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,8,image,,"[167, 600, 1062, 827]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,9,figure_title,C,"[165, 843, 190, 869]",figure_inner_text,0.9,"[""panel label / figure inner text: C""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,10,chart,,"[161, 859, 481, 1102]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,11,figure_title,D,"[500, 843, 523, 869]",figure_inner_text,0.9,"[""panel label / figure inner text: D""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,12,image,,"[498, 869, 805, 1096]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,13,figure_title,E,"[838, 842, 861, 869]",figure_inner_text,0.9,"[""panel label / figure inner text: E""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,14,image,,"[816, 842, 1094, 1119]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,15,figure_title,"Figure 2. Characterization of AMSCs and AMSC-derived exosomes. (A) Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and C","[119, 1146, 1108, 1292]",figure_caption,0.92,"[""figure_title label: Figure 2. Characterization of AMSCs and AMSC-derived exosome""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,16,text,"IL-1β-induced chondrocyte inflammation, the expressions of common inflammation factors in OA (matrix metalloproteinase 13 [MMP13], caspase-1, and IL-1) were assessed in IL-1β-treated chondrocytes. As ","[120, 1328, 604, 1426]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,17,text,,"[628, 1333, 1116, 1432]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,0,number,206,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,1,header,CARTILAGE 13(4),"[940, 80, 1083, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,2,image,,"[132, 162, 300, 351]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,3,image,,"[302, 166, 467, 351]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,4,image,,"[470, 165, 637, 350]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,5,figure_title,C,"[653, 164, 675, 188]",figure_inner_text,0.9,"[""panel label / figure inner text: C""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,6,chart,,"[659, 203, 833, 329]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,7,figure_title,B,"[135, 358, 154, 380]",figure_inner_text,0.9,"[""panel label / figure inner text: B""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,8,chart,,"[842, 206, 1012, 327]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,9,chart,,"[137, 380, 302, 559]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,10,chart,,"[313, 380, 473, 558]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,11,chart,,"[484, 380, 642, 560]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,12,chart,,"[661, 404, 832, 529]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,13,chart,,"[840, 380, 1046, 516]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,14,chart,,"[153, 579, 309, 755]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,15,figure_title,D,"[652, 547, 673, 571]",figure_inner_text,0.9,"[""panel label / figure inner text: D""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,16,chart,,"[318, 579, 472, 753]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,17,chart,,"[658, 583, 1046, 749]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,18,figure_title,Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL-1β-induced downregulation of anabolic markers and upregulation of catabolic markers in cartilage degradation. (A) Immunofluorescence staini,"[90, 802, 1078, 969]",figure_caption,0.92,"[""figure_title label: Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
7,19,text,attenuated IL-1 $ \beta $-induced changes in the expression of these genes (P < 0.01 except for MMP13 in OA + EXO group). And PEMF-exposed AMSC-derived exosomes had a substantially better attenuation ,"[89, 1003, 575, 1218]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,20,text,Western blot (Fig. 3C) also demonstrated that IL-1β induction significantly upregulated the expression of IL-1 (P < 0.01) and caspase-1 (P < 0.01) proteins. And the treatment of AMSC-derived exosomes ,"[89, 1220, 575, 1437]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,21,paragraph_title,PEMF Promoted the Suppression Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Matrix Degeneration,"[599, 1003, 998, 1087]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF Promoted the Suppression Effect of AMSC-Derived Exosome""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
7,22,text,"In addition, to investigate whether PEMF could modulate the effect of AMSC-derived exosomes on IL-1β-induced reduction in chondrocyte matrix synthesis, the expressions of common anabolic markers (COL2","[600, 1098, 1087, 1436]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,0,header,Xu et al.,"[122, 80, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,number,207,"[1077, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,2,text,"ACAN (P < 0.01), and SOX9 (P < 0.01) mRNA expressions. Also, compared with PEMF at 15 and 45 Hz, the 75-Hz PEMF-exposed AMSC-derived exosomes upregulated the expression of COL2A1 (P < 0.05), ACAN (P <","[120, 139, 603, 260]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,3,text,"In addition, ELISA (Fig. 3D) also demonstrated that AMSC-derived exosomes (1 × 10⁸ particles/ml) significantly attenuated IL-1β-induced low expression of COL2A1 proteins (P < 0.01). Meanwhile, ELISA (","[119, 261, 605, 478]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,4,paragraph_title,PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Damage in ACLT-Induced Experimental OA Rats,"[119, 508, 529, 593]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Da""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
8,5,text,"Given that OA was always accompanied by cartilage defects, we hypothesized that AMSC-derived exosomes exposed to PEMF could alleviate the progression of OA via inducing chondrocyte matrix synthesis. I","[119, 604, 605, 916]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,6,text,"Eight weeks after the model was established, the knee joint specimens of animals were collected for micro-CT imaging studies (Fig. 4A) and H&E staining (Fig. 4B). The micro-CT images displayed that in","[117, 916, 607, 1469]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,7,text,,"[629, 134, 1114, 349]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
8,8,text,"To further clarify the relationship between COL2A1, ACAN, and extracellular matrix (ECM), IHC staining of COL2A1 and ACAN was performed in the knee cartilage layer of the in vivo knee joint OA model. ","[628, 350, 1115, 593]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,9,paragraph_title,Discussion,"[630, 629, 757, 655]",section_heading,0.9,"[""explicit scholarly heading: Discussion""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
8,10,text,"In the present study, we investigated the regulatory effect of PEMF with different frequencies on osteoarthritic cartilage regeneration of AMSC-derived exosomes. The in vitro study showed that the PEM","[628, 668, 1115, 932]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,11,text,Previously it has been shown that PEMF could affect biological functions via the production of coherent or interfering fields that modify fundamental electromagnetic fields generated by living organis,"[628, 933, 1115, 1463]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,0,number,208,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,1,header,CARTILAGE 13(4),"[940, 80, 1082, 104]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,2,image,,"[109, 149, 1058, 891]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
9,3,figure_title,Figure 4. PEMF-regulated AMSC-derived exosomes alleviate cartilage damage in ACLT-induced experimental osteoarthritis rats. (A) The micro-CT image of the transverse section of the epiphyseal proximal ,"[92, 920, 1077, 1048]",figure_caption,0.92,"[""figure_title label: Figure 4. PEMF-regulated AMSC-derived exosomes alleviate car""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,4,figure_title,PEMF = pulsed electromagnetic field; AMSC = adipose tissue derived MSC; ACLT = anterior cruciate ligament transaction; OARSI = Osteoarthritis Research Society International; OA = osteoarthritis.,"[91, 1046, 1073, 1086]",figure_caption_candidate,0.85,"[""figure_title label: PEMF = pulsed electromagnetic field; AMSC = adipose tissue d""]",figure_caption,0.85,,legend_like,none,False,False
9,5,text,"the 3D culture of rat bone marrow MSCs. $ ^{16,23,38} $ In addition, PEMF could potentiate MSCs' anti-inflammatory responses. $ ^{31} $ In this study, the enhanced effect of PEMF on AMSC-derived exoso","[89, 1121, 574, 1289]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
9,6,text,"Cytokines secreted by immune cells are the main players of OA. IL-1β drives the inflammatory cascade independently or in collaboration with other cytokines, and has been used to trigger inflammation i","[88, 1290, 574, 1434]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
9,7,text,,"[598, 1120, 1087, 1435]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
10,0,header,Xu et al.,"[122, 80, 195, 103]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,1,number,209,"[1076, 80, 1112, 102]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,2,text,"low-frequency PEMF in ameliorating the deterioration of bone microarchitecture in ovariectomized (OVX) mice, and the inhibitory effect of PEMF may be associated with IL-1β inhibition. $ ^{[31,50]} $ T","[119, 134, 605, 422]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,3,text,"Moreover, IL-1β interferes with the production of essential structural proteins, including SOX9, collagen type II, and aggrecan, by influencing the activity of chondrocytes in the joint. $ ^{[51,52]} ","[119, 423, 605, 806]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,4,text,"Previously it has been shown that the inflammatory progression of OA could be alleviated by MSCs, which is associated with the multiple miRNAs and long non-coding RNAs (lncRNAs) capsulated in exosomes","[118, 807, 606, 1408]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,5,text,,"[628, 133, 1114, 302]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
10,6,text,"In particular, as demonstrated by Brighton et al.,⁶⁷ PEMF determines signal transduction through the intracellular release of Ca²⁺, leading to an increase in cytosolic Ca²⁺ and an increase in activate","[628, 301, 1115, 854]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,7,text,"There are still some limitations to this study. First, on the basis of in vitro experiments, 75-Hz PEMF stimulation was found to have superior effect on AMSC-derived exosomes. Thus, in the in vivo stu","[628, 856, 1115, 1168]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,8,paragraph_title,Conclusion,"[630, 1199, 765, 1225]",section_heading,0.9,"[""explicit scholarly heading: Conclusion""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
10,9,text,"In the present study, PEMF-exposed AMSC-derived exosomes could significantly inhibit the degeneration and inflammation of osteoarthritic cartilage. Compared with other frequency parameters, the PEMF a","[628, 1238, 1115, 1408]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
11,0,number,210,"[93, 80, 129, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,1,header,CARTILAGE 13(4),"[941, 80, 1082, 103]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,2,text,osteoarthritic cartilage degeneration. These findings laid a foundation for the regulatory mechanism of PEMF stimulation on MSC-derived exosomes and opened up a new direction for enhancing the therape,"[91, 134, 573, 254]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,3,paragraph_title,Author Contributions,"[92, 279, 304, 300]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Author Contributions""]",subsection_heading,0.6,body_zone,support_like,none,True,True
11,4,text,"Yang Xu: Conceptualization, Methodology, Data curation, Formal analysis, Writing—original draft, Writing—review & editing. Qian Wang: Conceptualization, Methodology, Data curation, Formal analysis, Fu","[90, 309, 573, 554]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,5,paragraph_title,Acknowledgments and Funding,"[92, 577, 395, 600]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Acknowledgments and Funding""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
11,6,text,"The author(s) disclosed receipt of the following financial support for the research, authorship, and/or publication of this article: This work was supported by grants from the National Natural Science","[91, 608, 573, 697]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,7,paragraph_title,Declaration of Conflicting Interests,"[92, 721, 428, 744]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Declaration of Conflicting Interests""]",backmatter_boundary_candidate,0.5,body_zone,heading_like,none,True,True
11,8,text,"The author(s) declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.","[91, 752, 572, 817]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,9,paragraph_title,Ethical Approval,"[93, 852, 254, 876]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Ethical Approval""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
11,10,text,"This study protocol was approved by the Animal Ethics Committee of the West China Hospital of Sichuan University (Sichuan, China; approval no. 2020350A).","[91, 884, 572, 950]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,11,paragraph_title,ORCID iDs,"[92, 976, 203, 998]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: ORCID iDs""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
11,12,text,Cheng-Qi He https://orcid.org/0000-0002-5349-0571 Hong-Chen He https://orcid.org/0000-0003-4635-6769,"[90, 1007, 523, 1061]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,13,paragraph_title,References,"[93, 1091, 204, 1113]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
11,14,reference_content,"1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiology, risk factors and disease outcomes of osteoarthritis. Best Pract Res Clin Rheumatol. 2018;32(2):312-26.","[103, 1123, 571, 1186]",reference_item,0.85,"[""reference content label: 1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiolo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,15,reference_content,"2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literature update. Curr Opin Rheumatol. 2018;30(2):160-7.","[102, 1189, 570, 1231]",reference_item,0.85,"[""reference content label: 2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,16,reference_content,"3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan YZ, Fauzi MB. Mesenchymal stem cells: current concepts in the management of inflammation in osteoarthritis. Biomedicines. 2021;9(7):785. doi","[103, 1233, 571, 1338]",reference_item,0.85,"[""reference content label: 3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,17,reference_content,"4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State of the art: the immunomodulatory role of MSCs for osteoarthritis. Int J Mol Sci. 2022;23(3):1618. doi:10.3390/ijms23031618.","[102, 1343, 572, 1428]",reference_item,0.85,"[""reference content label: 4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,18,reference_content,"5. Bortoluzzi A, Furini F, Scirè CA. Osteoarthritis and its management: epidemiology, nutritional aspects and environmental factors. Autoimmun Rev. 2018;17(11):1097-104.","[611, 135, 1082, 200]",reference_item,0.85,"[""reference content label: 5. Bortoluzzi A, Furini F, Scir\u00e8 CA. Osteoarthritis and its ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,19,reference_content,"6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of hip and knee osteoarthritis: a review. Jama. 2021;325(6):568-78.","[612, 202, 1083, 245]",reference_item,0.85,"[""reference content label: 6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,20,reference_content,"7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, Block J, et al. 2019 American College of Rheumatology/Arthritis Foundation guideline for the management of osteoarthritis of the hand, hip, a","[613, 247, 1083, 354]",reference_item,0.85,"[""reference content label: 7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,21,reference_content,"8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu E, et al. Alternative and complementary therapies in osteoarthritis and cartilage repair. Aging Clin Exp Res. 2020;32(4):547-60.","[612, 357, 1082, 444]",reference_item,0.85,"[""reference content label: 8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,22,reference_content,"9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strategies for cartilage defects and osteoarthritis. Curr Opin Pharmacol. 2018;40:74-80.","[610, 448, 1081, 510]",reference_item,0.85,"[""reference content label: 9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strate""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,23,reference_content,"10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mesenchymal stem cells in knee osteoarthritis treatment: A systematic review and meta-analysis. J Orthop Transl. 2020;24:p121-30.","[605, 515, 1081, 599]",reference_item,0.85,"[""reference content label: 10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mes""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,24,reference_content,"11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem cell related therapies for cartilage lesions and osteoarthritis. Am J Transl Res. 2019;11(10):6275-89.","[605, 604, 1082, 667]",reference_item,0.85,"[""reference content label: 11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem ce""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,25,reference_content,"12. Bao C, He C. The role and therapeutic potential of MSC-derived exosomes in osteoarthritis. Arch Biochem Biophys. 2021;710:109002.","[605, 671, 1081, 733]",reference_item,0.85,"[""reference content label: 12. Bao C, He C. The role and therapeutic potential of MSC-d""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,26,reference_content,"13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exosomes for effective cartilage tissue repair and treatment of osteoarthritis. Biotechnol J. 2020;15(12):e2000082.","[605, 738, 1083, 801]",reference_item,0.85,"[""reference content label: 13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,27,reference_content,"14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-free MSC therapy for cartilage regeneration: Implications for osteoarthritis treatment. Semin Cell Dev Biol. 2017;67:56-64.","[605, 804, 1083, 868]",reference_item,0.85,"[""reference content label: 14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,28,reference_content,"15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar K, Kumari U, et al. Mesenchymal stem cell-derived extracellular vesicles: regenerative potential and challenges. Biology (Basel). 2021;10(3)","[605, 872, 1082, 957]",reference_item,0.85,"[""reference content label: 15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,29,reference_content,"16. Parate D, Franco-Obregón A, Fröhlich J, Beyer C, Abbas AA, Kamarul T, et al. Enhancement of mesenchymal stem cell chondrogenesis with short-term low intensity pulsed electromagnetic fields. Sci Re","[605, 962, 1082, 1046]",reference_item,0.85,"[""reference content label: 16. Parate D, Franco-Obreg\u00f3n A, Fr\u00f6hlich J, Beyer C, Abbas A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,30,reference_content,"17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP, Herbert BR. Priming adipose-derived mesenchymal stem cells with hyaluronan alters growth kinetics and increases attachment to articular car","[605, 1051, 1082, 1157]",reference_item,0.85,"[""reference content label: 17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,31,reference_content,"18. Rando TA, Ambrosio F. Regenerative rehabilitation: applied biophysics meets stem cell therapeutics. Cell Stem Cell. 2018;22(3):306-9.","[605, 1161, 1081, 1225]",reference_item,0.85,"[""reference content label: 18. Rando TA, Ambrosio F. Regenerative rehabilitation: appli""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,32,reference_content,"19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. Understanding mechanobiology: physical therapists as a force in mechanotherapy and musculoskeletal regenerative rehabilitation. Phys Ther. 20","[605, 1229, 1082, 1313]",reference_item,0.85,"[""reference content label: 19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. U""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,33,reference_content,"20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed electromagnetic field therapy on pain, stiffness, physical function, and quality of life in patients with osteoarthritis: a systematic review ","[604, 1317, 1083, 1426]",reference_item,0.85,"[""reference content label: 20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed el""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,0,header,Xu et al.,"[123, 81, 194, 103]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,1,number,211,"[1077, 81, 1111, 102]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,2,reference_content,"21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Pulsed electromagnetic field at different stages of knee osteoarthritis in rats induced by low-dose monosodium iodoacetate: Effect on subchondra","[123, 134, 602, 263]",reference_item,0.85,"[""reference content label: 21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Puls""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,3,reference_content,"22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al. Magnetic enhancement of chondrogenic differentiation of mesenchymal stem cells. ACS Biomater Sci Eng. 2019;5(5):2200-7.","[124, 267, 601, 352]",reference_item,0.85,"[""reference content label: 22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,4,reference_content,"23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obregón A, et al. Pulsed electromagnetic fields potentiate the paracrine function of mesenchymal stem cells for cartilage regeneration. Stem Ce","[124, 355, 602, 441]",reference_item,0.85,"[""reference content label: 23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,5,reference_content,"24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel T, Park CH, et al. Electromagnetic manipulation enabled calcium alginate Janus microsphere for targeted delivery of mesenchymal stem cells. ","[124, 444, 603, 528]",reference_item,0.85,"[""reference content label: 24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,6,reference_content,"25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shuttled by adipose tissue-derived mesenchymal stem cell-derived extracellular vesicles suppresses myocardial pyroptosis in atrial fibrillation","[125, 531, 603, 638]",reference_item,0.85,"[""reference content label: 25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,7,reference_content,"26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte proliferation, apoptosis and autophagy through the PI3K/AKT/mTOR signaling pathway in rat models with rheumatoid arthritis. Biomed Pharmacothe","[124, 642, 602, 726]",reference_item,0.85,"[""reference content label: 26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte pr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,8,reference_content,"27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI histopathology initiative: recommendations for histological assessments of osteoarthritis in the rat. Osteoarthritis Cartilage. 2010;18(Suppl","[124, 729, 602, 814]",reference_item,0.85,"[""reference content label: 27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI h""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,9,reference_content,"28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Brink P, Christ GJ, et al. The effect of low-frequency electromagnetic field on human bone marrow stem/progenitor cell differentiation. Stem Ce","[124, 818, 602, 902]",reference_item,0.85,"[""reference content label: 28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Bri""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,10,reference_content,29. Trock DH. Electromagnetic fields and magnets. Investigational treatment for musculoskeletal disorders. Rheum Dis Clin North Am. 2000;26(1):51-62.,"[124, 906, 602, 968]",reference_item,0.85,"[""reference content label: 29. Trock DH. Electromagnetic fields and magnets. Investigat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,11,reference_content,"30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, Puvanakrishnan R. Low frequency pulsed electromagnetic field: a viable alternative therapy for arthritis. Indian J Exp Biol. 2009;47(12):939-","[124, 972, 602, 1056]",reference_item,0.85,"[""reference content label: 30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, P""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,12,reference_content,"31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal stromal cells/pericytes (MSCs) with pulsed electromagnetic field (PEMF) has the potential to treat rheumatoid arthritis. Front Immunol. 201","[124, 1059, 602, 1143]",reference_item,0.85,"[""reference content label: 31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,13,reference_content,"32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et al. Electromagnetic fields enhance chondrogenesis of human adipose-derived stem cells in a chondrogenic microenvironment in vitro. J Appl P","[124, 1146, 602, 1253]",reference_item,0.85,"[""reference content label: 32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,14,reference_content,"33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina L, De Angelis MG, et al. A comparative analysis of the in vitro effects of pulsed electromagnetic field treatment on osteogenic differentiat","[124, 1257, 602, 1364]",reference_item,0.85,"[""reference content label: 33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,15,reference_content,"34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldorf K, Fentz A-K, et al. Co-culture with human osteoblasts and exposure to extremely low frequency pulsed electromagnetism.","[124, 1367, 604, 1432]",reference_item,0.85,"[""reference content label: 34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldor""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,16,reference_content,netic fields improve osteogenic differentiation of human adipose-derived mesenchymal stem cells. Int J Mol Sci. 2018;19(4):994.,"[661, 135, 1111, 197]",reference_item,0.85,"[""reference content label: netic fields improve osteogenic differentiation of human adi""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
12,17,reference_content,"35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Giannini A, Riccardi G, et al. Differentiation of human umbilical cord-derived mesenchymal stem cells, WJ-MSCs, into chondrogenic cells in the p","[634, 201, 1112, 307]",reference_item,0.85,"[""reference content label: 35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Gian""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,18,reference_content,"36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect of pulsed electromagnetic fields and dehydroepiandrosterone on viability and osteo-induction of human mesenchymal stem cells. J Tissue Eng ","[634, 310, 1112, 396]",reference_item,0.85,"[""reference content label: 36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,19,reference_content,"37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abdemami B. Extremely low frequency electromagnetic field in mesenchymal stem cells gene regulation: chondrogenic markers evaluation. Artif Orga","[634, 399, 1112, 483]",reference_item,0.85,"[""reference content label: 37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abde""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,20,reference_content,"38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, Boyan BD. Pulsed electromagnetic fields enhance BMP-2 dependent osteoblastic differentiation of human mesenchymal stem cells. J Orthop Res. ","[634, 487, 1112, 572]",reference_item,0.85,"[""reference content label: 38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,21,reference_content,"39. Chow YY, Chin KY. The Role of Inflammation in the Pathogenesis of Osteoarthritis. Mediators Inflamm. 2020;2020:8293921.","[634, 575, 1112, 637]",reference_item,0.85,"[""reference content label: 39. Chow YY, Chin KY. The Role of Inflammation in the Pathog""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,22,reference_content,"40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP, Fahmi H. Role of proinflammatory cytokines in the pathophysiology of osteoarthritis. Nat Rev Rheumatol. 2011;7(1):33-42.","[634, 641, 1112, 705]",reference_item,0.85,"[""reference content label: 40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,23,reference_content,"41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al. [Research of inflammatory factors and signaling pathways in knee osteoarthritis]. Zhongguo Gu Shang. 2020;33(4):388-192.","[634, 707, 1112, 770]",reference_item,0.85,"[""reference content label: 41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,24,reference_content,"42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S, Plener Z, et al. Chondrocyte dedifferentiation and osteoarthritis (OA). Biochem Pharmacol. 2019;165:49-65.","[633, 773, 1112, 836]",reference_item,0.85,"[""reference content label: 42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,25,reference_content,"43. Goldring MB, Otero M. Inflammation in osteoarthritis. Curr Opin Rheumatol. 2011;23(5):471-148.","[633, 840, 1112, 881]",reference_item,0.85,"[""reference content label: 43. Goldring MB, Otero M. Inflammation in osteoarthritis. Cu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,26,reference_content,"44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix metalloproteinases in osteoarthritis pathogenesis: An updated review. Life Sci. 2019;234:116786.","[634, 884, 1112, 946]",reference_item,0.85,"[""reference content label: 44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix m""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,27,reference_content,"45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw T. Role of Caspase-1 in the pathogenesis of inflammatory-associated chronic noncommunicable diseases. J Inflamm Res. 2020;13:749-64.","[633, 949, 1112, 1033]",reference_item,0.85,"[""reference content label: 45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,28,reference_content,"46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, Pellati A, et al. Characterization of adenosine receptors in bovine chondrocytes and fibroblast-like synoviocytes exposed to low frequency lo","[634, 1037, 1112, 1166]",reference_item,0.85,"[""reference content label: 46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, P""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,29,reference_content,"47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Cadossi R, et al. Electromagnetic fields (EMFs) and adenosine receptors modulate prostaglandin E(2) and cytokine release in human osteoarthrit","[633, 1169, 1113, 1276]",reference_item,0.85,"[""reference content label: 47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Ca""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,30,reference_content,"48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA. A pulsing electric field (PEF) increases human chondrocyte proliferation through a transduction pathway involving nitric oxide signaling. ","[634, 1279, 1112, 1385]",reference_item,0.85,"[""reference content label: 48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
12,31,reference_content,"49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldorff EI, et al. Dynamic imaging demonstrates that pulsed electro-","[633, 1388, 1114, 1431]",reference_item,0.85,"[""reference content label: 49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,0,number,212,"[93, 81, 129, 101]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
13,1,header,CARTILAGE 13(4),"[940, 81, 1082, 103]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
13,2,reference_content,magnetic fields (PEMF) suppress IL-6 transcription in bovine nucleus pulposus cells. J Orthop Res. 2018;36(2):778-87. doi:10.1002/jor.23713.,"[123, 135, 572, 198]",reference_item,0.85,"[""reference content label: magnetic fields (PEMF) suppress IL-6 transcription in bovine""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
13,3,reference_content,"50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of pulsed electromagnetic field therapy at different frequencies on bone mass and microarchitecture in osteoporotic mice. Bioelectromagnetics. 2","[93, 201, 576, 307]",reference_item,0.85,"[""reference content label: 50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of p""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,4,reference_content,"51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \beta $ signaling in osteoarthritis: chondrocytes in focus. Cell Signal. 2019;53:212-23.","[94, 311, 570, 373]",reference_item,0.85,"[""reference content label: 51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \\beta""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,5,reference_content,52. Vincent TL. IL-1 in osteoarthritis: time for a critical review of the literature. F1000res. 2019;8:934.,"[94, 377, 573, 418]",reference_item,0.85,"[""reference content label: 52. Vincent TL. IL-1 in osteoarthritis: time for a critical ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,6,reference_content,"53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyte-specific enhancer elements in the Col11a2 gene resemble the Col2a1 tissue-specific enhancer. J Biol Chem. 1998;273(24):14998-5006.","[94, 421, 572, 506]",reference_item,0.85,"[""reference content label: 53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyt""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,7,reference_content,"54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and function of aggrecan. Cell Res. 2002;12(1):19-32.","[93, 509, 571, 551]",reference_item,0.85,"[""reference content label: 54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,8,reference_content,"55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collagen type II suppresses articular chondrocyte hypertrophy and osteoarthritis progression by promoting integrin $ \beta $1-SMAD1 interaction. ","[94, 553, 572, 638]",reference_item,0.85,"[""reference content label: 55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collag""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,9,reference_content,"56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-derived exosomes overexpressing microRNA-26a-5p alleviate osteoarthritis via down-regulation of PTGS2. Int Immunopharmacol. 2020;78:105946.","[93, 641, 572, 727]",reference_item,0.85,"[""reference content label: 56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-de""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,10,reference_content,"57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovial fibroblasts proliferation and inflammatory cytokines secretion through targeting TLR4. Biomed Pharmacother. 2017;96:208-14.","[94, 730, 571, 814]",reference_item,0.85,"[""reference content label: 57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovia""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,11,reference_content,"58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. MicroRNA-193b-3p regulates chondrogenesis and chondrocyte metabolism by targeting HDAC3. Theranostics. 2018;8(10):2862-83.","[94, 817, 571, 902]",reference_item,0.85,"[""reference content label: 58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. Mi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,12,reference_content,"59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exosomes derived from miR-140-5p-overexpressing human synovial mesenchymal stem cells enhance cartilage tissue regeneration and prevent osteoart","[94, 905, 572, 1012]",reference_item,0.85,"[""reference content label: 59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exos""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,13,reference_content,"60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin promotes IL-6 and TNF- $ \alpha $ production in human","[92, 1015, 573, 1057]",reference_item,0.85,"[""reference content label: 60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,14,reference_content,"synovial fibroblasts by repressing miR-199a-5p through ERK, p38 and JNK signaling pathways. Int J Mol Sci. 2018;19(1):190.","[631, 135, 1081, 200]",reference_item,0.85,"[""reference content label: synovial fibroblasts by repressing miR-199a-5p through ERK, ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
13,15,reference_content,"61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone marrow-derived mesenchymal stem cells alleviates osteoarthritis by inhibiting syndecan-1. Cell Tissue Res. 2020;381(1):99-114.","[603, 203, 1082, 290]",reference_item,0.85,"[""reference content label: 61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone m""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,16,reference_content,"62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KLF3-AS1 from hMSCs promoted cartilage repair and chondrocyte proliferation in osteoarthritis. Biochem J. 2018;475(22):3629-38.","[603, 294, 1081, 380]",reference_item,0.85,"[""reference content label: 62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KL""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,17,reference_content,"63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived exosomal microRNAs contribute to wound inflammation. Sci China Life Sci. 2016;59(12):1305-12.","[602, 384, 1082, 448]",reference_item,0.85,"[""reference content label: 63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,18,reference_content,"64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects chondrocyte proliferation, apoptosis, and inflammation by targeting HMGB1 in osteoarthritis. Inflamm Res. 2020;69(1):63-73.","[603, 451, 1081, 538]",reference_item,0.85,"[""reference content label: 64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects c""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,19,reference_content,"65. Yuan J, Xin F, Jiang W. Underlying signaling pathways and therapeutic applications of pulsed electromagnetic fields in bone repair. Cell Physiol Biochem. 2018;46(4):1581-94.","[603, 542, 1082, 607]",reference_item,0.85,"[""reference content label: 65. Yuan J, Xin F, Jiang W. Underlying signaling pathways an""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,20,reference_content,"66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The use of pulsed electromagnetic field to modulate inflammation and improve tissue regeneration: a review. Bioelectricity. 2019;1(4):247-59.","[604, 610, 1082, 696]",reference_item,0.85,"[""reference content label: 66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The us""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,21,reference_content,"67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Signal transduction in electrically stimulated bone cells. J Bone Joint Surg Am. 2001;83(10):1514-23.","[602, 701, 1082, 765]",reference_item,0.85,"[""reference content label: 67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Sign""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,22,reference_content,"68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. Stimulation of growth factor synthesis by electric and electromagnetic fields. Clin Orthop Relat Res. 2004;419:30-7.","[604, 768, 1082, 834]",reference_item,0.85,"[""reference content label: 68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. St""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,23,reference_content,"69. de Girolamo L, Stanco D, Galliera E, Viganò M, Colombini A, Setti S, et al. Low frequency pulsed electromagnetic field affects proliferation, tissue-specific gene expression, and cytokines release","[604, 837, 1082, 945]",reference_item,0.85,"[""reference content label: 69. de Girolamo L, Stanco D, Galliera E, Vigan\u00f2 M, Colombini""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
13,24,reference_content,"70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, Chang EI, et al. Osteoblasts stimulated with pulsed electromagnetic fields increase HUVEC proliferation via a VEGF-A independent mechanism. B","[603, 949, 1083, 1058]",reference_item,0.85,"[""reference content label: 70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header Exosome Research [93, 76, 240, 99] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 doc_title The Effect of Different Frequencies of Pulsed Electromagnetic Fields on Cartilage Repair of Adipose Mesenchymal Stem Cell-Derived Exosomes in Osteoarthritis [91, 138, 825, 297] paper_title 0.8 ["page-1 zone title_zone: The Effect of Different Frequencies of Pulsed Electromagneti"] paper_title 0.8 frontmatter_main_zone support_like none True True
4 1 2 text CARTILAGE 2022, Vol. 13(4) 200–212 © The Author(s) 2022 DOI: 10.1177/19476035221137726 journals.sagepub.com/home/CAR SAGE [858, 118, 1070, 232] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: CARTILAGE\n2022, Vol. 13(4) 200\u2013212\n\u00a9 The Author(s) 2022\nDOI:"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
5 1 3 text Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wang $ ^{1,2,3} $, Xiao-Na Xiang $ ^{1,2,3} $, Jia-Lei Peng $ ^{1,2,3} $, Cheng-Qi He $ ^{1,2,3} $ $ ^{ID} $, and Hong-Chen He $ ^{1,2,3} $ $ [88, 353, 878, 414] authors 0.8 ["page-1 zone author_zone: Yang Xu $ ^{1,2,3*} $, Qian Wang $ ^{1,2,3*} $, Xiang-Xiu Wa"] authors 0.8 frontmatter_main_zone support_like none True True
6 1 4 paragraph_title Abstract [90, 471, 183, 493] abstract_heading 0.95 ["abstract heading"] abstract_heading 0.95 frontmatter_main_zone heading_like short_fragment True True
7 1 5 abstract Background. The intra-articular injection of mesenchymal stem cell (MSC)-derived exosomes has already been proved to reverse osteoarthritic cartilage degeneration. Pulsed electromagnetic field (PEMF) [87, 496, 1085, 1024] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
8 1 6 paragraph_title Keywords [91, 1057, 193, 1079] structured_insert 0.9 ["frontmatter noise: Keywords"] frontmatter_noise 0.9 frontmatter_main_zone heading_like short_fragment False False
9 1 7 text adipose mesenchymal stem cell, exosomes, pulsed electromagnetic fields, osteoarthritis, cartilage repair [89, 1081, 940, 1106] frontmatter_noise 0.7 ["keyword-like block: adipose mesenchymal stem cell, exosomes, pulsed electromagne"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
10 1 8 paragraph_title Introduction [92, 1143, 240, 1167] section_heading 0.9 ["explicit scholarly heading: Introduction"] section_heading 0.9 body_zone heading_like canonical_section_name True True
11 1 9 text Osteoarthritis (OA) is a prevalent chronic inflammatory disease worldwide, with a strong impact on individual health. $ ^{1-4} $ OA is characterized by pathology involving the whole joint, including c [89, 1181, 575, 1399] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
12 1 10 footnote ¹Rehabilitation Medicine Centre, West China Hospital, Sichuan University, Chengdu, P.R. China ²School of Rehabilitation Sciences, West China School of Medicine, Sichuan University, Chengdu, P.R. China [599, 1164, 1074, 1296] footnote 0.7 ["footnote label: \u00b9Rehabilitation Medicine Centre, West China Hospital, Sichua"] footnote 0.7 body_zone body_like none True True
13 1 11 footnote $ ^{*} $Yang Xu and Qian Wang contributed equally to the work. [601, 1284, 995, 1305] footnote 0.7 ["footnote label: $ ^{*} $Yang Xu and Qian Wang contributed equally to the wor"] footnote 0.7 body_zone body_like affiliation_marker True True
14 1 12 footnote Corresponding Author: Hong-Chen He, Rehabilitation Medicine Centre, West China Hospital, Sichuan University, Chengdu 610041, Sichuan, P.R. China. Email: hxkfhhc@126.com [599, 1316, 1069, 1397] frontmatter_support 0.75 ["page-1 correspondence footnote: Corresponding Author:\nHong-Chen He, Rehabilitation Medicine "] frontmatter_support 0.75 body_zone body_like none True True
15 1 13 footer Creative Commons Non Commercial CC BY-NC: This article is distributed under the terms of the Creative Commons Attribution-NonCommercial 4.0 License (https://creativecommons.org/licenses/by-nc/4.0/) wh [91, 1443, 1072, 1522] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
16 2 0 header Xu et al. [122, 81, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
17 2 1 number 201 [1077, 80, 1110, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
18 2 2 text investigated to overcome the current limitations of cell-based therapies, such as immune responses, deterioration of stem cells' intrinsic activity, or variation by age of cell donors. $ ^{9-11} $ [119, 134, 606, 229] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
19 2 3 text In this case, exosomes could deliver a variety of biological signals including protein, cytokines, and microRNA (miRNA), which are derived from the source stem cells. It could be reasonably expected t [119, 231, 605, 589] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
20 2 4 text Pulsed electromagnetic field (PEMF) has been clinically used in the treatment of OA. $ ^{20} $ Also, PEMF treatment increased bone and cartilage formation, and decreased bone and cartilage resorption [119, 590, 605, 878] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 2 5 text However, the effect of PEMF with different frequencies on MSC-derived exosomes in osteoarthritic cartilage has still been unknown. Therefore, this study aimed to explore the regulatory effect of PEMF [119, 878, 605, 1073] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
22 2 6 paragraph_title Materials and Methods Ethics Statement [121, 1104, 385, 1170] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Materials and Methods Ethics Statement"] subsection_heading 0.6 body_zone support_like none True True
23 2 7 footer [121, 1143, 284, 1170] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
24 2 8 text This study was conducted under the approval of the Animal Ethical Committee of West China Hospital, Sichuan University. All animal care and surgical techniques strictly complied with the Declaration o [120, 1182, 604, 1281] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 2 9 paragraph_title In Vitro Study [121, 1310, 253, 1337] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: In Vitro Study"] subsection_heading 0.6 body_zone heading_like short_fragment True True
26 2 10 text Isolation and characterization of rat adipose mesenchymal stem cells. Adipose mesenchymal stem cells (AMSCs) were isolated from 3-week-old healthy Sprague-Dawley rats' epididymal fat (n = 2, provided [119, 1348, 605, 1422] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
27 2 11 text [628, 140, 1114, 452] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
28 2 12 text For determining the multipotent differentiation capabilities of rat AMSCs, including osteogenic, adipogenic, and chondrogenic differentiation, AMSCs were cultured in the following medium types: (1) os [627, 451, 1115, 1103] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
29 2 13 text PEMF stimulates MSC-derived exosomes. Rat MSCs (P3-P6) were cultured in low-glucose DMEM (Gibco, USA) when cell confluence reached 80% to 90%. The custom-designed PEMF exposure system comprises a wave [628, 1133, 1115, 1425] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 3 0 number 202 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
31 3 1 header CARTILAGE 13(4) [940, 80, 1082, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
32 3 2 image [100, 159, 1049, 912] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
33 3 3 figure_title Figure I. PEMF modulates AMSC-derived exosomes in the incubator. PEMF = pulsed electromagnetic field; AMSC = adipose tissue-derived MSC. [90, 952, 620, 995] figure_caption 0.85 ["figure_title label: Figure I. PEMF modulates AMSC-derived exosomes in the incuba"] figure_caption 0.85 reference_like citation_line True True
34 3 4 text contained inside the cylindrical electromagnetic coil seal, embedded in the middle of the constant temperature incubator. MSC cells were cultured in pure low-glucose DMEM before being exposed to PEMF [89, 1029, 573, 1269] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
35 3 5 text Isolation and characterization of MSC-derived exosomes. MSCs were cultured in pure low-glucose DMEM for 48 hours to collect the conditioned medium. The supernatant was then centrifuged at 120,000g at [89, 1293, 574, 1415] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
36 3 6 text [599, 1029, 1084, 1100] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
37 3 7 text The exosome morphology was observed under 100-kV transmission electron microscopy (TEM; HITACHI H-7000FA, Japan). The particle size distribution of exosomes was analyzed by Zetaview (Particle Metrix, [599, 1101, 1084, 1270] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
38 3 8 text Primary culture of chondrocytes and in vitro model of OA-like chondrocytes. Rat chondrocytes were isolated from 1-week-old Sprague-Dawley rats' ribs (n = 2, provided by the Chengdu Dossy Experimental [598, 1293, 1085, 1415] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
39 4 0 header Xu et al. [122, 81, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
40 4 1 number 203 [1077, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
41 4 2 figure_title Table I. Primer Sequences and Mapleton Sizes for Quantitative Polymerase Chain Reaction. [121, 133, 603, 178] table_caption 0.9 ["table prefix matched: Table I. Primer Sequences and Mapleton Sizes for Quantitativ"] table_caption 0.9 display_zone table_caption_like table_number True True
42 4 3 table <table><tr><td>Genes</td><td>Primer Sequence (5′-3′)</td></tr><tr><td>MMP13</td><td>F: 5′-AGCAGGTTGAGCCTGAACTGT-3′ R: 5′-GCAGCACTGAGCCTTTTCACC-3′</td></tr><tr><td>COL2A1</td><td>F: 5′-GCCCAACTGGCAAACA [120, 184, 592, 495] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
43 4 4 text cultured with DMEM/F-12 medium containing 10% FBS, 100 U/ml penicillin, and 100 U/ml streptomycin (Gibco). The medium was changed every 3 days. For all experiments described, the chondrocytes in monol [120, 537, 603, 658] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
44 4 5 text For the in vitro model of OA-like chondrocytes, chondrocytes were induced to express an OA-like phenotype by interleukin (IL)-1 $ \beta $ treatment (Cyagen Biosciences Inc.). Briefly, IL-1 $ \beta $ ( [120, 658, 603, 779] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
45 4 6 text MSC-derived exosome uptake in vitro. Exosomes were labeled using the red fluorescent dye 3,3'-dioctadecyloxacarbocyanine perchlorate (DiO) according to the manufacturer's instructions (Cyagen Bioscien [120, 802, 605, 1117] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
46 4 7 text Real-time RT-qPCR. Total RNA was extracted from cells using the Total Exosome Isolation Reagent (Invitrogen, USA), followed by reverse transcription to generate the first-strand cDNA using the PrimeSc [119, 1138, 604, 1429] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
47 4 8 text [628, 134, 1115, 471] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
48 4 9 text Western blot. Passage 2-4 chondrocytes were used for protein extraction. Briefly, chondrocytes were washed with PBS 3 times and lysed with radioimmunoprecipitation assay (RIPA) lysis buffer (Beyotime, [628, 495, 1115, 1001] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
49 4 10 paragraph_title In Vivo Study [631, 1032, 764, 1058] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: In Vivo Study"] subsection_heading 0.6 body_zone heading_like short_fragment True True
50 4 11 text The rat model of OA and experimental design. Thirty-nine 8-week-old male SD rats (provided by the Chengdu Dossy Experimental Animals Company) were anesthetized with 2.5% to 3% isoflurane. Twenty-seven [629, 1070, 1115, 1433] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 5 0 number 204 [93, 80, 130, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
52 5 1 header CARTILAGE 13(4) [940, 79, 1083, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
53 5 2 text EXO group; n = 7, OA + 75 Hz EXO group) (AMSC-derived exosomes exposed to PEMF were injected with the same concentration), while intra-articular injection of 10 μl of normal PBS was performed in the O [88, 138, 575, 334] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
54 5 3 text Micro-CT imaging study. At 8 weeks of treatment, rats were sacrificed and the distal part of the femur and the proximal part of the tibia were cut with a blunt scissor to acquire knee joint tissues. M [88, 360, 575, 627] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
55 5 4 text Histological staining and immunohistochemistry. At 8 weeks of treatment, the rats were sacrificed and articular cartilage samples were collected. After fixation with paraformaldehyde for 24 hours and [89, 650, 575, 1156] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
56 5 5 text For immunohistochemistry (IHC), the deparaffinized sections were soaked in EDTA (pH 9.0) for antigen retrieval by a microwave method. The sections were placed in a 3% hydrogen peroxide solution and in [89, 1156, 574, 1446] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
57 5 6 paragraph_title Statistical Analysis [601, 133, 774, 161] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis"] subsection_heading 0.6 body_zone heading_like none True True
58 5 7 text Data are expressed as mean ± standard deviation (SD). Repeated measures were analyzed by repeated-measures analysis of variance (ANOVA) with Bonferroni post hoc analysis. The other data were analyzed [599, 171, 1085, 366] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
59 5 8 paragraph_title Results Characterization of AMSCs and AMSC-Derived Exosomes [600, 396, 1034, 492] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Results Characterization of AMSCs and AMSC-Derived Exosomes"] subsection_heading 0.6 body_zone heading_like none True True
60 5 9 footer [600, 436, 1034, 492] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
61 5 10 text The AMSCs were extracted from the rat adipose tissue. Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and CD45 (Fig. 2A) [599, 503, 1084, 672] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
62 5 11 text For exosome preparation, 200 ml of AMSC-conditioned medium was centrifuged, and 50 µg of exosomes can be purified. The dynamic light-scattering measurement indicated that the mean size of AMSC-derived [597, 672, 1085, 939] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
63 5 12 paragraph_title PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes [599, 964, 1036, 1021] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF-Exposed AMSC-Derived Exosomes Could Enter Chondrocytes"] subsection_heading 0.6 body_zone heading_like none True True
64 5 13 text To investigate whether PEMF-exposed AMSC-derived exosomes could enter chondrocytes through co-culture, exosomes stained with DiO were co-cultured with chondrocytes, and 24 hours later chondrocytes wer [598, 1031, 1085, 1273] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 5 14 paragraph_title PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Inflammation [599, 1301, 999, 1386] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF Enhanced the Inhibitory Effect of AMSC-Derived Exosomes"] subsection_heading 0.6 body_zone heading_like none True True
66 5 15 text Next, to evaluate whether PEMF at different frequencies could modulate the effect of AMSC-derived exosomes on [598, 1395, 1085, 1446] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 6 0 header Xu et al. [123, 81, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
68 6 1 number 205 [1077, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
69 6 2 figure_title A [164, 165, 189, 190] figure_inner_text 0.9 ["panel label / figure inner text: A"] figure_inner_text 0.9 display_zone legend_like panel_label True True
70 6 3 chart [164, 194, 603, 369] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
71 6 4 chart [616, 195, 1056, 369] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
72 6 5 chart [166, 384, 601, 558] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
73 6 6 chart [617, 382, 1057, 558] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
74 6 7 figure_title B [166, 573, 187, 596] figure_inner_text 0.9 ["panel label / figure inner text: B"] figure_inner_text 0.9 display_zone legend_like panel_label True True
75 6 8 image [167, 600, 1062, 827] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
76 6 9 figure_title C [165, 843, 190, 869] figure_inner_text 0.9 ["panel label / figure inner text: C"] figure_inner_text 0.9 display_zone legend_like panel_label True True
77 6 10 chart [161, 859, 481, 1102] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
78 6 11 figure_title D [500, 843, 523, 869] figure_inner_text 0.9 ["panel label / figure inner text: D"] figure_inner_text 0.9 display_zone legend_like panel_label True True
79 6 12 image [498, 869, 805, 1096] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
80 6 13 figure_title E [838, 842, 861, 869] figure_inner_text 0.9 ["panel label / figure inner text: E"] figure_inner_text 0.9 display_zone legend_like panel_label True True
81 6 14 image [816, 842, 1094, 1119] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
82 6 15 figure_title Figure 2. Characterization of AMSCs and AMSC-derived exosomes. (A) Flow cytometry analysis showed that AMSCs were positive for mesenchymal markers, including CD44 and CD90, but negative for CD34 and C [119, 1146, 1108, 1292] figure_caption 0.92 ["figure_title label: Figure 2. Characterization of AMSCs and AMSC-derived exosome"] figure_caption 0.92 display_zone legend_like figure_number True True
83 6 16 text IL-1β-induced chondrocyte inflammation, the expressions of common inflammation factors in OA (matrix metalloproteinase 13 [MMP13], caspase-1, and IL-1) were assessed in IL-1β-treated chondrocytes. As [120, 1328, 604, 1426] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
84 6 17 text [628, 1333, 1116, 1432] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
85 7 0 number 206 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
86 7 1 header CARTILAGE 13(4) [940, 80, 1083, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
87 7 2 image [132, 162, 300, 351] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
88 7 3 image [302, 166, 467, 351] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
89 7 4 image [470, 165, 637, 350] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
90 7 5 figure_title C [653, 164, 675, 188] figure_inner_text 0.9 ["panel label / figure inner text: C"] figure_inner_text 0.9 display_zone legend_like panel_label True True
91 7 6 chart [659, 203, 833, 329] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
92 7 7 figure_title B [135, 358, 154, 380] figure_inner_text 0.9 ["panel label / figure inner text: B"] figure_inner_text 0.9 display_zone legend_like panel_label True True
93 7 8 chart [842, 206, 1012, 327] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
94 7 9 chart [137, 380, 302, 559] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
95 7 10 chart [313, 380, 473, 558] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
96 7 11 chart [484, 380, 642, 560] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
97 7 12 chart [661, 404, 832, 529] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
98 7 13 chart [840, 380, 1046, 516] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
99 7 14 chart [153, 579, 309, 755] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
100 7 15 figure_title D [652, 547, 673, 571] figure_inner_text 0.9 ["panel label / figure inner text: D"] figure_inner_text 0.9 display_zone legend_like panel_label True True
101 7 16 chart [318, 579, 472, 753] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
102 7 17 chart [658, 583, 1046, 749] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
103 7 18 figure_title Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL-1β-induced downregulation of anabolic markers and upregulation of catabolic markers in cartilage degradation. (A) Immunofluorescence staini [90, 802, 1078, 969] figure_caption 0.92 ["figure_title label: Figure 3. PEMF-regulated AMSC-derived exosomes attenuated IL"] figure_caption 0.92 display_zone legend_like figure_number True True
104 7 19 text attenuated IL-1 $ \beta $-induced changes in the expression of these genes (P < 0.01 except for MMP13 in OA + EXO group). And PEMF-exposed AMSC-derived exosomes had a substantially better attenuation [89, 1003, 575, 1218] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
105 7 20 text Western blot (Fig. 3C) also demonstrated that IL-1β induction significantly upregulated the expression of IL-1 (P < 0.01) and caspase-1 (P < 0.01) proteins. And the treatment of AMSC-derived exosomes [89, 1220, 575, 1437] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
106 7 21 paragraph_title PEMF Promoted the Suppression Effect of AMSC-Derived Exosomes on IL-1 $ \beta $-Induced Chondrocyte Matrix Degeneration [599, 1003, 998, 1087] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF Promoted the Suppression Effect of AMSC-Derived Exosome"] subsection_heading 0.6 body_zone heading_like none True True
107 7 22 text In addition, to investigate whether PEMF could modulate the effect of AMSC-derived exosomes on IL-1β-induced reduction in chondrocyte matrix synthesis, the expressions of common anabolic markers (COL2 [600, 1098, 1087, 1436] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
108 8 0 header Xu et al. [122, 80, 195, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
109 8 1 number 207 [1077, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
110 8 2 text ACAN (P < 0.01), and SOX9 (P < 0.01) mRNA expressions. Also, compared with PEMF at 15 and 45 Hz, the 75-Hz PEMF-exposed AMSC-derived exosomes upregulated the expression of COL2A1 (P < 0.05), ACAN (P < [120, 139, 603, 260] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
111 8 3 text In addition, ELISA (Fig. 3D) also demonstrated that AMSC-derived exosomes (1 × 10⁸ particles/ml) significantly attenuated IL-1β-induced low expression of COL2A1 proteins (P < 0.01). Meanwhile, ELISA ( [119, 261, 605, 478] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
112 8 4 paragraph_title PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Damage in ACLT-Induced Experimental OA Rats [119, 508, 529, 593] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: PEMF-Stimulated AMSC-Derived Exosomes Alleviate Cartilage Da"] subsection_heading 0.6 body_zone heading_like none True True
113 8 5 text Given that OA was always accompanied by cartilage defects, we hypothesized that AMSC-derived exosomes exposed to PEMF could alleviate the progression of OA via inducing chondrocyte matrix synthesis. I [119, 604, 605, 916] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
114 8 6 text Eight weeks after the model was established, the knee joint specimens of animals were collected for micro-CT imaging studies (Fig. 4A) and H&E staining (Fig. 4B). The micro-CT images displayed that in [117, 916, 607, 1469] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
115 8 7 text [629, 134, 1114, 349] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
116 8 8 text To further clarify the relationship between COL2A1, ACAN, and extracellular matrix (ECM), IHC staining of COL2A1 and ACAN was performed in the knee cartilage layer of the in vivo knee joint OA model. [628, 350, 1115, 593] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
117 8 9 paragraph_title Discussion [630, 629, 757, 655] section_heading 0.9 ["explicit scholarly heading: Discussion"] section_heading 0.9 body_zone heading_like canonical_section_name True True
118 8 10 text In the present study, we investigated the regulatory effect of PEMF with different frequencies on osteoarthritic cartilage regeneration of AMSC-derived exosomes. The in vitro study showed that the PEM [628, 668, 1115, 932] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
119 8 11 text Previously it has been shown that PEMF could affect biological functions via the production of coherent or interfering fields that modify fundamental electromagnetic fields generated by living organis [628, 933, 1115, 1463] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
120 9 0 number 208 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
121 9 1 header CARTILAGE 13(4) [940, 80, 1082, 104] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
122 9 2 image [109, 149, 1058, 891] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
123 9 3 figure_title Figure 4. PEMF-regulated AMSC-derived exosomes alleviate cartilage damage in ACLT-induced experimental osteoarthritis rats. (A) The micro-CT image of the transverse section of the epiphyseal proximal [92, 920, 1077, 1048] figure_caption 0.92 ["figure_title label: Figure 4. PEMF-regulated AMSC-derived exosomes alleviate car"] figure_caption 0.92 display_zone legend_like figure_number True True
124 9 4 figure_title PEMF = pulsed electromagnetic field; AMSC = adipose tissue derived MSC; ACLT = anterior cruciate ligament transaction; OARSI = Osteoarthritis Research Society International; OA = osteoarthritis. [91, 1046, 1073, 1086] figure_caption_candidate 0.85 ["figure_title label: PEMF = pulsed electromagnetic field; AMSC = adipose tissue d"] figure_caption 0.85 legend_like none False False
125 9 5 text the 3D culture of rat bone marrow MSCs. $ ^{16,23,38} $ In addition, PEMF could potentiate MSCs' anti-inflammatory responses. $ ^{31} $ In this study, the enhanced effect of PEMF on AMSC-derived exoso [89, 1121, 574, 1289] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
126 9 6 text Cytokines secreted by immune cells are the main players of OA. IL-1β drives the inflammatory cascade independently or in collaboration with other cytokines, and has been used to trigger inflammation i [88, 1290, 574, 1434] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
127 9 7 text [598, 1120, 1087, 1435] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
128 10 0 header Xu et al. [122, 80, 195, 103] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
129 10 1 number 209 [1076, 80, 1112, 102] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
130 10 2 text low-frequency PEMF in ameliorating the deterioration of bone microarchitecture in ovariectomized (OVX) mice, and the inhibitory effect of PEMF may be associated with IL-1β inhibition. $ ^{[31,50]} $ T [119, 134, 605, 422] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
131 10 3 text Moreover, IL-1β interferes with the production of essential structural proteins, including SOX9, collagen type II, and aggrecan, by influencing the activity of chondrocytes in the joint. $ ^{[51,52]} [119, 423, 605, 806] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
132 10 4 text Previously it has been shown that the inflammatory progression of OA could be alleviated by MSCs, which is associated with the multiple miRNAs and long non-coding RNAs (lncRNAs) capsulated in exosomes [118, 807, 606, 1408] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
133 10 5 text [628, 133, 1114, 302] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
134 10 6 text In particular, as demonstrated by Brighton et al.,⁶⁷ PEMF determines signal transduction through the intracellular release of Ca²⁺, leading to an increase in cytosolic Ca²⁺ and an increase in activate [628, 301, 1115, 854] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
135 10 7 text There are still some limitations to this study. First, on the basis of in vitro experiments, 75-Hz PEMF stimulation was found to have superior effect on AMSC-derived exosomes. Thus, in the in vivo stu [628, 856, 1115, 1168] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
136 10 8 paragraph_title Conclusion [630, 1199, 765, 1225] section_heading 0.9 ["explicit scholarly heading: Conclusion"] section_heading 0.9 body_zone heading_like canonical_section_name True True
137 10 9 text In the present study, PEMF-exposed AMSC-derived exosomes could significantly inhibit the degeneration and inflammation of osteoarthritic cartilage. Compared with other frequency parameters, the PEMF a [628, 1238, 1115, 1408] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
138 11 0 number 210 [93, 80, 129, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
139 11 1 header CARTILAGE 13(4) [941, 80, 1082, 103] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
140 11 2 text osteoarthritic cartilage degeneration. These findings laid a foundation for the regulatory mechanism of PEMF stimulation on MSC-derived exosomes and opened up a new direction for enhancing the therape [91, 134, 573, 254] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
141 11 3 paragraph_title Author Contributions [92, 279, 304, 300] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Author Contributions"] subsection_heading 0.6 body_zone support_like none True True
142 11 4 text Yang Xu: Conceptualization, Methodology, Data curation, Formal analysis, Writing—original draft, Writing—review & editing. Qian Wang: Conceptualization, Methodology, Data curation, Formal analysis, Fu [90, 309, 573, 554] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
143 11 5 paragraph_title Acknowledgments and Funding [92, 577, 395, 600] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Acknowledgments and Funding"] subsection_heading 0.6 body_zone heading_like none True True
144 11 6 text The author(s) disclosed receipt of the following financial support for the research, authorship, and/or publication of this article: This work was supported by grants from the National Natural Science [91, 608, 573, 697] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
145 11 7 paragraph_title Declaration of Conflicting Interests [92, 721, 428, 744] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Declaration of Conflicting Interests"] backmatter_boundary_candidate 0.5 body_zone heading_like none True True
146 11 8 text The author(s) declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article. [91, 752, 572, 817] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
147 11 9 paragraph_title Ethical Approval [93, 852, 254, 876] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Ethical Approval"] subsection_heading 0.6 body_zone heading_like short_fragment True True
148 11 10 text This study protocol was approved by the Animal Ethics Committee of the West China Hospital of Sichuan University (Sichuan, China; approval no. 2020350A). [91, 884, 572, 950] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
149 11 11 paragraph_title ORCID iDs [92, 976, 203, 998] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: ORCID iDs"] subsection_heading 0.6 body_zone heading_like short_fragment True True
150 11 12 text Cheng-Qi He https://orcid.org/0000-0002-5349-0571 Hong-Chen He https://orcid.org/0000-0003-4635-6769 [90, 1007, 523, 1061] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 11 13 paragraph_title References [93, 1091, 204, 1113] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone heading_like short_fragment True True
152 11 14 reference_content 1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiology, risk factors and disease outcomes of osteoarthritis. Best Pract Res Clin Rheumatol. 2018;32(2):312-26. [103, 1123, 571, 1186] reference_item 0.85 ["reference content label: 1. O'Neill TW, McCabe PS, McBeth J. Update on the epidemiolo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
153 11 15 reference_content 2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literature update. Curr Opin Rheumatol. 2018;30(2):160-7. [102, 1189, 570, 1231] reference_item 0.85 ["reference content label: 2. Vina ER, Kwoh CK. Epidemiology of osteoarthritis: literat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
154 11 16 reference_content 3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan YZ, Fauzi MB. Mesenchymal stem cells: current concepts in the management of inflammation in osteoarthritis. Biomedicines. 2021;9(7):785. doi [103, 1233, 571, 1338] reference_item 0.85 ["reference content label: 3. Nurul AA, Azlan M, Ahmad Mohd Zain MR, Sebastian AA, Fan "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
155 11 17 reference_content 4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State of the art: the immunomodulatory role of MSCs for osteoarthritis. Int J Mol Sci. 2022;23(3):1618. doi:10.3390/ijms23031618. [102, 1343, 572, 1428] reference_item 0.85 ["reference content label: 4. Kwon DG, Kim MK, Jeon YS, Nam YC, Park JS, Ryu DJ. State "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
156 11 18 reference_content 5. Bortoluzzi A, Furini F, Scirè CA. Osteoarthritis and its management: epidemiology, nutritional aspects and environmental factors. Autoimmun Rev. 2018;17(11):1097-104. [611, 135, 1082, 200] reference_item 0.85 ["reference content label: 5. Bortoluzzi A, Furini F, Scir\u00e8 CA. Osteoarthritis and its "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
157 11 19 reference_content 6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of hip and knee osteoarthritis: a review. Jama. 2021;325(6):568-78. [612, 202, 1083, 245] reference_item 0.85 ["reference content label: 6. Katz JN, Arant KR, Loeser RF. Diagnosis and treatment of "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
158 11 20 reference_content 7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, Block J, et al. 2019 American College of Rheumatology/Arthritis Foundation guideline for the management of osteoarthritis of the hand, hip, a [613, 247, 1083, 354] reference_item 0.85 ["reference content label: 7. Kolasinski SL, Neogi T, Hochberg MC, Oatis C, Guyatt G, B"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
159 11 21 reference_content 8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu E, et al. Alternative and complementary therapies in osteoarthritis and cartilage repair. Aging Clin Exp Res. 2020;32(4):547-60. [612, 357, 1082, 444] reference_item 0.85 ["reference content label: 8. Fuggle NR, Cooper C, Oreffo ROC, Price AJ, Kaux JF, Maheu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
160 11 22 reference_content 9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strategies for cartilage defects and osteoarthritis. Curr Opin Pharmacol. 2018;40:74-80. [610, 448, 1081, 510] reference_item 0.85 ["reference content label: 9. De Bari C, Roelofs AJ. Stem cell-based therapeutic strate"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
161 11 23 reference_content 10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mesenchymal stem cells in knee osteoarthritis treatment: A systematic review and meta-analysis. J Orthop Transl. 2020;24:p121-30. [605, 515, 1081, 599] reference_item 0.85 ["reference content label: 10. Song Y, Zhang J, Xu H, Lin Z, Chang H, Liu W, et al. Mes"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
162 11 24 reference_content 11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem cell related therapies for cartilage lesions and osteoarthritis. Am J Transl Res. 2019;11(10):6275-89. [605, 604, 1082, 667] reference_item 0.85 ["reference content label: 11. Zhang R, Ma J, Han J, Zhang W, Ma J. Mesenchymal stem ce"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
163 11 25 reference_content 12. Bao C, He C. The role and therapeutic potential of MSC-derived exosomes in osteoarthritis. Arch Biochem Biophys. 2021;710:109002. [605, 671, 1081, 733] reference_item 0.85 ["reference content label: 12. Bao C, He C. The role and therapeutic potential of MSC-d"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
164 11 26 reference_content 13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exosomes for effective cartilage tissue repair and treatment of osteoarthritis. Biotechnol J. 2020;15(12):e2000082. [605, 738, 1083, 801] reference_item 0.85 ["reference content label: 13. Kim YG, Choi J, Kim K. Mesenchymal stem cell-derived exo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
165 11 27 reference_content 14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-free MSC therapy for cartilage regeneration: Implications for osteoarthritis treatment. Semin Cell Dev Biol. 2017;67:56-64. [605, 804, 1083, 868] reference_item 0.85 ["reference content label: 14. Toh WS, Lai RC, Hui JHP, Lim SK. MSC exosome as a cell-f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
166 11 28 reference_content 15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar K, Kumari U, et al. Mesenchymal stem cell-derived extracellular vesicles: regenerative potential and challenges. Biology (Basel). 2021;10(3) [605, 872, 1082, 957] reference_item 0.85 ["reference content label: 15. Fuloria S, Subramaniyan V, Dahiya R, Dahiya S, Sudhakar "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
167 11 29 reference_content 16. Parate D, Franco-Obregón A, Fröhlich J, Beyer C, Abbas AA, Kamarul T, et al. Enhancement of mesenchymal stem cell chondrogenesis with short-term low intensity pulsed electromagnetic fields. Sci Re [605, 962, 1082, 1046] reference_item 0.85 ["reference content label: 16. Parate D, Franco-Obreg\u00f3n A, Fr\u00f6hlich J, Beyer C, Abbas A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
168 11 30 reference_content 17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP, Herbert BR. Priming adipose-derived mesenchymal stem cells with hyaluronan alters growth kinetics and increases attachment to articular car [605, 1051, 1082, 1157] reference_item 0.85 ["reference content label: 17. Succar P, Medynskyj M, Breen EJ, Batterham T, Molloy MP,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
169 11 31 reference_content 18. Rando TA, Ambrosio F. Regenerative rehabilitation: applied biophysics meets stem cell therapeutics. Cell Stem Cell. 2018;22(3):306-9. [605, 1161, 1081, 1225] reference_item 0.85 ["reference content label: 18. Rando TA, Ambrosio F. Regenerative rehabilitation: appli"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
170 11 32 reference_content 19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. Understanding mechanobiology: physical therapists as a force in mechanotherapy and musculoskeletal regenerative rehabilitation. Phys Ther. 20 [605, 1229, 1082, 1313] reference_item 0.85 ["reference content label: 19. Thompson WR, Scott A, Loghmani MT, Ward SR, Warden SJ. U"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
171 11 33 reference_content 20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed electromagnetic field therapy on pain, stiffness, physical function, and quality of life in patients with osteoarthritis: a systematic review [604, 1317, 1083, 1426] reference_item 0.85 ["reference content label: 20. Yang X, He H, Ye W, Perry TA, He C. Effects of pulsed el"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
172 12 0 header Xu et al. [123, 81, 194, 103] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
173 12 1 number 211 [1077, 81, 1111, 102] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
174 12 2 reference_content 21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Pulsed electromagnetic field at different stages of knee osteoarthritis in rats induced by low-dose monosodium iodoacetate: Effect on subchondra [123, 134, 602, 263] reference_item 0.85 ["reference content label: 21. Yang X, He H, Zhou Y, Zhou Y, Gao Q, Wang P, et al. Puls"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
175 12 3 reference_content 22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al. Magnetic enhancement of chondrogenic differentiation of mesenchymal stem cells. ACS Biomater Sci Eng. 2019;5(5):2200-7. [124, 267, 601, 352] reference_item 0.85 ["reference content label: 22. Huang J, Liang Y, Huang Z, Zhao P, Liang Q, Liu Y, et al"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
176 12 4 reference_content 23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obregón A, et al. Pulsed electromagnetic fields potentiate the paracrine function of mesenchymal stem cells for cartilage regeneration. Stem Ce [124, 355, 602, 441] reference_item 0.85 ["reference content label: 23. Parate D, Kadir ND, Celik C, Lee EH, Hui JHP, Franco-Obr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
177 12 5 reference_content 24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel T, Park CH, et al. Electromagnetic manipulation enabled calcium alginate Janus microsphere for targeted delivery of mesenchymal stem cells. [124, 444, 603, 528] reference_item 0.85 ["reference content label: 24. Thomas RG, Unnithan AR, Moon MJ, Surendran SP, Batgerel "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
178 12 6 reference_content 25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shuttled by adipose tissue-derived mesenchymal stem cell-derived extracellular vesicles suppresses myocardial pyroptosis in atrial fibrillation [125, 531, 603, 638] reference_item 0.85 ["reference content label: 25. Yan B, Liu T, Yao C, Liu X, Du Q, Pan L. LncRNA XIST shu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
179 12 7 reference_content 26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte proliferation, apoptosis and autophagy through the PI3K/AKT/mTOR signaling pathway in rat models with rheumatoid arthritis. Biomed Pharmacothe [124, 642, 602, 726] reference_item 0.85 ["reference content label: 26. Feng FB, Qiu HY. Effects of Artesunate on chondrocyte pr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
180 12 8 reference_content 27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI histopathology initiative: recommendations for histological assessments of osteoarthritis in the rat. Osteoarthritis Cartilage. 2010;18(Suppl [124, 729, 602, 814] reference_item 0.85 ["reference content label: 27. Gerwin N, Bendele AM, Glasson S, Carlson CS. The OARSI h"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
181 12 9 reference_content 28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Brink P, Christ GJ, et al. The effect of low-frequency electromagnetic field on human bone marrow stem/progenitor cell differentiation. Stem Ce [124, 818, 602, 902] reference_item 0.85 ["reference content label: 28. Ross CL, Siriwardane M, Almeida-Porada G, Porada CD, Bri"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
182 12 10 reference_content 29. Trock DH. Electromagnetic fields and magnets. Investigational treatment for musculoskeletal disorders. Rheum Dis Clin North Am. 2000;26(1):51-62. [124, 906, 602, 968] reference_item 0.85 ["reference content label: 29. Trock DH. Electromagnetic fields and magnets. Investigat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
183 12 11 reference_content 30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, Puvanakrishnan R. Low frequency pulsed electromagnetic field: a viable alternative therapy for arthritis. Indian J Exp Biol. 2009;47(12):939- [124, 972, 602, 1056] reference_item 0.85 ["reference content label: 30. Ganesan K, Gengadharan AC, Balachandran C, Manohar BM, P"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
184 12 12 reference_content 31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal stromal cells/pericytes (MSCs) with pulsed electromagnetic field (PEMF) has the potential to treat rheumatoid arthritis. Front Immunol. 201 [124, 1059, 602, 1143] reference_item 0.85 ["reference content label: 31. Ross CL, Ang DC, Almeida-Porada G. Targeting mesenchymal"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
185 12 13 reference_content 32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et al. Electromagnetic fields enhance chondrogenesis of human adipose-derived stem cells in a chondrogenic microenvironment in vitro. J Appl P [124, 1146, 602, 1253] reference_item 0.85 ["reference content label: 32. Chen CH, Lin Y-S, Fu Y-C, Wang C-K, Wu S-C, Wang G-J, et"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
186 12 14 reference_content 33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina L, De Angelis MG, et al. A comparative analysis of the in vitro effects of pulsed electromagnetic field treatment on osteogenic differentiat [124, 1257, 602, 1364] reference_item 0.85 ["reference content label: 33. Ceccarelli G, Bloise N, Mantelli M, Gastaldi G, Fassina "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
187 12 15 reference_content 34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldorf K, Fentz A-K, et al. Co-culture with human osteoblasts and exposure to extremely low frequency pulsed electromagnetism. [124, 1367, 604, 1432] reference_item 0.85 ["reference content label: 34. Ehnert S, van Griensven M, Unger M, Scheffler H, Falldor"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
188 12 16 reference_content netic fields improve osteogenic differentiation of human adipose-derived mesenchymal stem cells. Int J Mol Sci. 2018;19(4):994. [661, 135, 1111, 197] reference_item 0.85 ["reference content label: netic fields improve osteogenic differentiation of human adi"] reference_item 0.85 reference_zone unknown_like none True True
189 12 17 reference_content 35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Giannini A, Riccardi G, et al. Differentiation of human umbilical cord-derived mesenchymal stem cells, WJ-MSCs, into chondrogenic cells in the p [634, 201, 1112, 307] reference_item 0.85 ["reference content label: 35. Esposito M, Lucariello A, Costanzo C, Fiumarella A, Gian"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
190 12 18 reference_content 36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect of pulsed electromagnetic fields and dehydroepiandrosterone on viability and osteo-induction of human mesenchymal stem cells. J Tissue Eng [634, 310, 1112, 396] reference_item 0.85 ["reference content label: 36. Kaivosoja E, Sariola V, Chen Y, Konttinen YT. The effect"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
191 12 19 reference_content 37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abdemami B. Extremely low frequency electromagnetic field in mesenchymal stem cells gene regulation: chondrogenic markers evaluation. Artif Orga [634, 399, 1112, 483] reference_item 0.85 ["reference content label: 37. Kavand H, Haghighipour N, Zeynali B, Seyedjafari E, Abde"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
192 12 20 reference_content 38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, Boyan BD. Pulsed electromagnetic fields enhance BMP-2 dependent osteoblastic differentiation of human mesenchymal stem cells. J Orthop Res. [634, 487, 1112, 572] reference_item 0.85 ["reference content label: 38. Schwartz Z, Simon BJ, Duran MA, Barabino G, Chaudhri R, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
193 12 21 reference_content 39. Chow YY, Chin KY. The Role of Inflammation in the Pathogenesis of Osteoarthritis. Mediators Inflamm. 2020;2020:8293921. [634, 575, 1112, 637] reference_item 0.85 ["reference content label: 39. Chow YY, Chin KY. The Role of Inflammation in the Pathog"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
194 12 22 reference_content 40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP, Fahmi H. Role of proinflammatory cytokines in the pathophysiology of osteoarthritis. Nat Rev Rheumatol. 2011;7(1):33-42. [634, 641, 1112, 705] reference_item 0.85 ["reference content label: 40. Kapoor M, Martel-Pelletier J, Lajeunesse D, Pelletier JP"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
195 12 23 reference_content 41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al. [Research of inflammatory factors and signaling pathways in knee osteoarthritis]. Zhongguo Gu Shang. 2020;33(4):388-192. [634, 707, 1112, 770] reference_item 0.85 ["reference content label: 41. Wang MN, Liu L, Zhao L-P, Yuan F, Fu Y-B, Xu X-B, et al."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
196 12 24 reference_content 42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S, Plener Z, et al. Chondrocyte dedifferentiation and osteoarthritis (OA). Biochem Pharmacol. 2019;165:49-65. [633, 773, 1112, 836] reference_item 0.85 ["reference content label: 42. Charlier E, Deroyer C, Ciregia F, Malaise O, Neuville S,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
197 12 25 reference_content 43. Goldring MB, Otero M. Inflammation in osteoarthritis. Curr Opin Rheumatol. 2011;23(5):471-148. [633, 840, 1112, 881] reference_item 0.85 ["reference content label: 43. Goldring MB, Otero M. Inflammation in osteoarthritis. Cu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
198 12 26 reference_content 44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix metalloproteinases in osteoarthritis pathogenesis: An updated review. Life Sci. 2019;234:116786. [634, 884, 1112, 946] reference_item 0.85 ["reference content label: 44. Mehana EE, Khafaga AF, El-Blehi SS. The role of matrix m"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
199 12 27 reference_content 45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw T. Role of Caspase-1 in the pathogenesis of inflammatory-associated chronic noncommunicable diseases. J Inflamm Res. 2020;13:749-64. [633, 949, 1112, 1033] reference_item 0.85 ["reference content label: 45. Molla MD, Akalu Y, Geto Z, Dagnew B, Ayelign B, Shibabaw"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
200 12 28 reference_content 46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, Pellati A, et al. Characterization of adenosine receptors in bovine chondrocytes and fibroblast-like synoviocytes exposed to low frequency lo [634, 1037, 1112, 1166] reference_item 0.85 ["reference content label: 46. Varani K, De Mattei M, Vincenzi F, Gessi S, Merighi S, P"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
201 12 29 reference_content 47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Cadossi R, et al. Electromagnetic fields (EMFs) and adenosine receptors modulate prostaglandin E(2) and cytokine release in human osteoarthrit [633, 1169, 1113, 1276] reference_item 0.85 ["reference content label: 47. Ongaro A, Varani K, Masieri FF, Pellati A, Massari L, Ca"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
202 12 30 reference_content 48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA. A pulsing electric field (PEF) increases human chondrocyte proliferation through a transduction pathway involving nitric oxide signaling. [634, 1279, 1112, 1385] reference_item 0.85 ["reference content label: 48. Fitzsimmons RJ, Gordon SL, Kronberg J, Ganey T, Pilla AA"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
203 12 31 reference_content 49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldorff EI, et al. Dynamic imaging demonstrates that pulsed electro- [633, 1388, 1114, 1431] reference_item 0.85 ["reference content label: 49. Tang X, Alliston T, Coughlin D, Miller S, Zhang N, Waldo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
204 13 0 number 212 [93, 81, 129, 101] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
205 13 1 header CARTILAGE 13(4) [940, 81, 1082, 103] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
206 13 2 reference_content magnetic fields (PEMF) suppress IL-6 transcription in bovine nucleus pulposus cells. J Orthop Res. 2018;36(2):778-87. doi:10.1002/jor.23713. [123, 135, 572, 198] reference_item 0.85 ["reference content label: magnetic fields (PEMF) suppress IL-6 transcription in bovine"] reference_item 0.85 reference_zone unknown_like none True True
207 13 3 reference_content 50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of pulsed electromagnetic field therapy at different frequencies on bone mass and microarchitecture in osteoporotic mice. Bioelectromagnetics. 2 [93, 201, 576, 307] reference_item 0.85 ["reference content label: 50. Wang L, Li Y, Xie S, Huang J, Song K, He C. Effects of p"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
208 13 4 reference_content 51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \beta $ signaling in osteoarthritis: chondrocytes in focus. Cell Signal. 2019;53:212-23. [94, 311, 570, 373] reference_item 0.85 ["reference content label: 51. Jenei-Lanzl Z, Meurer A, Zaucke F. Interleukin-1 $ \\beta"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
209 13 5 reference_content 52. Vincent TL. IL-1 in osteoarthritis: time for a critical review of the literature. F1000res. 2019;8:934. [94, 377, 573, 418] reference_item 0.85 ["reference content label: 52. Vincent TL. IL-1 in osteoarthritis: time for a critical "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
210 13 6 reference_content 53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyte-specific enhancer elements in the Col11a2 gene resemble the Col2a1 tissue-specific enhancer. J Biol Chem. 1998;273(24):14998-5006. [94, 421, 572, 506] reference_item 0.85 ["reference content label: 53. Bridgewater LC, Lefebvre V, de Crombrugghe B. Chondrocyt"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
211 13 7 reference_content 54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and function of aggrecan. Cell Res. 2002;12(1):19-32. [93, 509, 571, 551] reference_item 0.85 ["reference content label: 54. Kiani C, Chen L, Wu YJ, Yee AJ, Yang BB. Structure and f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
212 13 8 reference_content 55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collagen type II suppresses articular chondrocyte hypertrophy and osteoarthritis progression by promoting integrin $ \beta $1-SMAD1 interaction. [94, 553, 572, 638] reference_item 0.85 ["reference content label: 55. Lian C, Wang X, Qiu X, Wu Z, Gao B, Liu L, et al. Collag"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
213 13 9 reference_content 56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-derived exosomes overexpressing microRNA-26a-5p alleviate osteoarthritis via down-regulation of PTGS2. Int Immunopharmacol. 2020;78:105946. [93, 641, 572, 727] reference_item 0.85 ["reference content label: 56. Jin Z, Ren J, Qi S. Human bone mesenchymal stem cells-de"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
214 13 10 reference_content 57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovial fibroblasts proliferation and inflammatory cytokines secretion through targeting TLR4. Biomed Pharmacother. 2017;96:208-14. [94, 730, 571, 814] reference_item 0.85 ["reference content label: 57. Li H, Guan SB, Lu Y, Wang F. MiR-140-5p inhibits synovia"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
215 13 11 reference_content 58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. MicroRNA-193b-3p regulates chondrogenesis and chondrocyte metabolism by targeting HDAC3. Theranostics. 2018;8(10):2862-83. [94, 817, 571, 902] reference_item 0.85 ["reference content label: 58. Meng F, Li Z, Zhang Z, Yang Z, Kang Y, Zhao X, et al. Mi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
216 13 12 reference_content 59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exosomes derived from miR-140-5p-overexpressing human synovial mesenchymal stem cells enhance cartilage tissue regeneration and prevent osteoart [94, 905, 572, 1012] reference_item 0.85 ["reference content label: 59. Tao SC, Yuan T, Zhang YL, Yin WJ, Guo SC, Zhang CQ. Exos"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
217 13 13 reference_content 60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin promotes IL-6 and TNF- $ \alpha $ production in human [92, 1015, 573, 1057] reference_item 0.85 ["reference content label: 60. Wu MH, Tsai C-H, Huang Y-L, Fong Y-C, Tang C-H. Visfatin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
218 13 14 reference_content synovial fibroblasts by repressing miR-199a-5p through ERK, p38 and JNK signaling pathways. Int J Mol Sci. 2018;19(1):190. [631, 135, 1081, 200] reference_item 0.85 ["reference content label: synovial fibroblasts by repressing miR-199a-5p through ERK, "] reference_item 0.85 reference_zone unknown_like none True True
219 13 15 reference_content 61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone marrow-derived mesenchymal stem cells alleviates osteoarthritis by inhibiting syndecan-1. Cell Tissue Res. 2020;381(1):99-114. [603, 203, 1082, 290] reference_item 0.85 ["reference content label: 61. Jin Z, Ren J, Qi S. Exosomal miR-9-5p secreted by bone m"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
220 13 16 reference_content 62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KLF3-AS1 from hMSCs promoted cartilage repair and chondrocyte proliferation in osteoarthritis. Biochem J. 2018;475(22):3629-38. [603, 294, 1081, 380] reference_item 0.85 ["reference content label: 62. Liu Y, Zou R, Wang Z, Wen C, Zhang F, Lin F. Exosomal KL"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
221 13 17 reference_content 63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived exosomal microRNAs contribute to wound inflammation. Sci China Life Sci. 2016;59(12):1305-12. [602, 384, 1082, 448] reference_item 0.85 ["reference content label: 63. Ti D, Hao H, Fu X, Han W. Mesenchymal stem cells-derived"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
222 13 18 reference_content 64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects chondrocyte proliferation, apoptosis, and inflammation by targeting HMGB1 in osteoarthritis. Inflamm Res. 2020;69(1):63-73. [603, 451, 1081, 538] reference_item 0.85 ["reference content label: 64. Wang Y, Shen S, Li Z, Li W, Weng X. MIR-140-5p affects c"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
223 13 19 reference_content 65. Yuan J, Xin F, Jiang W. Underlying signaling pathways and therapeutic applications of pulsed electromagnetic fields in bone repair. Cell Physiol Biochem. 2018;46(4):1581-94. [603, 542, 1082, 607] reference_item 0.85 ["reference content label: 65. Yuan J, Xin F, Jiang W. Underlying signaling pathways an"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
224 13 20 reference_content 66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The use of pulsed electromagnetic field to modulate inflammation and improve tissue regeneration: a review. Bioelectricity. 2019;1(4):247-59. [604, 610, 1082, 696] reference_item 0.85 ["reference content label: 66. Ross CL, Zhou Y, McCall CE, Soker S, Criswell TL. The us"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
225 13 21 reference_content 67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Signal transduction in electrically stimulated bone cells. J Bone Joint Surg Am. 2001;83(10):1514-23. [602, 701, 1082, 765] reference_item 0.85 ["reference content label: 67. Brighton CT, Wang W, Seldes R, Zhang G, Pollack SR. Sign"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
226 13 22 reference_content 68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. Stimulation of growth factor synthesis by electric and electromagnetic fields. Clin Orthop Relat Res. 2004;419:30-7. [604, 768, 1082, 834] reference_item 0.85 ["reference content label: 68. Aaron RK, Boyan BD, Ciombor DM, Schwartz Z, Simon BJ. St"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
227 13 23 reference_content 69. de Girolamo L, Stanco D, Galliera E, Viganò M, Colombini A, Setti S, et al. Low frequency pulsed electromagnetic field affects proliferation, tissue-specific gene expression, and cytokines release [604, 837, 1082, 945] reference_item 0.85 ["reference content label: 69. de Girolamo L, Stanco D, Galliera E, Vigan\u00f2 M, Colombini"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
228 13 24 reference_content 70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, Chang EI, et al. Osteoblasts stimulated with pulsed electromagnetic fields increase HUVEC proliferation via a VEGF-A independent mechanism. B [603, 949, 1083, 1058] reference_item 0.85 ["reference content label: 70. Hopper RA, VerHalen JP, Tepper O, Mehrara BJ, Detch R, C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True

View file

@ -0,0 +1,355 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,www.nature.com/scientificreports,"[776, 28, 1101, 51]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
1,1,doc_title,SCIENTIFIC REPORTS,"[78, 130, 1112, 264]",paper_title,0.8,"[""page-1 zone title_zone: SCIENTIFIC REPORTS""]",paper_title,0.8,frontmatter_main_zone,support_like,short_fragment,True,True
1,2,text,OPEN,"[183, 300, 285, 336]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,frontmatter_main_zone,support_like,short_fragment,False,True
1,3,text,Received: 23 October 2018,"[14, 481, 209, 505]",frontmatter_noise,0.7,"[""frontmatter noise text: Received: 23 October 2018""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,4,text,Published online: 21 March 2019,"[13, 536, 251, 562]",frontmatter_noise,0.7,"[""frontmatter noise text: Published online: 21 March 2019""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,5,text,Accepted: 28 February 2019,"[14, 509, 219, 534]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Accepted: 28 February 2019""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,6,doc_title,Capacitive technologies for highly controlled and personalized electrical stimulation by implantable biomedical systems,"[304, 297, 1068, 533]",paper_title,0.8,"[""page-1 zone title_zone: Capacitive technologies for highly controlled and personaliz""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,7,text,"Marco P. Soares dos Santos$^{1,2,3}$, J. Coutinho$^{2}$, Ana Marote$^{4}$, Bárbara Sousa$^{4}$, A. Ramos$^{1,2}$, Jorge A. F. Ferreira$^{1,2}$, Rodrigo Bernardo$^{2}$, André Rodrigues$^{2}$, A. Torres","[304, 547, 1062, 623]",authors,0.8,"[""page-1 zone author_zone: Marco P. Soares dos Santos$^{1,2,3}$, J. Coutinho$^{2}$, Ana""]",authors,0.8,body_zone,reference_like,citation_line,True,True
1,8,abstract,"Cosurface electrode architectures are able to deliver personalized electric stimuli to target tissues. As such, this technology holds potential for a variety of innovative biomedical devices. However,","[304, 636, 1111, 971]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,9,text,"The widespread bioapplications of electromagnetic stimulation (E-Stim), for both research and clinical practice, emphasize the versatility of this biophysical method for a wide range of customized the","[303, 1009, 1114, 1314]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,10,text," $ ^{1} $Centre for Mechanical Technology & Automation (TEMA), University of Aveiro, Aveiro, Portugal. $ ^{2} $Department of Mechanical Engineering, University of Aveiro, Aveiro, Portugal. $ ^{3} $A","[304, 1337, 1114, 1481]",frontmatter_noise,0.8,"[""frontmatter phrase: $ ^{1} $Centre for Mechanical Technology & Automation (TEMA)""]",frontmatter_noise,0.8,body_zone,body_like,affiliation_marker,False,False
1,11,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1513, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
1,12,number,1,"[1098, 1517, 1111, 1534]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,0,header,www.nature.com/scientificreports/,"[77, 29, 401, 51]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,1,text,"electrostimulus bone implants $ ^{12,16} $. Each electrode can be independently controlled according to personalized excitations to provide target-oriented stimulations $ ^{12,16} $. The potential of ","[304, 96, 1114, 360]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,2,paragraph_title,Cosurface Capacitive Architectures,"[306, 373, 642, 395]",unknown_structural,0.6,"[""page-1 frontmatter title guard: Cosurface Capacitive Architectures""]",paper_title,0.6,body_zone,heading_like,none,False,True
2,3,text,The electrode stimulation architectures considered in this study were designed for the delivery of controllable electric fields to bone cells cultured on plastic dishes $ ^{12} $. All electrode patter,"[304, 395, 1114, 539]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,text,"- Stripped pattern: the M-pattern comprises 12 electrodes horizontally arranged with different lengths, as shown in Fig. 1a. A 0.5 mm gap between electrodes was parameterized, but the effects of its v","[305, 556, 1112, 637]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,5,text,"- Interdigitated pattern: the M-pattern is only composed by 2 electrodes, each one with 6 re-entrant stripes of different length (according to the circular border of culture dishes) and 0.5 mm apart, ","[305, 637, 1113, 717]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,text,"- Circular pattern: the M-pattern was modeled with 7 horizontally arranged electrodes (Fig. 1e), 0.5 mm apart from each other; and the S-pattern with 3 electrodes, corresponding to the smaller diamete","[305, 718, 1113, 779]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,7,text,"A parallel architecture was also modeled for comparative purposes (used as control). Its M-pattern was designed with 32 mm diameter electrodes, 1.5 mm apart from each other. This pattern only differs ","[304, 797, 1115, 901]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,8,paragraph_title,Computational Models,"[307, 913, 531, 935]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Computational Models""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
2,9,text,The electric field stimuli provided by our cosurface capacitive stimulation systems was simulated using 8 finite element computational models:,"[305, 935, 1112, 978]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,10,text,"- A macro-scale model (M-model) and a simplified model (S-model) for the M-patterned and S-patterned striped stimulator, respectively (Fig. 3a);","[305, 997, 1112, 1038]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,11,text,"- A M-model and a S-model for the M-patterned and S-patterned interdigitated stimulator, respectively (Fig. 3b);","[306, 1038, 1112, 1078]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,12,text,"- A M-model and a S-model for the M-patterned and S-patterned circular stimulator, respectively (Fig. 3c); and
- A M-model and a S-model for the parallel stimulator (Fig. 3d).","[306, 1078, 1112, 1118]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,13,text,Both M-models and S-models were designed considering apparatus recently validated in in silico and in vitro to analyze the effects of electromagnetic stimulation throughout proliferation and different,"[304, 1138, 1114, 1482]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,14,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,15,number,2,"[1098, 1518, 1111, 1533]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,0,header,www.nature.com/scientificreports/,"[78, 29, 401, 51]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,1,figure_title,(a),"[394, 89, 434, 125]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,2,image,,"[307, 144, 528, 374]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,3,figure_title,(c),"[401, 400, 437, 437]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,4,figure_title,(b),"[683, 88, 723, 125]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,5,image,,"[569, 177, 682, 340]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,6,image,,"[741, 114, 894, 406]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,7,figure_title,(d),"[688, 401, 728, 439]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,8,image,,"[309, 445, 535, 666]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,9,figure_title,(e),"[400, 701, 441, 738]",figure_inner_text,0.9,"[""panel label / figure inner text: (e)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,10,image,,"[549, 500, 715, 641]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,11,image,,"[742, 463, 916, 663]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,12,figure_title,(f),"[696, 706, 730, 745]",figure_inner_text,0.9,"[""panel label / figure inner text: (f)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
3,13,image,,"[306, 745, 536, 964]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,14,image,,"[552, 776, 698, 930]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,15,image,,"[724, 764, 906, 958]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,16,figure_title,Figure 1. Cosurface capacitive architectures analysed in this study: (a) M-pattern of the stripped pattern; (b) S-pattern of the stripped pattern; (c) M-pattern of the interdigitated pattern; (d) S-pa,"[305, 985, 1097, 1051]",figure_caption,0.92,"[""figure_title label: Figure 1. Cosurface capacitive architectures analysed in thi""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
3,17,image,,"[312, 1097, 1106, 1342]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,18,figure_title,"Figure 2. Schematics of the overall stimulation system, which is effective for electric stimulation using stripped, interdigitated and circular patterns. It also refer details of the experimental appa","[305, 1362, 1111, 1425]",figure_caption,0.92,"[""figure_title label: Figure 2. Schematics of the overall stimulation system, whic""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
3,19,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1513, 675, 1535]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,20,number,3,"[1098, 1517, 1111, 1538]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,0,header,www.nature.com/scientificreports/,"[78, 29, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,1,figure_title,(a),"[452, 91, 489, 125]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,2,figure_title,(b),"[720, 90, 759, 125]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,3,image,,"[308, 131, 582, 351]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,4,figure_title,(c),"[979, 89, 1016, 124]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,5,image,,"[629, 135, 849, 353]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,6,image,,"[891, 135, 1106, 351]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,7,figure_title,(d),"[723, 379, 761, 414]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,8,image,,"[576, 421, 909, 638]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,9,figure_title,Figure 3. M-models of cosurface capacitive architectures (exploded view): (a) Striped pattern; (b) Interdigitated pattern; (c) Circular pattern. M-models of the parallel architecture (d). Domains: 1 -,"[306, 662, 1090, 768]",figure_caption,0.92,"[""figure_title label: Figure 3. M-models of cosurface capacitive architectures (ex""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
4,10,table,"<table><tr><td rowspan=""3"">Domain</td><td colspan=""8"">Dimensions of domains</td></tr><tr><td colspan=""4"">M-model</td><td colspan=""4"">S-model</td></tr><tr><td>Striped</td><td>Interdigitated</td><td>Cir","[121, 815, 1107, 1082]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
4,11,figure_title,"Table 1. Dimensions of each domain for both M- and S-models of striped, interdigitated and circular cosurface capacitive stimulators. $ {}^{a} $Diameter. $ {}^{b} $Each stripe. $ {}^{c} $Overall le","[304, 1098, 1109, 1162]",table_caption,0.9,"[""table prefix matched: Table 1. Dimensions of each domain for both M- and S-models ""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
4,12,text,Polymeric dishes and substrates were used as they exhibit very high electrical resistivity. A material evidencing very high electrical conductivity properties was considered for all patterned electrod,"[306, 1216, 1112, 1260]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,13,paragraph_title,Excitations Powering the Stimulators,"[307, 1277, 667, 1299]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Excitations Powering the Stimulators""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
4,14,text,The electric excitations applied to drive the electrodes were defined to simulate an external power supply. Table 3 describes the chosen excitations parameters and the implemented configurations. Both,"[304, 1299, 1115, 1464]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,15,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,16,number,4,"[1097, 1517, 1111, 1536]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,0,header,www.nature.com/scientificreports/,"[78, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,1,table,<table><tr><td>Domain</td><td>Relative electric permittivity</td><td>Electric conductivity [S/m]</td><td>Relative magnetic permeability</td><td>Reference</td></tr><tr><td>Culture medium (liquid soluti,"[310, 90, 973, 340]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
5,2,figure_title,"Table 2. Electric and magnetic properties of their organic and inorganic materials composing the striped, interdigitated and circular cosurface capacitive stimulators.","[306, 356, 1067, 399]",table_caption,0.9,"[""table prefix matched: Table 2. Electric and magnetic properties of their organic a""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
5,3,text,"devices $ ^{12,14} $. Finally, Fig. 4 shows the configurations defined to control the stimuli delivered to each region of the cell culture. All patterns and architectures were simulated considering an","[305, 444, 1114, 508]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,4,paragraph_title,Results,"[307, 524, 385, 546]",section_heading,0.9,"[""explicit scholarly heading: Results""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
5,5,text,"S-patterns were used to analyze in silico the impacts of cell confluence, cosurface architecture, electrodes geometry (thickness and width), gap size between electrodes and power excitation on the ele","[304, 547, 1114, 710]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,6,text,"Cell confluence influence on electric field stimuli. The stimuli distribution and dynamics along the cellular layer (low cell confluence condition; proliferation stage; $ z \in [0.5 \ 0.51] $ [mm], w","[304, 726, 1114, 851]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,text,"Architecture influence on the electric field stimuli. Frequency- and region-dependent electric field stimuli are delivered to osteoblastic cells, as shown by Figs 5 and 6. The following analysis first","[304, 866, 1114, 1169]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,8,text,"Detailed analyses were also extended to the circular pattern. For low frequency excitations, the distribution and strength of the stimulus delivered by the circular pattern are similar to those delive","[304, 1169, 1113, 1390]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,text,"Regarding the parallel architecture, homogeneous distributions are observed, as expected, and its stimulus magnitude at low frequency excitations is similar to the maximum stimuli magnitudes delivered","[304, 1389, 1114, 1472]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,10,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
5,11,number,5,"[1098, 1517, 1112, 1537]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,0,header,www.nature.com/scientificreports/,"[78, 29, 401, 51]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
6,1,figure_title,(a),"[378, 89, 420, 127]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,2,image,,"[309, 136, 499, 327]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,3,figure_title,(b),"[636, 88, 680, 127]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,4,figure_title,(c),"[383, 350, 423, 389]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,5,image,,"[602, 151, 720, 315]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,6,image,,"[308, 394, 508, 595]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,7,figure_title,(d),"[638, 352, 682, 393]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,8,figure_title,(e),"[384, 619, 428, 659]",figure_inner_text,0.9,"[""panel label / figure inner text: (e)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,9,image,,"[593, 431, 731, 540]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,10,figure_title,(f),"[649, 622, 686, 662]",figure_inner_text,0.9,"[""panel label / figure inner text: (f)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,11,image,,"[310, 670, 502, 857]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,12,image,,"[597, 685, 746, 836]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,13,figure_title,Figure 4. Configurations of electric powering of stimulators: (a) M-model of the striped pattern; (b) S-model of the striped pattern; (c) M-model of the interdigitated pattern; (d) S-model of the inte,"[305, 878, 1095, 963]",figure_caption,0.92,"[""figure_title label: Figure 4. Configurations of electric powering of stimulators""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,14,table,<table><tr><td>Pattern</td><td>Waveform</td><td>Amplitude [V]</td><td>Frequency [Hz]</td><td>Schematic</td><td>Reference</td></tr><tr><td>Stripped M- and S-pattern</td><td>Sinusoidal $ K(1-\cos(\omeg,"[310, 993, 959, 1208]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
6,15,figure_title,Table 3. Electric excitation parameters defined to power electrodes and related schematics.,"[306, 1224, 964, 1246]",table_caption,0.9,"[""table prefix matched: Table 3. Electric excitation parameters defined to power ele""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
6,16,text,Influence of the electrode thickness on the electric field stimuli. In silico experiments were also conducted to understand how the stimuli delivery performance is altered as the electrode thickness i,"[305, 1295, 1115, 1481]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,17,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
6,18,number,6,"[1097, 1514, 1111, 1533]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,0,header,www.nature.com/scientificreports/,"[78, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
7,1,figure_title,(a),"[565, 90, 587, 109]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,2,chart,,"[310, 109, 794, 494]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,3,figure_title,(b),"[562, 494, 586, 513]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
7,4,chart,,"[307, 515, 791, 891]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,5,figure_title,"Figure 5. Electric field strength delivered by all patterns along $ (x, 0, 0.51) $ [mm], and dynamic behaviour in the point $ (0, 0, 0.51) $ using S-models for low frequency excitation (a) and high ","[305, 910, 1106, 953]",figure_caption,0.92,"[""figure_title label: Figure 5. Electric field strength delivered by all patterns ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
7,6,text,"Influence of the electrode width on the electric field stimuli. To highlight the influence of the electrodes width on cell stimulation, S-models of all architectures were redesigned using electrodes o","[305, 998, 1114, 1162]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,7,text,"These are the main results when the impact of changing the electrode width is predicted. However, a closer analysis also reveals a shortened region where the decrease in the electric field magnitudes ","[305, 1161, 1114, 1402]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,8,text,"Cell stimulation by the cosurface circular pattern also exhibits noteworthy phenomena for decreasing widths (Fig. 8c,d): (i) a frequency-dependent changing pattern is observed; (ii) the changing effec","[305, 1400, 1114, 1444]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,9,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
7,10,number,7,"[1098, 1518, 1111, 1537]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,0,header,www.nature.com/scientificreports/,"[78, 29, 402, 51]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
8,1,chart,,"[307, 88, 544, 325]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,2,figure_title,(b),"[667, 93, 702, 122]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,3,image,,"[310, 87, 1107, 577]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,4,figure_title,"Figure 6. Electric field distributions using S-models for low frequency (ac) and high frequency (df) excitations at $ \pi $ rad delivered by: (a,d) the stripped pattern along (x, y, 0.51) [mm]; (b,","[305, 591, 1066, 657]",figure_caption,0.92,"[""figure_title label: Figure 6. Electric field distributions using S-models for lo""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,5,text,around the same region ( $ |x| \approx 3 \text{ mm} $ for low frequency stimuli; $ |x| \approx 2.5 \text{ mm} $ and $ |x| \approx 4 \text{ mm} $ for high frequency stimuli); (iii) no significant mag,"[304, 705, 1112, 747]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,6,text,"In addition to these general results, one must also remark that the low frequency stimuli are not influenced by changes in the electrode width above the innermost electrode (Fig. 8c). Magnitude and wa","[304, 746, 1115, 1072]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,7,text,"Influence of gap size between electrodes on the electric field stimuli. The influence of gap size between electrodes on cell stimulation was also examined by resizing gaps of the S-models to 1.5 mm, 1","[304, 1089, 1114, 1271]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,8,text,"These results emphasize that the gap size influence is similar to the electrode width influence (only differing by their signs) for both striped and interdigitated patterns Figs 8a,c and 9a,c). Detail","[303, 1270, 1115, 1454]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,9,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1513, 675, 1535]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
8,10,number,8,"[1097, 1514, 1112, 1533]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,0,header,www.nature.com/scientificreports/,"[78, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
9,1,figure_title,(a),"[564, 90, 587, 109]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
9,2,chart,,"[308, 109, 794, 494]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,3,figure_title,(b),"[563, 497, 586, 517]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
9,4,chart,,"[314, 519, 792, 896]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,5,figure_title,"Figure 7. Stimuli delivered along $ (x, 0, 0.51) $ [mm] by all cosurface stimulators with 0.1 mm thick electrodes: using S-models for low frequency excitation (a) and high frequency (b).","[306, 915, 1090, 959]",figure_caption,0.92,"[""figure_title label: Figure 7. Stimuli delivered along $ (x, 0, 0.51) $ [mm] by ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,6,text,"charged electrodes, as well as above gaps; (iii) lower and slightly shifted minimum stimuli magnitudes; (iv) slightly larger distribution of constant stimuli in the cellular layer above negatively cha","[305, 999, 1111, 1041]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,7,text,"The gap size also influences the stimuli delivered by the circular pattern. An overall analysis highlights that, as the gap size increases, cell stimulation is mainly focused above the innermost elect","[305, 1041, 1115, 1324]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,8,text,Influence of power excitation on the electric field stimuli. Linear interrelationships occur between power excitations supplying electrodes and the stimuli magnitudes delivered to cells along the over,"[305, 1343, 1111, 1428]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,9,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
9,10,number,9,"[1097, 1518, 1111, 1536]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,0,header,www.nature.com/scientificreports/,"[78, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
10,1,figure_title,(a),"[491, 90, 511, 106]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,2,figure_title,(c),"[868, 92, 888, 108]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,3,chart,,"[334, 111, 654, 287]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,4,chart,,"[309, 301, 659, 580]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,5,chart,,"[683, 108, 1035, 585]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,6,figure_title,(b),"[489, 596, 509, 615]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,7,figure_title,(d),"[866, 599, 887, 617]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,8,chart,,"[339, 622, 652, 798]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,9,chart,,"[718, 630, 1028, 799]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,10,chart,,"[307, 802, 657, 1101]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,11,chart,,"[682, 815, 1033, 1099]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,12,figure_title,"Figure 8. Influence of electrodes width (2 mm, 1 mm and 0.5 mm) on the stimuli delivered by striped and interdigitated patterns (a,b) and circular pattern (c,d) along (x, 0, 0.51) [mm] using S-models ","[306, 1117, 1108, 1201]",figure_caption,0.92,"[""figure_title label: Figure 8. Influence of electrodes width (2 mm, 1 mm and 0.5 ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
10,13,text,"Model validation. Electric stimuli provided by S-models and M-models were compared for validation purposes. Validation results highlight that low frequency stimulation delivered by M-patterns, paramet","[305, 1250, 1114, 1455]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,14,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
10,15,number,10,"[1086, 1517, 1112, 1534]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,0,header,www.nature.com/scientificreports/,"[78, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
11,1,header,(c),"[865, 90, 886, 107]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
11,2,chart,,"[349, 98, 659, 300]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,3,chart,,"[713, 114, 1025, 299]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,4,chart,,"[308, 306, 664, 613]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,5,chart,,"[679, 306, 1035, 615]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,6,figure_title,(b),"[493, 621, 510, 637]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
11,7,figure_title,(d),"[862, 620, 882, 638]",figure_inner_text,0.9,"[""panel label / figure inner text: (d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
11,8,chart,,"[371, 642, 656, 830]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,9,chart,,"[690, 643, 1027, 818]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,10,chart,,"[307, 831, 663, 1126]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,11,chart,,"[675, 821, 1029, 1124]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
11,12,figure_title,"Figure 9. Influence of gap between electrodes (1.5 mm, 1 mm and 0.5 mm) on the stimuli delivered by striped and interdigitated patterns (a,b) and circular pattern (c,d) along (x, 0, 0.51) [mm] using S","[306, 1141, 1096, 1227]",figure_caption,0.92,"[""figure_title label: Figure 9. Influence of gap between electrodes (1.5 mm, 1 mm ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
11,13,text,"found for both low (Fig. 12a,b) and high frequency stimulation (Fig. 12c,d), as well as similar stimuli magnitudes, if cosurface stimulators comprise 0.1 mm thick electrodes.","[305, 1272, 1112, 1315]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,14,text,Influence of the stimulators architecture on in vitro osteoconductive effects. In vitro biological assays were conducted using stripped and interdigitated M-models with different electrode widths and ,"[304, 1335, 1115, 1481]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,15,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
11,16,number,11,"[1087, 1517, 1112, 1534]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,0,header,www.nature.com/scientificreports/,"[77, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
12,1,chart,,"[309, 92, 794, 472]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,2,figure_title,"Figure 10. Influence of the power excitation (K=10 for 20 V) on the electric stimulation along (x, 0, 0.51) [mm] using S-models. LF - similar stimuli delivered by all patterns.","[307, 493, 1070, 538]",figure_caption,0.92,"[""figure_title label: Figure 10. Influence of the power excitation (K=10 for 20 V)""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
12,3,chart,,"[308, 573, 570, 801]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,4,chart,,"[575, 577, 838, 801]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,5,chart,,"[844, 574, 1105, 800]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,6,chart,,"[306, 803, 569, 1006]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,7,chart,,"[575, 805, 837, 1005]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,8,chart,,"[843, 805, 1103, 1004]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
12,9,figure_title,"Figure 11. Comparison between electric field distributions using both S-models and M-models for low frequency (ac) and high frequency (df) excitations using the striped pattern (a,d), interdigitated","[306, 1022, 1107, 1086]",figure_caption,0.92,"[""figure_title label: Figure 11. Comparison between electric field distributions u""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
12,10,text,"proliferation over control, although with no statistical significance (Fig. 13b). These early (24h) alterations in cell proliferation are not accompanied by a decrease in cell metabolic activity (Fig.","[305, 1147, 1114, 1248]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,11,text,"To assess matrix maturation upon electrical stimulation with stripped and interdigitated M-patterns, the levels of osteonectin and type-I collagen were analyzed by immunoblot following 7 days of stimu","[305, 1247, 1114, 1451]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,12,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
12,13,number,12,"[1086, 1517, 1112, 1534]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,0,header,www.nature.com/scientificreports/,"[78, 29, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
13,1,figure_title,(a),"[491, 90, 513, 108]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,2,chart,,"[307, 95, 665, 396]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
13,3,figure_title,(b),"[862, 90, 883, 109]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,4,chart,,"[675, 96, 1036, 394]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
13,5,chart,,"[310, 401, 665, 679]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
13,6,chart,,"[680, 401, 1036, 678]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
13,7,figure_title,"Figure 12. Comparison between electric field distributions using both S-models and M-models for low frequency (a,b) and high frequency (c,d) excitations using the striped and interdigitated patterns (","[306, 694, 1071, 759]",figure_caption,0.92,"[""figure_title label: Figure 12. Comparison between electric field distributions u""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
13,8,figure_title,a),"[311, 805, 334, 827]",figure_inner_text,0.9,"[""panel label / figure inner text: a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,9,figure_title,b),"[555, 805, 577, 827]",figure_inner_text,0.9,"[""panel label / figure inner text: b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,10,chart,,"[308, 832, 522, 1084]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
13,11,chart,,"[549, 837, 771, 1082]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
13,12,figure_title,c),"[807, 806, 829, 827]",figure_inner_text,0.9,"[""panel label / figure inner text: c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
13,13,chart,,"[792, 830, 1103, 1081]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
13,14,figure_title,"Figure 13. Proliferation and viability of MC3T3 cells cultured in the absence of stimuli (CTRL), or daily exposed to low-frequency electric stimulation with two electrode patterns (stripped [STRIP] an","[305, 1103, 1103, 1206]",figure_caption,0.92,"[""figure_title label: Figure 13. Proliferation and viability of MC3T3 cells cultur""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
13,15,text,"The levels of matrix mineralization were assessed with the calcium-staining dye Alizarin Red (ARS). As expected, ARS staining increased from 14 to 28 DIV for all conditions (Fig. 16a), but no differen","[305, 1251, 1114, 1436]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
13,16,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1513, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
13,17,number,13,"[1087, 1517, 1112, 1536]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
14,0,header,www.nature.com/scientificreports/,"[77, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
14,1,figure_title,a),"[309, 91, 331, 114]",figure_inner_text,0.9,"[""panel label / figure inner text: a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
14,2,image,,"[309, 93, 627, 213]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
14,3,figure_title,c),"[310, 229, 331, 252]",figure_inner_text,0.9,"[""panel label / figure inner text: c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
14,4,figure_title,b),"[676, 90, 698, 114]",figure_inner_text,0.9,"[""panel label / figure inner text: b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
14,5,image,,"[310, 230, 621, 382]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
14,6,image,,"[673, 92, 1036, 424]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
14,7,figure_title,d),"[309, 395, 332, 419]",figure_inner_text,0.9,"[""panel label / figure inner text: d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
14,8,chart,,"[342, 430, 988, 705]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
14,9,figure_title,"Figure 14. Intracellular matrix maturation markers in MC3T3 cells cultured in the absence of stimuli (CTRL), or daily exposed to low-frequency electric stimulation with two electrode patterns (strippe","[304, 723, 1112, 909]",figure_caption,0.92,"[""figure_title label: Figure 14. Intracellular matrix maturation markers in MC3T3 ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
14,10,paragraph_title,Discussion,"[307, 955, 415, 978]",section_heading,0.9,"[""explicit scholarly heading: Discussion""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
14,11,text,"The therapeutic potential of non-drug strategies, mainly those performed by biophysical signals (electric, acoustic, thermal, mechanical, etc.), has been deeply explored for the treatment and preventi","[304, 979, 1114, 1379]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
14,12,text,"The influence of the stimulator architecture and geometry on stimuli distribution is provided, for the first time, in this study. Included are analyses with a cosurface circular pattern that, to the k","[304, 1379, 1115, 1462]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,13,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
14,14,number,14,"[1086, 1517, 1112, 1536]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
15,0,header,www.nature.com/scientificreports/,"[77, 29, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
15,1,image,,"[311, 94, 911, 545]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
15,2,figure_title,Figure 15. Confocal microscopy analysis of MC3T3 osteoblasts cultured for 28 DIV in the absence of stimulus (CTRL) or upon daily stimulation with two electrode patterns (stripped [STRIP] and interdigi,"[305, 569, 1108, 655]",figure_caption,0.92,"[""figure_title label: Figure 15. Confocal microscopy analysis of MC3T3 osteoblasts""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
15,3,figure_title,a),"[312, 718, 336, 742]",figure_inner_text,0.9,"[""panel label / figure inner text: a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
15,4,chart,,"[307, 746, 582, 1041]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
15,5,figure_title,b),"[607, 716, 633, 742]",figure_inner_text,0.9,"[""panel label / figure inner text: b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
15,6,chart,,"[621, 746, 851, 1043]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
15,7,chart,,"[880, 745, 1105, 1045]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
15,8,figure_title,d),"[359, 1096, 385, 1122]",figure_inner_text,0.9,"[""panel label / figure inner text: d)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
15,9,image,,"[358, 1087, 1034, 1213]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
15,10,figure_title,Figure 16. Analyses of the matrix mineralization markers in MC3T3 cells cultured in the absence of stimulus (CTRL) or upon daily stimulation with two electrode configurations (stripped [STRIP] and int,"[304, 1232, 1111, 1399]",figure_caption,0.92,"[""figure_title label: Figure 16. Analyses of the matrix mineralization markers in ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
15,11,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1513, 675, 1535]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
15,12,number,15,"[1086, 1516, 1112, 1537]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
16,0,header,www.nature.com/scientificreports/,"[78, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
16,1,text,"such as trabecular and cortical structures comprising liquid, organic and mineral phases. The interplay between stimuli parameters and their osteoconductive responses must be primarily addressed as pr","[304, 97, 1114, 359]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,2,text,The stimuli delivered by these cosurface architectures are the same order-of-magnitude as stimuli with ability to induce positive osteoconductive responses at different stages of bone remodeling $ ^{1,"[304, 358, 1114, 699]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
16,3,text,"Biological experiments reported in this study promisingly demonstrate that cosurface stimulation can enhance osteoconductive processes, as recent and preliminary research findings already highlighted ","[304, 698, 1113, 921]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
16,4,paragraph_title,Conclusion,"[307, 934, 419, 956]",section_heading,0.9,"[""explicit scholarly heading: Conclusion""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
16,5,text,"This research work is focused on the ability of three cosurface capacitive stimulation systems (stripped, interdigitated and circular architectures) to provide effective osteoconductive stimuli to tar","[305, 957, 1114, 1040]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,6,text,(1) All capacitive cosurface stimulators analyzed are able to deliver osteogenic stimuli;,"[309, 1058, 938, 1079]",body_paragraph,0.6,"[""reference-like pattern: (1) All capacitive cosurface stimulators analyzed are able t""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,7,text,(2) The influence of cell culture confluence is negligible;,"[311, 1079, 724, 1099]",body_paragraph,0.6,"[""reference-like pattern: (2) The influence of cell culture confluence is negligible;""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,8,text,"(3) Electric field stimuli is architecture-, frequency- and region-dependent;","[310, 1098, 860, 1120]",body_paragraph,0.6,"[""reference-like pattern: (3) Electric field stimuli is architecture-, frequency- and ""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,9,text,(4) Electric stimuli delivered by stripped architectures are quite similar to the one delivered by interdigitated architectures;,"[310, 1119, 1094, 1158]",body_paragraph,0.6,"[""reference-like pattern: (4) Electric stimuli delivered by stripped architectures are""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,10,text,(5) Low frequency stimuli distributions are similar to high frequency stimuli distributions for very thin electrodes (0.1 mm);,"[310, 1159, 1096, 1198]",body_paragraph,0.6,"[""reference-like pattern: (5) Low frequency stimuli distributions are similar to high ""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,11,text,(6) High frequency stimuli magnitudes are 2-fold higher than low frequency stimuli magnitudes for very thin electrodes (0.1 mm);,"[310, 1199, 1104, 1239]",body_paragraph,0.6,"[""reference-like pattern: (6) High frequency stimuli magnitudes are 2-fold higher than""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,12,text,(7) The influences of electrodes width and gap size are similar for stripped and interdigitated architectures: differences in the stimuli emerge around the same regions; differences in the stimuli ma,"[309, 1240, 1105, 1319]",body_paragraph,0.6,"[""reference-like pattern: (7) The influences of electrodes\u2019 width and gap size are sim""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,13,text,(8) Simplified models of stimulators can be used to easily predict the impact of additional electrodes on electric stimulation if thin electrode thicknesses are used.,"[310, 1318, 1097, 1358]",body_paragraph,0.6,"[""reference-like pattern: (8) Simplified models of stimulators can be used to easily p""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,14,text,"(9) Some electrode architecture-dependent influences, determined by modeling assays, can be validated in in vitro assays biomedical experiments.","[309, 1359, 1100, 1401]",body_paragraph,0.6,"[""reference-like pattern: (9) Some electrode architecture-dependent influences, determ""]",reference_item,0.6,,reference_like,reference_numeric_parenthesis,True,True
16,15,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
16,16,number,16,"[1085, 1515, 1112, 1534]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
17,0,header,www.nature.com/scientificreports/,"[78, 29, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
17,1,paragraph_title,Methods,"[307, 94, 400, 116]",section_heading,0.9,"[""explicit scholarly heading: Methods""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
17,2,text,"Numerical simulation. All M- and S-models were developed using the AC/DC module of COMSOL Multiphysics (v. 4.4, COMSOL). This computer simulation tool has been successfully used to analyse electromagn","[305, 117, 1115, 302]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
17,3,display_formula, $$ \nabla\cdot\mathbf{J}=0 $$ ,"[656, 312, 739, 333]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,4,formula_number,(1),"[1087, 313, 1111, 334]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
17,5,display_formula, $$ \mathbf{E}=-\nabla\cdot\mathbf{V}-\frac{d\mathbf{A}}{dt} $$ ,"[617, 359, 773, 405]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,6,formula_number,(2),"[1087, 383, 1110, 403]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
17,7,display_formula, $$ \nabla\times\mathbf{H}=\mathbf{J} $$ ,"[650, 427, 746, 452]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,8,formula_number,(3),"[1087, 430, 1109, 450]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
17,9,display_formula, $$ \boldsymbol{B}=\nabla\times\mathbf{A} $$ ,"[648, 476, 746, 499]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,10,formula_number,(4),"[1088, 477, 1110, 497]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
17,11,display_formula, $$ \mathbf{J}=\sigma\mathbf{E}+\frac{d\mathbf{D}}{dt} $$ ,"[636, 524, 753, 569]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,12,formula_number,(5),"[1088, 547, 1111, 567]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
17,13,display_formula, $$ \mathbf{D}=\varepsilon_{0}\varepsilon_{r}\mathbf{E} $$ ,"[653, 592, 740, 617]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,14,formula_number,(6),"[1088, 596, 1110, 615]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
17,15,display_formula, $$ \mathbf{B}=\mu_{0}\mu_{r}\mathbf{H} $$ ,"[652, 640, 742, 666]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,16,display_formula, $$ \mathbf{n}_{2}\cdot(\mathbf{J}_{1}-\mathbf{J}_{2})=0 $$ ,"[628, 693, 766, 716]",unknown_structural,0.2,"[""unrecognized label 'display_formula'""]",unknown_structural,0.2,,unknown_like,none,False,True
17,17,formula_number,(7),"[1088, 646, 1110, 665]",unknown_structural,0.2,"[""unrecognized label 'formula_number'""]",unknown_structural,0.2,,unknown_like,short_fragment,False,True
17,18,text,where: E - electric field intensity [V/m]; D - electric displacement [C/m²]; H - magnetic field intensity [A/m]; B - magnetic flux density [T]; J - current density [A/m²]; A - magnetic vector potentia,"[306, 726, 1114, 872]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
17,19,text,"Analysis of electric field data. The electric field was analysed along a xy-plan in a vertical z-coordinate corresponding to the cellular layer/tissue midpoint, i.e., along $ (x, y, 0.505) $ [mm] for","[305, 884, 1113, 1007]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
17,20,text,Stimulation apparatuses for in vitro experiments. Stripped and interdigitated stimulators were implemented according to M-models described in Table 1. Different thicknesses were used: 1 mm thick elect,"[304, 1022, 1113, 1165]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
17,21,text,"Cell culture and cell seeding. The osteoblastic MC3T3-E1 cells (CRL-2593, ATCC, Barcelona, Spain) were maintained at 37°C in a 5% CO₂ humidified atmosphere with 2 mM L-glutamine-containing Minimum Ess","[304, 1178, 1113, 1323]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,unknown_like,none,True,True
17,22,text,"Proliferation and metabolism assays. The Trypan Blue (Sigma-Aldrich, UK) membrane exclusion assay was used to assess cell proliferation. Briefly, 1 × 10⁴ and 1 × 10⁵ cells were plated into 35 mm dishe","[305, 1334, 1114, 1479]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
17,23,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[77, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
17,24,number,17,"[1088, 1517, 1112, 1536]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
18,0,header,www.nature.com/scientificreports/,"[78, 29, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
18,1,chart,,"[307, 86, 799, 425]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
18,2,figure_title,"Figure 17. Electric field along $ (x, y, 0.505) $ [mm] and $ (x, 0, 0.505) $ [mm] for stimuli analysis throughout the proliferation stage, as well as along $ (x, y, 0.51) $ [mm] and $ (x, 0, 0.51)","[306, 444, 1096, 508]",figure_caption,0.92,"[""figure_title label: Figure 17. Electric field along $ (x, y, 0.505) $ [mm] and ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
18,3,text,"Fisher Scientific, USA). Resazurin reduction was monitored at 570 and 600 nm (Infinite 200 PRO, Tecan). The OD 570/OD 600 nm ratio of the blank was subtracted to the OD 570/OD 600 nm ratio of each con","[305, 567, 1113, 630]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,4,text,"Alkaline phosphatase (ALP) activity. Secreted ALP activity was determined using $ \rho $-nitrophenyl phosphate (Calbiochem, Merck, Germany) as the enzyme substrate. Conditioned media of 21 DIV stimul","[305, 646, 1114, 751]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
18,5,text,"Immunoblot evaluation of osteoblast differentiation markers. Expression of secreted and synthesized protein markers was determined in conditioned medium and cell lysates, respectively. Conditioned med","[304, 766, 1114, 1090]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
18,6,text,"Immunocytochemistry and laser scanning confocal microscopy. Briefly, cells grown in coverslips were fixed with 4% paraformaldehyde/PBS (20 min) and permeabilized with 0.2% Triton X-100/1x PBS (10 min)","[305, 1105, 1114, 1270]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
18,7,text,"Alizarin Red S assays. According to Gregory and Grady Gunn $ ^{49} $ protocol, after 14 and 28 DIV cells were fixed with 4% paraformaldehyde/PBS and further incubated for 20 min at RT with Alizarin Re","[305, 1285, 1114, 1429]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
18,8,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
18,9,number,18,"[1086, 1515, 1112, 1534]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
19,0,header,www.nature.com/scientificreports/,"[77, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
19,1,text,"Statistical analysis of biological tests. Raw values were compared to control levels, converted to fold increase values and averaged. The standard error of the mean (SEM) was calculated and data prese","[304, 95, 1114, 241]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,2,paragraph_title,References,"[308, 254, 420, 274]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
19,3,reference_content,"1. Garland, D. et al. A 3-month, randomized, double-blind, placebo-controlled study to evaluate the safety and efficacy of a highly optimized, capacitively coupled, pulsed electrical stimulator in pat","[313, 276, 1113, 326]",reference_item,0.85,"[""reference content label: 1. Garland, D. et al. A 3-month, randomized, double-blind, p""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,4,reference_content,"2. Zeng, C. et al. Electrical stimulation for pain relief in knee osteoarthritis: systematic review and network meta-analysis. Osteoarthritis and Cartilage 23(2), 189202 (2015).","[314, 326, 1112, 360]",reference_item,0.85,"[""reference content label: 2. Zeng, C. et al. Electrical stimulation for pain relief in""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,5,reference_content,"3. Polania, R., Nitsche, M. A. & Ruff, C. C. Studying and modifying brain function with non-invasive brain stimulation. Nature Neuroscience 21, 174187 (2018).","[315, 360, 1112, 394]",reference_item,0.85,"[""reference content label: 3. Polania, R., Nitsche, M. A. & Ruff, C. C. Studying and mo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,6,reference_content,"4. Rattay, F., Bassereh, H. & Fellner, A. Impact of electrode position on the elicitation of sodium spikes in retinal bipolar cells. Scientific Reports 7, 17590 (2017).","[315, 395, 1113, 428]",reference_item,0.85,"[""reference content label: 4. Rattay, F., Bassereh, H. & Fellner, A. Impact of electrod""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,7,reference_content,"5. Ezzyat, Y. et al. Closed-loop stimulation of temporal cortex rescues functional networks and improves memory. Nature Communications 9, 365 (2018).","[316, 428, 1112, 462]",reference_item,0.85,"[""reference content label: 5. Ezzyat, Y. et al. Closed-loop stimulation of temporal cor""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,8,reference_content,"6. Klooster, D. C. W. et al. Technical aspects of neurostimulation: Focus on equipment, electric field modeling, and stimulation protocols. Neuroscience and Biobehavioral Reviews 65, 113141 (2016).","[316, 462, 1112, 497]",reference_item,0.85,"[""reference content label: 6. Klooster, D. C. W. et al. Technical aspects of neurostimu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,9,reference_content,"7. Gall, C. et al. Non-invasive electric current stimulation for restoration of vision after unilateral occipital stroke. Contemporary Clinical Trials 43, 231236 (2015).","[317, 496, 1111, 528]",reference_item,0.85,"[""reference content label: 7. Gall, C. et al. Non-invasive electric current stimulation""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,10,reference_content,"8. Zhang, H. et al. Moderate-intensity 4 mt static magnetic fields prevent bone architectural deterioration and strength reduction by stimulating bone formation in streptozotocin-treated diabetic rat.","[315, 531, 1111, 564]",reference_item,0.85,"[""reference content label: 8. Zhang, H. et al. Moderate-intensity 4 mt static magnetic ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,11,reference_content,"9. Lei, T. et al. Pulsed electromagnetic fields (PEMF) attenuate changes in vertebral bone mass, architecture and strength in ovariectomized mice. Bone 108, 1019 (2018).","[313, 565, 1111, 598]",reference_item,0.85,"[""reference content label: 9. Lei, T. et al. Pulsed electromagnetic fields (PEMF) atten""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,12,reference_content,"10. Hong, J. M., Kang, K. S., Yi, H.-G., Kim, S.-Y. & Cho, D. W. Electromagnetically controllable osteoclast activity. Bone 62, 99107 (2014).","[310, 598, 1111, 615]",reference_item,0.85,"[""reference content label: 10. Hong, J. M., Kang, K. S., Yi, H.-G., Kim, S.-Y. & Cho, D""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,13,reference_content,"11. Vöröslakos, M. et al. Direct effects of transcranial electric stimulation on brain circuits in rats and humans. Nature Communications 9, 483 (2018).","[310, 615, 1112, 648]",reference_item,0.85,"[""reference content label: 11. V\u00f6r\u00f6slakos, M. et al. Direct effects of transcranial ele""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,14,reference_content,"12. Soares dos Santos, M. P. et al. New cosurface capacitive stimulators for the development of active osseointegrative implantable devices. Scientific Reports 6, 30231 (2016).","[311, 649, 1112, 682]",reference_item,0.85,"[""reference content label: 12. Soares dos Santos, M. P. et al. New cosurface capacitive""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,15,reference_content,"13. Leppik, L. P. et al. Effects of electrical stimulation on rat limb regeneration, a new look at an old model. Scientific Reports 5, 18353 (2015).","[310, 684, 1112, 700]",reference_item,0.85,"[""reference content label: 13. Leppik, L. P. et al. Effects of electrical stimulation o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,16,reference_content,"14. Min, Y. et al. Self-doped polyaniline-based interdigitated electrodes for electrical stimulation of osteoblast cell lines. Synthetic Metals 198, 308313 (2014).","[310, 702, 1112, 734]",reference_item,0.85,"[""reference content label: 14. Min, Y. et al. Self-doped polyaniline-based interdigitat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,17,reference_content,"15. Bonmassar, G. et al. Microscopic magnetic stimulation of neural tissue. Nature Communications 3, 921 (2012).","[309, 735, 993, 751]",reference_item,0.85,"[""reference content label: 15. Bonmassar, G. et al. Microscopic magnetic stimulation of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,18,reference_content,"16. Tsai, D., Sawyer, D., Bradd, A., Yuste, R. & Shepard, K. L. A very large-scale microelectrode array for cellular resolution electrophysiology. Nature Communications 8, 1802 (2017).","[310, 751, 1111, 785]",reference_item,0.85,"[""reference content label: 16. Tsai, D., Sawyer, D., Bradd, A., Yuste, R. & Shepard, K.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,19,reference_content,"17. Yavari, F., Nitsche, M. A. & Ekhtiari, H. Transcranial electric stimulation for precision medicine: A spatiomechanistic framework. Frontiers in Human Neuroscience 11, 159 (2017).","[309, 786, 1111, 819]",reference_item,0.85,"[""reference content label: 17. Yavari, F., Nitsche, M. A. & Ekhtiari, H. Transcranial e""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,20,reference_content,"18. Parazzini, M. et al. A computational model of the electric field distribution due to regional personalized or nonpersonalized electrodes to select transcranial electric stimulation target. IEEE Tr","[310, 820, 1111, 854]",reference_item,0.85,"[""reference content label: 18. Parazzini, M. et al. A computational model of the electr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,21,reference_content,"19. Grehl, S. et al. In vitro magnetic stimulation: A simple stimulation device to deliver dened low intensity electromagnetic fields. Frontiers in Neural Circuits 10, 85 (2016).","[309, 854, 1111, 887]",reference_item,0.85,"[""reference content label: 19. Grehl, S. et al. In vitro magnetic stimulation: A simple""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,22,reference_content,"20. Bonmassar, G. & Golestanirad, L. EM fields comparison between planar vs. solenoidal ms coil designs for nerve stimulation, in: 2017 39th Annual International Conference of the IEEE Engineering in ","[309, 888, 1111, 922]",reference_item,0.85,"[""reference content label: 20. Bonmassar, G. & Golestanirad, L. EM fields comparison be""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,23,reference_content,"21. Lavenus, S. et al. Behaviour of mesenchymal stem cells, fibroblasts and osteoblasts on smooth surfaces. Acta Biomaterialia 7(4), 15251534 (2011).","[308, 923, 1111, 954]",reference_item,0.85,"[""reference content label: 21. Lavenus, S. et al. Behaviour of mesenchymal stem cells, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,24,reference_content,"22. Torrão, J. N. D., dos Santos, M. P. S. & Ferreira, J. A. F. Instrumented knee joint implants: innovations and promising concepts. Expert Reviews of Medical Devices 12(5), 571584 (2015).","[308, 956, 1112, 989]",reference_item,0.85,"[""reference content label: 22. Torr\u00e3o, J. N. D., dos Santos, M. P. S. & Ferreira, J. A.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,25,reference_content,"23. Soares dos Santos, M. P., Ferreira, J. A. F., Ramos, A. & Simões, J. A. O. Active orthopaedic implants: Towards optimality. Journal of the Franklin Institute 352(3), 813834 (2015).","[309, 990, 1114, 1023]",reference_item,0.85,"[""reference content label: 23. Soares dos Santos, M. P., Ferreira, J. A. F., Ramos, A. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,26,reference_content,"24. Soares dos Santos, M. P. et al. Instrumented hip joint replacements, femoral replacements and femoral fracture stabilizers. Expert Reviews of Medical Devices 11(6), 617635 (2014).","[309, 1024, 1112, 1057]",reference_item,0.85,"[""reference content label: 24. Soares dos Santos, M. P. et al. Instrumented hip joint r""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,27,reference_content,"25. Soares dos Santos, M. P. et al. Instrumented hip implants: Electric supply systems. Journal of Biomechanics 46(15), 25612571 (2013).","[309, 1057, 1112, 1074]",reference_item,0.85,"[""reference content label: 25. Soares dos Santos, M. P. et al. Instrumented hip implant""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,28,reference_content,"26. Soares dos Santos, M. P. What can mathematics say about unsolved problems in medicine? Insights in Biology and Medicine 2, 12 (2018).","[311, 1078, 1112, 1093]",reference_item,0.85,"[""reference content label: 26. Soares dos Santos, M. P. What can mathematics say about ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,29,reference_content,"27. Hartig, M., Joos, U. & Wiesmann, H.-P. Capacitively coupled electric fields accelerate proliferation of osteoblast-like primary cells and increase bone extracellular matrix formation in vitro. Eur","[309, 1093, 1111, 1124]",reference_item,0.85,"[""reference content label: 27. Hartig, M., Joos, U. & Wiesmann, H.-P. Capacitively coup""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,30,reference_content,"28. Zhuang, H. et al. Electrical stimulation induces the level of TGF- $ \beta $1 mRNA in osteoblastic cells by a mechanism involving calcium/calmodulin pathway. Biochemical and Biophysical Research C","[310, 1127, 1111, 1160]",reference_item,0.85,"[""reference content label: 28. Zhuang, H. et al. Electrical stimulation induces the lev""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,31,reference_content,"29. Fitzsimmons, R. J., Farley, J. R., Adey, W. R. & Baylink, D. J. Frequency dependence of increased cell proliferation, in vitro, in exposures to a low-amplitude, low-frequency electric field: evide","[309, 1160, 1111, 1209]",reference_item,0.85,"[""reference content label: 29. Fitzsimmons, R. J., Farley, J. R., Adey, W. R. & Baylink""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,32,reference_content,"30. Impagliazzo, A., Mattei, A., Pompili, G. F. S., Setti, S. & Cadossi, R. Treatment of nonunited fractures with capacitively coupled electric field. Journal of Orthopaedics and Traumatology 7(1), 16","[310, 1211, 1112, 1244]",reference_item,0.85,"[""reference content label: 30. Impagliazzo, A., Mattei, A., Pompili, G. F. S., Setti, S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,33,reference_content,"31. Pepper, J. R., Herbert, M. A., Anderson, J. R. & Bobechko, W. P. Effect of capacitive coupled electrical stimulation on regenerate bone. Journal of Orthopaedic Research 14(2), 296302 (1996).","[310, 1245, 1111, 1278]",reference_item,0.85,"[""reference content label: 31. Pepper, J. R., Herbert, M. A., Anderson, J. R. & Bobechk""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,34,reference_content,"32. Scott, G. & King, J. B. A prospective, coupling double-blind of electrical capacitive bones in the treatment of non-union of long bones. The Journal of Bone and Joint Surgery-American 76(6), 8208","[309, 1279, 1112, 1312]",reference_item,0.85,"[""reference content label: 32. Scott, G. & King, J. B. A prospective, coupling double-b""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,35,reference_content,"33. Mäkelä, E. A. Capacitively coupled electrical field in the treatment of a leg fracture after total knee replacement. Journal of Orthopaedic Trauma 6(2), 237240 (1992).","[309, 1313, 1113, 1346]",reference_item,0.85,"[""reference content label: 33. M\u00e4kel\u00e4, E. A. Capacitively coupled electrical field in t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,36,reference_content,"34. Brighton, C. T. & Pollack, S. Treatment of nonunion of the tibia with a capacitively coupled electrical field. Journal of Trauma and Acute Care Surgery 24(2), 153155 (1984).","[309, 1346, 1112, 1379]",reference_item,0.85,"[""reference content label: 34. Brighton, C. T. & Pollack, S. Treatment of nonunion of t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,37,reference_content,"35. Brighton, C. T., Pfeffer, G. B. & Pollack, S. R. In vivo growth plate stimulation in various capacitively coupled electrical fields. Journal of Orthopaedic Research 1(1), 4249 (1983).","[308, 1381, 1113, 1414]",reference_item,0.85,"[""reference content label: 35. Brighton, C. T., Pfeffer, G. B. & Pollack, S. R. In vivo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,38,reference_content,"36. Pina, S. et al. In vitro performance assessment of new brushite-forming Zn- and ZnSr-substituted $ \beta $-TCP bone cements. Journal of Biomedical Materials Research 94B(2), 414420 (2010).","[309, 1416, 1113, 1448]",reference_item,0.85,"[""reference content label: 36. Pina, S. et al. In vitro performance assessment of new b""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,39,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
19,40,number,19,"[1085, 1517, 1111, 1536]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
20,0,header,www.nature.com/scientificreports/,"[78, 30, 401, 50]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
20,1,reference_content,"37. Orimo, H. The mechanism of mineralization and the role of alkaline phosphatase in health and disease. Journal of Nippon Medical School 77(1), 412 (2010).","[308, 97, 1111, 129]",reference_item,0.85,"[""reference content label: 37. Orimo, H. The mechanism of mineralization and the role o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,2,reference_content,"38. Sharma, U., Pal, D. & Prasad, R. Alkaline phosphatase: An overview. Indian Journal of Clinical Biochemistry 29(3), 269278 (2014).","[307, 131, 1110, 149]",reference_item,0.85,"[""reference content label: 38. Sharma, U., Pal, D. & Prasad, R. Alkaline phosphatase: A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,3,reference_content,"39. Lafon, B. et al. Low frequency transcranial electrical stimulation does not entrain sleep rhythms measured by human intracranial recordings. Nature Communications 8(1199) (2017).","[310, 150, 1111, 181]",reference_item,0.85,"[""reference content label: 39. Lafon, B. et al. Low frequency transcranial electrical s""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,4,reference_content,"40. Silva, N. M. et al. Power management architecture for smart hip prostheses comprising multiple energy harvesting systems. Sensors and Actuators A: Physical 202, 183192 (2013).","[309, 183, 1111, 216]",reference_item,0.85,"[""reference content label: 40. Silva, N. M. et al. Power management architecture for sm""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,5,reference_content,"41. Soares dos Santos, M. P. et al. Magnetic levitation-based electromagnetic energy harvesting: a semi-analytical non-linear model for energy transduction. Scientific Reports 6(18579) (2016).","[309, 217, 1111, 249]",reference_item,0.85,"[""reference content label: 41. Soares dos Santos, M. P. et al. Magnetic levitation-base""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,6,reference_content,"42. Schmidt, C., Zimmermann, U. & van Rienen, U. Modeling of an optimized electrostimulative hip revision system under consideration of uncertainty in the conductivity of bone tissue. IEEE Journal of ","[309, 252, 1111, 283]",reference_item,0.85,"[""reference content label: 42. Schmidt, C., Zimmermann, U. & van Rienen, U. Modeling of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,7,reference_content,"43. Griffin, M., Sebastian, A., Colthurst, J. & Bayat, A. Enhancement of differentiation and mineralisation of osteoblast-like cells by degenerate electrical waveform in an in vitro electrical stimula","[309, 286, 1111, 317]",reference_item,0.85,"[""reference content label: 43. Griffin, M., Sebastian, A., Colthurst, J. & Bayat, A. En""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,8,reference_content,"44. Brighton, C. T., Wang, W., Seldes, R., Zhang, G. & Pollack, S. Signal transduction in electrically stimulated bone cells. The Journal of Bone and Joint Surgery 83(10), 15141523 (2001).","[309, 319, 1113, 351]",reference_item,0.85,"[""reference content label: 44. Brighton, C. T., Wang, W., Seldes, R., Zhang, G. & Polla""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,9,reference_content,"45. Park, H.-J. et al. Activation of the central nervous system induced by micro-magnetic stimulation. Nature Communications 4, 2463 (2013).","[308, 352, 1111, 369]",reference_item,0.85,"[""reference content label: 45. Park, H.-J. et al. Activation of the central nervous sys""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,10,reference_content,"46. Cho, H. et al. Neural stimulation on human bone marrow-derived mesenchymal stem cells by extremely low frequency electromagnetic fields. Biotechnology Progress 28(5), 13291335 (2012).","[310, 369, 1111, 402]",reference_item,0.85,"[""reference content label: 46. Cho, H. et al. Neural stimulation on human bone marrow-d""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,11,reference_content,"47. Marques, C. F. et al. Biphasic calcium phosphate scaffolds fabricated by direct write assembly: Mechanical, anti-microbial and osteoblastic properties. Journal of the European Ceramic Society 37(1","[309, 404, 1111, 437]",reference_item,0.85,"[""reference content label: 47. Marques, C. F. et al. Biphasic calcium phosphate scaffol""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,12,reference_content,"48. Torres, P. M. C. et al. Injectable MnSr-doped brushite bone cements with improved biological performance. Journal of Materials Chemistry B 5, 2775 (2017).","[309, 438, 1111, 470]",reference_item,0.85,"[""reference content label: 48. Torres, P. M. C. et al. Injectable MnSr-doped brushite b""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,13,reference_content,"49. Gregory, C. A., Gunn, W. G., Peister, A. & Prockop, D. J. An alizarin red-based assay of mineralization by adherent cells in culture: comparison with cetylpyridinium chloride extraction. Analytica","[309, 472, 1112, 504]",reference_item,0.85,"[""reference content label: 49. Gregory, C. A., Gunn, W. G., Peister, A. & Prockop, D. J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,14,reference_content,"50. Ozawa, H., Abe, E., Shibasaki, Y., Fukuhara, T. & Suda, T. Electric fields stimulate DNA synthesis of mouse osteoblast-like cells (MC3T3-El) by a mechanism involving calcium ions. Journal of Cellu","[309, 506, 1112, 539]",reference_item,0.85,"[""reference content label: 50. Ozawa, H., Abe, E., Shibasaki, Y., Fukuhara, T. & Suda, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,15,reference_content,"51. Pucihar, G., Kotnik, T., Kandušer, M. & Miklavčič, D. The influence of medium conductivity on electropemeabilization and survival of cells in vitro. Bioelectrochemistry 54(2), 107115 (2001).","[310, 540, 1111, 572]",reference_item,0.85,"[""reference content label: 51. Pucihar, G., Kotnik, T., Kandu\u0161er, M. & Miklav\u010di\u010d, D. Th""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,16,reference_content,"52. Wiesmann, H.-P., Hartig, M., Stratmann, U., Meyer, U. & Joos, U. Electrical stimulation influences mineral formation of osteoblast-like cells in vitro. Biochimica et Biophysica Acta (BBA) - Molecu","[309, 574, 1111, 608]",reference_item,0.85,"[""reference content label: 52. Wiesmann, H.-P., Hartig, M., Stratmann, U., Meyer, U. & ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,17,reference_content,"53. Tomaselli, V. P. & Shamos, M. H. Electrical properties of hydrated collagen. I. dielectric properties. Biopolymers 12(2), 353366 (1973).","[310, 608, 1112, 624]",reference_item,0.85,"[""reference content label: 53. Tomaselli, V. P. & Shamos, M. H. Electrical properties o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,18,reference_content,"54. Tomaselli, V. P. & Shamos, M. H. Electrical properties of hydrated collagen. II. semi conductor properties. Biopolymers 13(12), 24232434 (1974).","[308, 623, 1110, 657]",reference_item,0.85,"[""reference content label: 54. Tomaselli, V. P. & Shamos, M. H. Electrical properties o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,19,reference_content,"55. Brandup, J., Immergut, E. H. & Grulke, E. A. (Eds), Polymer Handbook, 4th Edition. (John Wiley and Sons, New York, 1999).","[308, 658, 1075, 675]",reference_item,0.85,"[""reference content label: 55. Brandup, J., Immergut, E. H. & Grulke, E. A. (Eds), Poly""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,20,reference_content,"56. Behari, J. & Behari, J. Changes in bone histology due to capacitive electric field stimulation of ovariectomized rat. The Indian Journal of Medical Research 130(6), 720725 (2009).","[308, 676, 1112, 708]",reference_item,0.85,"[""reference content label: 56. Behari, J. & Behari, J. Changes in bone histology due to""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,21,reference_content,"57. Manjhi, J., Mathur, R. & Behari, J. Effect of low level capacitive-coupled pulsed electric field stimulation on mineral profile of weight-bearing bones in ovariectomized rats. Journal of Biomedica","[309, 710, 1111, 744]",reference_item,0.85,"[""reference content label: 57. Manjhi, J., Mathur, R. & Behari, J. Effect of low level ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,22,paragraph_title,Acknowledgements,"[308, 765, 502, 787]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements""]",sub_subsection_heading,0.6,tail_nonref_hold_zone,heading_like,short_fragment,True,True
20,23,text,"This work was funded by Portuguese Foundation for Science and Technology, through the grant ref. SFRH/BPD/117475/2016 and research project ref. POCI-01-0145-FEDER-031132. It was also supported by the ","[305, 788, 1114, 890]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,unknown_like,none,True,True
20,24,paragraph_title,Author Contributions,"[307, 909, 515, 931]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Author Contributions""]",subsection_heading,0.6,tail_nonref_hold_zone,support_like,none,False,True
20,25,text,"Marco P. Soares dos Santos and A. Ramos helped managing and supervising the research project. Marco P. Soares dos Santos, Jorge A.F. Ferreira, Sandra I. Vieira, A. Torres Marques and Jos A.O. Simões d","[305, 932, 1114, 1053]",reference_item,0.82,"[""default body_paragraph for text label"", ""late role resolution: reference_like family + reference zone"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,reference_zone,reference_like,citation_line,True,True
20,26,paragraph_title,Additional Information,"[308, 1073, 532, 1095]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Additional Information""]",backmatter_boundary_candidate,0.5,,heading_like,none,True,True
20,27,text,Supplementary information accompanies this paper at https://doi.org/10.1038/s41598-019-41540-3.,"[307, 1095, 1038, 1116]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,unknown_like,none,True,True
20,28,text,Competing Interests: The authors declare no competing interests.,"[307, 1125, 787, 1146]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
20,29,text,"Publisher's note: Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Open Access This article is licensed under a Creative Commons A","[306, 1153, 1092, 1193]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,support_like,none,True,True
20,30,text,,"[305, 1203, 1114, 1366]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
20,31,text,,"[308, 1382, 473, 1404]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
20,32,image,,"[309, 1205, 395, 1236]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
20,33,footer,SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3,"[78, 1514, 675, 1534]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
20,34,number,20,"[1085, 1517, 1112, 1533]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header www.nature.com/scientificreports [776, 28, 1101, 51] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
3 1 1 doc_title SCIENTIFIC REPORTS [78, 130, 1112, 264] paper_title 0.8 ["page-1 zone title_zone: SCIENTIFIC REPORTS"] paper_title 0.8 frontmatter_main_zone support_like short_fragment True True
4 1 2 text OPEN [183, 300, 285, 336] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 frontmatter_main_zone support_like short_fragment False True
5 1 3 text Received: 23 October 2018 [14, 481, 209, 505] frontmatter_noise 0.7 ["frontmatter noise text: Received: 23 October 2018"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
6 1 4 text Published online: 21 March 2019 [13, 536, 251, 562] frontmatter_noise 0.7 ["frontmatter noise text: Published online: 21 March 2019"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
7 1 5 text Accepted: 28 February 2019 [14, 509, 219, 534] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Accepted: 28 February 2019"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
8 1 6 doc_title Capacitive technologies for highly controlled and personalized electrical stimulation by implantable biomedical systems [304, 297, 1068, 533] paper_title 0.8 ["page-1 zone title_zone: Capacitive technologies for highly controlled and personaliz"] paper_title 0.8 frontmatter_main_zone support_like none True True
9 1 7 text Marco P. Soares dos Santos$^{1,2,3}$, J. Coutinho$^{2}$, Ana Marote$^{4}$, Bárbara Sousa$^{4}$, A. Ramos$^{1,2}$, Jorge A. F. Ferreira$^{1,2}$, Rodrigo Bernardo$^{2}$, André Rodrigues$^{2}$, A. Torres [304, 547, 1062, 623] authors 0.8 ["page-1 zone author_zone: Marco P. Soares dos Santos$^{1,2,3}$, J. Coutinho$^{2}$, Ana"] authors 0.8 body_zone reference_like citation_line True True
10 1 8 abstract Cosurface electrode architectures are able to deliver personalized electric stimuli to target tissues. As such, this technology holds potential for a variety of innovative biomedical devices. However, [304, 636, 1111, 971] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
11 1 9 text The widespread bioapplications of electromagnetic stimulation (E-Stim), for both research and clinical practice, emphasize the versatility of this biophysical method for a wide range of customized the [303, 1009, 1114, 1314] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
12 1 10 text $ ^{1} $Centre for Mechanical Technology & Automation (TEMA), University of Aveiro, Aveiro, Portugal. $ ^{2} $Department of Mechanical Engineering, University of Aveiro, Aveiro, Portugal. $ ^{3} $A [304, 1337, 1114, 1481] frontmatter_noise 0.8 ["frontmatter phrase: $ ^{1} $Centre for Mechanical Technology & Automation (TEMA)"] frontmatter_noise 0.8 body_zone body_like affiliation_marker False False
13 1 11 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1513, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
14 1 12 number 1 [1098, 1517, 1111, 1534] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
15 2 0 header www.nature.com/scientificreports/ [77, 29, 401, 51] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
16 2 1 text electrostimulus bone implants $ ^{12,16} $. Each electrode can be independently controlled according to personalized excitations to provide target-oriented stimulations $ ^{12,16} $. The potential of [304, 96, 1114, 360] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
17 2 2 paragraph_title Cosurface Capacitive Architectures [306, 373, 642, 395] unknown_structural 0.6 ["page-1 frontmatter title guard: Cosurface Capacitive Architectures"] paper_title 0.6 body_zone heading_like none False True
18 2 3 text The electrode stimulation architectures considered in this study were designed for the delivery of controllable electric fields to bone cells cultured on plastic dishes $ ^{12} $. All electrode patter [304, 395, 1114, 539] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
19 2 4 text - Stripped pattern: the M-pattern comprises 12 electrodes horizontally arranged with different lengths, as shown in Fig. 1a. A 0.5 mm gap between electrodes was parameterized, but the effects of its v [305, 556, 1112, 637] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
20 2 5 text - Interdigitated pattern: the M-pattern is only composed by 2 electrodes, each one with 6 re-entrant stripes of different length (according to the circular border of culture dishes) and 0.5 mm apart, [305, 637, 1113, 717] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 2 6 text - Circular pattern: the M-pattern was modeled with 7 horizontally arranged electrodes (Fig. 1e), 0.5 mm apart from each other; and the S-pattern with 3 electrodes, corresponding to the smaller diamete [305, 718, 1113, 779] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
22 2 7 text A parallel architecture was also modeled for comparative purposes (used as control). Its M-pattern was designed with 32 mm diameter electrodes, 1.5 mm apart from each other. This pattern only differs [304, 797, 1115, 901] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
23 2 8 paragraph_title Computational Models [307, 913, 531, 935] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Computational Models"] subsection_heading 0.6 body_zone heading_like none True True
24 2 9 text The electric field stimuli provided by our cosurface capacitive stimulation systems was simulated using 8 finite element computational models: [305, 935, 1112, 978] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
25 2 10 text - A macro-scale model (M-model) and a simplified model (S-model) for the M-patterned and S-patterned striped stimulator, respectively (Fig. 3a); [305, 997, 1112, 1038] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
26 2 11 text - A M-model and a S-model for the M-patterned and S-patterned interdigitated stimulator, respectively (Fig. 3b); [306, 1038, 1112, 1078] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
27 2 12 text - A M-model and a S-model for the M-patterned and S-patterned circular stimulator, respectively (Fig. 3c); and - A M-model and a S-model for the parallel stimulator (Fig. 3d). [306, 1078, 1112, 1118] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
28 2 13 text Both M-models and S-models were designed considering apparatus recently validated in in silico and in vitro to analyze the effects of electromagnetic stimulation throughout proliferation and different [304, 1138, 1114, 1482] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
29 2 14 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
30 2 15 number 2 [1098, 1518, 1111, 1533] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
31 3 0 header www.nature.com/scientificreports/ [78, 29, 401, 51] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
32 3 1 figure_title (a) [394, 89, 434, 125] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
33 3 2 image [307, 144, 528, 374] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
34 3 3 figure_title (c) [401, 400, 437, 437] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
35 3 4 figure_title (b) [683, 88, 723, 125] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
36 3 5 image [569, 177, 682, 340] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
37 3 6 image [741, 114, 894, 406] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
38 3 7 figure_title (d) [688, 401, 728, 439] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
39 3 8 image [309, 445, 535, 666] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
40 3 9 figure_title (e) [400, 701, 441, 738] figure_inner_text 0.9 ["panel label / figure inner text: (e)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
41 3 10 image [549, 500, 715, 641] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
42 3 11 image [742, 463, 916, 663] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
43 3 12 figure_title (f) [696, 706, 730, 745] figure_inner_text 0.9 ["panel label / figure inner text: (f)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
44 3 13 image [306, 745, 536, 964] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
45 3 14 image [552, 776, 698, 930] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
46 3 15 image [724, 764, 906, 958] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
47 3 16 figure_title Figure 1. Cosurface capacitive architectures analysed in this study: (a) M-pattern of the stripped pattern; (b) S-pattern of the stripped pattern; (c) M-pattern of the interdigitated pattern; (d) S-pa [305, 985, 1097, 1051] figure_caption 0.92 ["figure_title label: Figure 1. Cosurface capacitive architectures analysed in thi"] figure_caption 0.92 display_zone legend_like figure_number True True
48 3 17 image [312, 1097, 1106, 1342] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
49 3 18 figure_title Figure 2. Schematics of the overall stimulation system, which is effective for electric stimulation using stripped, interdigitated and circular patterns. It also refer details of the experimental appa [305, 1362, 1111, 1425] figure_caption 0.92 ["figure_title label: Figure 2. Schematics of the overall stimulation system, whic"] figure_caption 0.92 display_zone legend_like figure_number True True
50 3 19 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1513, 675, 1535] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
51 3 20 number 3 [1098, 1517, 1111, 1538] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
52 4 0 header www.nature.com/scientificreports/ [78, 29, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
53 4 1 figure_title (a) [452, 91, 489, 125] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
54 4 2 figure_title (b) [720, 90, 759, 125] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
55 4 3 image [308, 131, 582, 351] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
56 4 4 figure_title (c) [979, 89, 1016, 124] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
57 4 5 image [629, 135, 849, 353] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
58 4 6 image [891, 135, 1106, 351] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
59 4 7 figure_title (d) [723, 379, 761, 414] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
60 4 8 image [576, 421, 909, 638] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
61 4 9 figure_title Figure 3. M-models of cosurface capacitive architectures (exploded view): (a) Striped pattern; (b) Interdigitated pattern; (c) Circular pattern. M-models of the parallel architecture (d). Domains: 1 - [306, 662, 1090, 768] figure_caption 0.92 ["figure_title label: Figure 3. M-models of cosurface capacitive architectures (ex"] figure_caption 0.92 display_zone legend_like figure_number True True
62 4 10 table <table><tr><td rowspan="3">Domain</td><td colspan="8">Dimensions of domains</td></tr><tr><td colspan="4">M-model</td><td colspan="4">S-model</td></tr><tr><td>Striped</td><td>Interdigitated</td><td>Cir [121, 815, 1107, 1082] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
63 4 11 figure_title Table 1. Dimensions of each domain for both M- and S-models of striped, interdigitated and circular cosurface capacitive stimulators. $ {}^{a} $Diameter. $ {}^{b} $Each stripe. $ {}^{c} $Overall le [304, 1098, 1109, 1162] table_caption 0.9 ["table prefix matched: Table 1. Dimensions of each domain for both M- and S-models "] table_caption 0.9 display_zone table_caption_like table_number True True
64 4 12 text Polymeric dishes and substrates were used as they exhibit very high electrical resistivity. A material evidencing very high electrical conductivity properties was considered for all patterned electrod [306, 1216, 1112, 1260] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 4 13 paragraph_title Excitations Powering the Stimulators [307, 1277, 667, 1299] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Excitations Powering the Stimulators"] subsection_heading 0.6 body_zone heading_like none True True
66 4 14 text The electric excitations applied to drive the electrodes were defined to simulate an external power supply. Table 3 describes the chosen excitations parameters and the implemented configurations. Both [304, 1299, 1115, 1464] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 4 15 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
68 4 16 number 4 [1097, 1517, 1111, 1536] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
69 5 0 header www.nature.com/scientificreports/ [78, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
70 5 1 table <table><tr><td>Domain</td><td>Relative electric permittivity</td><td>Electric conductivity [S/m]</td><td>Relative magnetic permeability</td><td>Reference</td></tr><tr><td>Culture medium (liquid soluti [310, 90, 973, 340] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
71 5 2 figure_title Table 2. Electric and magnetic properties of their organic and inorganic materials composing the striped, interdigitated and circular cosurface capacitive stimulators. [306, 356, 1067, 399] table_caption 0.9 ["table prefix matched: Table 2. Electric and magnetic properties of their organic a"] table_caption 0.9 display_zone table_caption_like table_number True True
72 5 3 text devices $ ^{12,14} $. Finally, Fig. 4 shows the configurations defined to control the stimuli delivered to each region of the cell culture. All patterns and architectures were simulated considering an [305, 444, 1114, 508] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
73 5 4 paragraph_title Results [307, 524, 385, 546] section_heading 0.9 ["explicit scholarly heading: Results"] section_heading 0.9 body_zone heading_like canonical_section_name True True
74 5 5 text S-patterns were used to analyze in silico the impacts of cell confluence, cosurface architecture, electrodes geometry (thickness and width), gap size between electrodes and power excitation on the ele [304, 547, 1114, 710] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 5 6 text Cell confluence influence on electric field stimuli. The stimuli distribution and dynamics along the cellular layer (low cell confluence condition; proliferation stage; $ z \in [0.5 \ 0.51] $ [mm], w [304, 726, 1114, 851] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
76 5 7 text Architecture influence on the electric field stimuli. Frequency- and region-dependent electric field stimuli are delivered to osteoblastic cells, as shown by Figs 5 and 6. The following analysis first [304, 866, 1114, 1169] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
77 5 8 text Detailed analyses were also extended to the circular pattern. For low frequency excitations, the distribution and strength of the stimulus delivered by the circular pattern are similar to those delive [304, 1169, 1113, 1390] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
78 5 9 text Regarding the parallel architecture, homogeneous distributions are observed, as expected, and its stimulus magnitude at low frequency excitations is similar to the maximum stimuli magnitudes delivered [304, 1389, 1114, 1472] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
79 5 10 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
80 5 11 number 5 [1098, 1517, 1112, 1537] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
81 6 0 header www.nature.com/scientificreports/ [78, 29, 401, 51] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
82 6 1 figure_title (a) [378, 89, 420, 127] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
83 6 2 image [309, 136, 499, 327] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
84 6 3 figure_title (b) [636, 88, 680, 127] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
85 6 4 figure_title (c) [383, 350, 423, 389] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
86 6 5 image [602, 151, 720, 315] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
87 6 6 image [308, 394, 508, 595] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
88 6 7 figure_title (d) [638, 352, 682, 393] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
89 6 8 figure_title (e) [384, 619, 428, 659] figure_inner_text 0.9 ["panel label / figure inner text: (e)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
90 6 9 image [593, 431, 731, 540] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
91 6 10 figure_title (f) [649, 622, 686, 662] figure_inner_text 0.9 ["panel label / figure inner text: (f)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
92 6 11 image [310, 670, 502, 857] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
93 6 12 image [597, 685, 746, 836] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
94 6 13 figure_title Figure 4. Configurations of electric powering of stimulators: (a) M-model of the striped pattern; (b) S-model of the striped pattern; (c) M-model of the interdigitated pattern; (d) S-model of the inte [305, 878, 1095, 963] figure_caption 0.92 ["figure_title label: Figure 4. Configurations of electric powering of stimulators"] figure_caption 0.92 display_zone legend_like figure_number True True
95 6 14 table <table><tr><td>Pattern</td><td>Waveform</td><td>Amplitude [V]</td><td>Frequency [Hz]</td><td>Schematic</td><td>Reference</td></tr><tr><td>Stripped M- and S-pattern</td><td>Sinusoidal $ K(1-\cos(\omeg [310, 993, 959, 1208] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
96 6 15 figure_title Table 3. Electric excitation parameters defined to power electrodes and related schematics. [306, 1224, 964, 1246] table_caption 0.9 ["table prefix matched: Table 3. Electric excitation parameters defined to power ele"] table_caption 0.9 display_zone table_caption_like table_number True True
97 6 16 text Influence of the electrode thickness on the electric field stimuli. In silico experiments were also conducted to understand how the stimuli delivery performance is altered as the electrode thickness i [305, 1295, 1115, 1481] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
98 6 17 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
99 6 18 number 6 [1097, 1514, 1111, 1533] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
100 7 0 header www.nature.com/scientificreports/ [78, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
101 7 1 figure_title (a) [565, 90, 587, 109] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
102 7 2 chart [310, 109, 794, 494] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
103 7 3 figure_title (b) [562, 494, 586, 513] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
104 7 4 chart [307, 515, 791, 891] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
105 7 5 figure_title Figure 5. Electric field strength delivered by all patterns along $ (x, 0, 0.51) $ [mm], and dynamic behaviour in the point $ (0, 0, 0.51) $ using S-models for low frequency excitation (a) and high [305, 910, 1106, 953] figure_caption 0.92 ["figure_title label: Figure 5. Electric field strength delivered by all patterns "] figure_caption 0.92 display_zone legend_like figure_number True True
106 7 6 text Influence of the electrode width on the electric field stimuli. To highlight the influence of the electrodes width on cell stimulation, S-models of all architectures were redesigned using electrodes o [305, 998, 1114, 1162] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
107 7 7 text These are the main results when the impact of changing the electrode width is predicted. However, a closer analysis also reveals a shortened region where the decrease in the electric field magnitudes [305, 1161, 1114, 1402] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
108 7 8 text Cell stimulation by the cosurface circular pattern also exhibits noteworthy phenomena for decreasing widths (Fig. 8c,d): (i) a frequency-dependent changing pattern is observed; (ii) the changing effec [305, 1400, 1114, 1444] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
109 7 9 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
110 7 10 number 7 [1098, 1518, 1111, 1537] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
111 8 0 header www.nature.com/scientificreports/ [78, 29, 402, 51] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
112 8 1 chart [307, 88, 544, 325] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
113 8 2 figure_title (b) [667, 93, 702, 122] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
114 8 3 image [310, 87, 1107, 577] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
115 8 4 figure_title Figure 6. Electric field distributions using S-models for low frequency (a–c) and high frequency (d–f) excitations at $ \pi $ rad delivered by: (a,d) the stripped pattern along (x, y, 0.51) [mm]; (b, [305, 591, 1066, 657] figure_caption 0.92 ["figure_title label: Figure 6. Electric field distributions using S-models for lo"] figure_caption 0.92 display_zone legend_like figure_number True True
116 8 5 text around the same region ( $ |x| \approx 3 \text{ mm} $ for low frequency stimuli; $ |x| \approx 2.5 \text{ mm} $ and $ |x| \approx 4 \text{ mm} $ for high frequency stimuli); (iii) no significant mag [304, 705, 1112, 747] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
117 8 6 text In addition to these general results, one must also remark that the low frequency stimuli are not influenced by changes in the electrode width above the innermost electrode (Fig. 8c). Magnitude and wa [304, 746, 1115, 1072] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
118 8 7 text Influence of gap size between electrodes on the electric field stimuli. The influence of gap size between electrodes on cell stimulation was also examined by resizing gaps of the S-models to 1.5 mm, 1 [304, 1089, 1114, 1271] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
119 8 8 text These results emphasize that the gap size influence is similar to the electrode width influence (only differing by their signs) for both striped and interdigitated patterns Figs 8a,c and 9a,c). Detail [303, 1270, 1115, 1454] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
120 8 9 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1513, 675, 1535] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
121 8 10 number 8 [1097, 1514, 1112, 1533] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
122 9 0 header www.nature.com/scientificreports/ [78, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
123 9 1 figure_title (a) [564, 90, 587, 109] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
124 9 2 chart [308, 109, 794, 494] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
125 9 3 figure_title (b) [563, 497, 586, 517] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
126 9 4 chart [314, 519, 792, 896] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
127 9 5 figure_title Figure 7. Stimuli delivered along $ (x, 0, 0.51) $ [mm] by all cosurface stimulators with 0.1 mm thick electrodes: using S-models for low frequency excitation (a) and high frequency (b). [306, 915, 1090, 959] figure_caption 0.92 ["figure_title label: Figure 7. Stimuli delivered along $ (x, 0, 0.51) $ [mm] by "] figure_caption 0.92 display_zone legend_like figure_number True True
128 9 6 text charged electrodes, as well as above gaps; (iii) lower and slightly shifted minimum stimuli magnitudes; (iv) slightly larger distribution of constant stimuli in the cellular layer above negatively cha [305, 999, 1111, 1041] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
129 9 7 text The gap size also influences the stimuli delivered by the circular pattern. An overall analysis highlights that, as the gap size increases, cell stimulation is mainly focused above the innermost elect [305, 1041, 1115, 1324] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
130 9 8 text Influence of power excitation on the electric field stimuli. Linear interrelationships occur between power excitations supplying electrodes and the stimuli magnitudes delivered to cells along the over [305, 1343, 1111, 1428] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
131 9 9 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
132 9 10 number 9 [1097, 1518, 1111, 1536] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
133 10 0 header www.nature.com/scientificreports/ [78, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
134 10 1 figure_title (a) [491, 90, 511, 106] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
135 10 2 figure_title (c) [868, 92, 888, 108] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
136 10 3 chart [334, 111, 654, 287] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
137 10 4 chart [309, 301, 659, 580] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
138 10 5 chart [683, 108, 1035, 585] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
139 10 6 figure_title (b) [489, 596, 509, 615] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
140 10 7 figure_title (d) [866, 599, 887, 617] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
141 10 8 chart [339, 622, 652, 798] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
142 10 9 chart [718, 630, 1028, 799] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
143 10 10 chart [307, 802, 657, 1101] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
144 10 11 chart [682, 815, 1033, 1099] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
145 10 12 figure_title Figure 8. Influence of electrodes width (2 mm, 1 mm and 0.5 mm) on the stimuli delivered by striped and interdigitated patterns (a,b) and circular pattern (c,d) along (x, 0, 0.51) [mm] using S-models [306, 1117, 1108, 1201] figure_caption 0.92 ["figure_title label: Figure 8. Influence of electrodes width (2 mm, 1 mm and 0.5 "] figure_caption 0.92 display_zone legend_like figure_number True True
146 10 13 text Model validation. Electric stimuli provided by S-models and M-models were compared for validation purposes. Validation results highlight that low frequency stimulation delivered by M-patterns, paramet [305, 1250, 1114, 1455] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
147 10 14 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
148 10 15 number 10 [1086, 1517, 1112, 1534] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
149 11 0 header www.nature.com/scientificreports/ [78, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
150 11 1 header (c) [865, 90, 886, 107] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
151 11 2 chart [349, 98, 659, 300] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
152 11 3 chart [713, 114, 1025, 299] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
153 11 4 chart [308, 306, 664, 613] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
154 11 5 chart [679, 306, 1035, 615] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
155 11 6 figure_title (b) [493, 621, 510, 637] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
156 11 7 figure_title (d) [862, 620, 882, 638] figure_inner_text 0.9 ["panel label / figure inner text: (d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
157 11 8 chart [371, 642, 656, 830] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
158 11 9 chart [690, 643, 1027, 818] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
159 11 10 chart [307, 831, 663, 1126] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
160 11 11 chart [675, 821, 1029, 1124] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
161 11 12 figure_title Figure 9. Influence of gap between electrodes (1.5 mm, 1 mm and 0.5 mm) on the stimuli delivered by striped and interdigitated patterns (a,b) and circular pattern (c,d) along (x, 0, 0.51) [mm] using S [306, 1141, 1096, 1227] figure_caption 0.92 ["figure_title label: Figure 9. Influence of gap between electrodes (1.5 mm, 1 mm "] figure_caption 0.92 display_zone legend_like figure_number True True
162 11 13 text found for both low (Fig. 12a,b) and high frequency stimulation (Fig. 12c,d), as well as similar stimuli magnitudes, if cosurface stimulators comprise 0.1 mm thick electrodes. [305, 1272, 1112, 1315] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
163 11 14 text Influence of the stimulators architecture on in vitro osteoconductive effects. In vitro biological assays were conducted using stripped and interdigitated M-models with different electrode widths and [304, 1335, 1115, 1481] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
164 11 15 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
165 11 16 number 11 [1087, 1517, 1112, 1534] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
166 12 0 header www.nature.com/scientificreports/ [77, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
167 12 1 chart [309, 92, 794, 472] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
168 12 2 figure_title Figure 10. Influence of the power excitation (K=10 for 20 V) on the electric stimulation along (x, 0, 0.51) [mm] using S-models. LF - similar stimuli delivered by all patterns. [307, 493, 1070, 538] figure_caption 0.92 ["figure_title label: Figure 10. Influence of the power excitation (K=10 for 20 V)"] figure_caption 0.92 display_zone legend_like figure_number True True
169 12 3 chart [308, 573, 570, 801] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
170 12 4 chart [575, 577, 838, 801] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
171 12 5 chart [844, 574, 1105, 800] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
172 12 6 chart [306, 803, 569, 1006] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
173 12 7 chart [575, 805, 837, 1005] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
174 12 8 chart [843, 805, 1103, 1004] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
175 12 9 figure_title Figure 11. Comparison between electric field distributions using both S-models and M-models for low frequency (a–c) and high frequency (d–f) excitations using the striped pattern (a,d), interdigitated [306, 1022, 1107, 1086] figure_caption 0.92 ["figure_title label: Figure 11. Comparison between electric field distributions u"] figure_caption 0.92 display_zone legend_like figure_number True True
176 12 10 text proliferation over control, although with no statistical significance (Fig. 13b). These early (24h) alterations in cell proliferation are not accompanied by a decrease in cell metabolic activity (Fig. [305, 1147, 1114, 1248] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
177 12 11 text To assess matrix maturation upon electrical stimulation with stripped and interdigitated M-patterns, the levels of osteonectin and type-I collagen were analyzed by immunoblot following 7 days of stimu [305, 1247, 1114, 1451] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
178 12 12 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
179 12 13 number 12 [1086, 1517, 1112, 1534] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
180 13 0 header www.nature.com/scientificreports/ [78, 29, 401, 50] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
181 13 1 figure_title (a) [491, 90, 513, 108] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
182 13 2 chart [307, 95, 665, 396] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
183 13 3 figure_title (b) [862, 90, 883, 109] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
184 13 4 chart [675, 96, 1036, 394] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
185 13 5 chart [310, 401, 665, 679] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
186 13 6 chart [680, 401, 1036, 678] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
187 13 7 figure_title Figure 12. Comparison between electric field distributions using both S-models and M-models for low frequency (a,b) and high frequency (c,d) excitations using the striped and interdigitated patterns ( [306, 694, 1071, 759] figure_caption 0.92 ["figure_title label: Figure 12. Comparison between electric field distributions u"] figure_caption 0.92 display_zone legend_like figure_number True True
188 13 8 figure_title a) [311, 805, 334, 827] figure_inner_text 0.9 ["panel label / figure inner text: a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
189 13 9 figure_title b) [555, 805, 577, 827] figure_inner_text 0.9 ["panel label / figure inner text: b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
190 13 10 chart [308, 832, 522, 1084] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
191 13 11 chart [549, 837, 771, 1082] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
192 13 12 figure_title c) [807, 806, 829, 827] figure_inner_text 0.9 ["panel label / figure inner text: c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
193 13 13 chart [792, 830, 1103, 1081] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
194 13 14 figure_title Figure 13. Proliferation and viability of MC3T3 cells cultured in the absence of stimuli (CTRL), or daily exposed to low-frequency electric stimulation with two electrode patterns (stripped [STRIP] an [305, 1103, 1103, 1206] figure_caption 0.92 ["figure_title label: Figure 13. Proliferation and viability of MC3T3 cells cultur"] figure_caption 0.92 display_zone legend_like figure_number True True
195 13 15 text The levels of matrix mineralization were assessed with the calcium-staining dye Alizarin Red (ARS). As expected, ARS staining increased from 14 to 28 DIV for all conditions (Fig. 16a), but no differen [305, 1251, 1114, 1436] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
196 13 16 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1513, 675, 1534] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
197 13 17 number 13 [1087, 1517, 1112, 1536] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
198 14 0 header www.nature.com/scientificreports/ [77, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
199 14 1 figure_title a) [309, 91, 331, 114] figure_inner_text 0.9 ["panel label / figure inner text: a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
200 14 2 image [309, 93, 627, 213] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
201 14 3 figure_title c) [310, 229, 331, 252] figure_inner_text 0.9 ["panel label / figure inner text: c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
202 14 4 figure_title b) [676, 90, 698, 114] figure_inner_text 0.9 ["panel label / figure inner text: b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
203 14 5 image [310, 230, 621, 382] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
204 14 6 image [673, 92, 1036, 424] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
205 14 7 figure_title d) [309, 395, 332, 419] figure_inner_text 0.9 ["panel label / figure inner text: d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
206 14 8 chart [342, 430, 988, 705] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
207 14 9 figure_title Figure 14. Intracellular matrix maturation markers in MC3T3 cells cultured in the absence of stimuli (CTRL), or daily exposed to low-frequency electric stimulation with two electrode patterns (strippe [304, 723, 1112, 909] figure_caption 0.92 ["figure_title label: Figure 14. Intracellular matrix maturation markers in MC3T3 "] figure_caption 0.92 display_zone legend_like figure_number True True
208 14 10 paragraph_title Discussion [307, 955, 415, 978] section_heading 0.9 ["explicit scholarly heading: Discussion"] section_heading 0.9 body_zone heading_like canonical_section_name True True
209 14 11 text The therapeutic potential of non-drug strategies, mainly those performed by biophysical signals (electric, acoustic, thermal, mechanical, etc.), has been deeply explored for the treatment and preventi [304, 979, 1114, 1379] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
210 14 12 text The influence of the stimulator architecture and geometry on stimuli distribution is provided, for the first time, in this study. Included are analyses with a cosurface circular pattern that, to the k [304, 1379, 1115, 1462] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
211 14 13 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
212 14 14 number 14 [1086, 1517, 1112, 1536] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
213 15 0 header www.nature.com/scientificreports/ [77, 29, 401, 50] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
214 15 1 image [311, 94, 911, 545] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
215 15 2 figure_title Figure 15. Confocal microscopy analysis of MC3T3 osteoblasts cultured for 28 DIV in the absence of stimulus (CTRL) or upon daily stimulation with two electrode patterns (stripped [STRIP] and interdigi [305, 569, 1108, 655] figure_caption 0.92 ["figure_title label: Figure 15. Confocal microscopy analysis of MC3T3 osteoblasts"] figure_caption 0.92 display_zone legend_like figure_number True True
216 15 3 figure_title a) [312, 718, 336, 742] figure_inner_text 0.9 ["panel label / figure inner text: a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
217 15 4 chart [307, 746, 582, 1041] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
218 15 5 figure_title b) [607, 716, 633, 742] figure_inner_text 0.9 ["panel label / figure inner text: b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
219 15 6 chart [621, 746, 851, 1043] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
220 15 7 chart [880, 745, 1105, 1045] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
221 15 8 figure_title d) [359, 1096, 385, 1122] figure_inner_text 0.9 ["panel label / figure inner text: d)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
222 15 9 image [358, 1087, 1034, 1213] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
223 15 10 figure_title Figure 16. Analyses of the matrix mineralization markers in MC3T3 cells cultured in the absence of stimulus (CTRL) or upon daily stimulation with two electrode configurations (stripped [STRIP] and int [304, 1232, 1111, 1399] figure_caption 0.92 ["figure_title label: Figure 16. Analyses of the matrix mineralization markers in "] figure_caption 0.92 display_zone legend_like figure_number True True
224 15 11 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1513, 675, 1535] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
225 15 12 number 15 [1086, 1516, 1112, 1537] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
226 16 0 header www.nature.com/scientificreports/ [78, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
227 16 1 text such as trabecular and cortical structures comprising liquid, organic and mineral phases. The interplay between stimuli parameters and their osteoconductive responses must be primarily addressed as pr [304, 97, 1114, 359] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
228 16 2 text The stimuli delivered by these cosurface architectures are the same order-of-magnitude as stimuli with ability to induce positive osteoconductive responses at different stages of bone remodeling $ ^{1 [304, 358, 1114, 699] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
229 16 3 text Biological experiments reported in this study promisingly demonstrate that cosurface stimulation can enhance osteoconductive processes, as recent and preliminary research findings already highlighted [304, 698, 1113, 921] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
230 16 4 paragraph_title Conclusion [307, 934, 419, 956] section_heading 0.9 ["explicit scholarly heading: Conclusion"] section_heading 0.9 body_zone heading_like canonical_section_name True True
231 16 5 text This research work is focused on the ability of three cosurface capacitive stimulation systems (stripped, interdigitated and circular architectures) to provide effective osteoconductive stimuli to tar [305, 957, 1114, 1040] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
232 16 6 text (1) All capacitive cosurface stimulators analyzed are able to deliver osteogenic stimuli; [309, 1058, 938, 1079] body_paragraph 0.6 ["reference-like pattern: (1) All capacitive cosurface stimulators analyzed are able t"] reference_item 0.6 reference_like reference_numeric_parenthesis True True
233 16 7 text (2) The influence of cell culture confluence is negligible; [311, 1079, 724, 1099] body_paragraph 0.6 ["reference-like pattern: (2) The influence of cell culture confluence is negligible;"] reference_item 0.6 reference_like reference_numeric_parenthesis True True
234 16 8 text (3) Electric field stimuli is architecture-, frequency- and region-dependent; [310, 1098, 860, 1120] body_paragraph 0.6 ["reference-like pattern: (3) Electric field stimuli is architecture-, frequency- and "] reference_item 0.6 reference_like reference_numeric_parenthesis True True
235 16 9 text (4) Electric stimuli delivered by stripped architectures are quite similar to the one delivered by interdigitated architectures; [310, 1119, 1094, 1158] body_paragraph 0.6 ["reference-like pattern: (4) Electric stimuli delivered by stripped architectures are"] reference_item 0.6 reference_like reference_numeric_parenthesis True True
236 16 10 text (5) Low frequency stimuli distributions are similar to high frequency stimuli distributions for very thin electrodes (0.1 mm); [310, 1159, 1096, 1198] body_paragraph 0.6 ["reference-like pattern: (5) Low frequency stimuli distributions are similar to high "] reference_item 0.6 reference_like reference_numeric_parenthesis True True
237 16 11 text (6) High frequency stimuli magnitudes are 2-fold higher than low frequency stimuli magnitudes for very thin electrodes (0.1 mm); [310, 1199, 1104, 1239] body_paragraph 0.6 ["reference-like pattern: (6) High frequency stimuli magnitudes are 2-fold higher than"] reference_item 0.6 reference_like reference_numeric_parenthesis True True
238 16 12 text (7) The influences of electrodes’ width and gap size are similar for stripped and interdigitated architectures: differences in the stimuli emerge around the same regions; differences in the stimuli ma [309, 1240, 1105, 1319] body_paragraph 0.6 ["reference-like pattern: (7) The influences of electrodes\u2019 width and gap size are sim"] reference_item 0.6 reference_like reference_numeric_parenthesis True True
239 16 13 text (8) Simplified models of stimulators can be used to easily predict the impact of additional electrodes on electric stimulation if thin electrode thicknesses are used. [310, 1318, 1097, 1358] body_paragraph 0.6 ["reference-like pattern: (8) Simplified models of stimulators can be used to easily p"] reference_item 0.6 reference_like reference_numeric_parenthesis True True
240 16 14 text (9) Some electrode architecture-dependent influences, determined by modeling assays, can be validated in in vitro assays biomedical experiments. [309, 1359, 1100, 1401] body_paragraph 0.6 ["reference-like pattern: (9) Some electrode architecture-dependent influences, determ"] reference_item 0.6 reference_like reference_numeric_parenthesis True True
241 16 15 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
242 16 16 number 16 [1085, 1515, 1112, 1534] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
243 17 0 header www.nature.com/scientificreports/ [78, 29, 401, 50] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
244 17 1 paragraph_title Methods [307, 94, 400, 116] section_heading 0.9 ["explicit scholarly heading: Methods"] section_heading 0.9 body_zone heading_like canonical_section_name True True
245 17 2 text Numerical simulation. All M- and S-models were developed using the AC/DC module of COMSOL Multiphysics (v. 4.4, COMSOL). This computer simulation tool has been successfully used to analyse electromagn [305, 117, 1115, 302] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
246 17 3 display_formula $$ \nabla\cdot\mathbf{J}=0 $$ [656, 312, 739, 333] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
247 17 4 formula_number (1) [1087, 313, 1111, 334] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
248 17 5 display_formula $$ \mathbf{E}=-\nabla\cdot\mathbf{V}-\frac{d\mathbf{A}}{dt} $$ [617, 359, 773, 405] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
249 17 6 formula_number (2) [1087, 383, 1110, 403] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
250 17 7 display_formula $$ \nabla\times\mathbf{H}=\mathbf{J} $$ [650, 427, 746, 452] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
251 17 8 formula_number (3) [1087, 430, 1109, 450] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
252 17 9 display_formula $$ \boldsymbol{B}=\nabla\times\mathbf{A} $$ [648, 476, 746, 499] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
253 17 10 formula_number (4) [1088, 477, 1110, 497] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
254 17 11 display_formula $$ \mathbf{J}=\sigma\mathbf{E}+\frac{d\mathbf{D}}{dt} $$ [636, 524, 753, 569] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
255 17 12 formula_number (5) [1088, 547, 1111, 567] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
256 17 13 display_formula $$ \mathbf{D}=\varepsilon_{0}\varepsilon_{r}\mathbf{E} $$ [653, 592, 740, 617] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
257 17 14 formula_number (6) [1088, 596, 1110, 615] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
258 17 15 display_formula $$ \mathbf{B}=\mu_{0}\mu_{r}\mathbf{H} $$ [652, 640, 742, 666] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
259 17 16 display_formula $$ \mathbf{n}_{2}\cdot(\mathbf{J}_{1}-\mathbf{J}_{2})=0 $$ [628, 693, 766, 716] unknown_structural 0.2 ["unrecognized label 'display_formula'"] unknown_structural 0.2 unknown_like none False True
260 17 17 formula_number (7) [1088, 646, 1110, 665] unknown_structural 0.2 ["unrecognized label 'formula_number'"] unknown_structural 0.2 unknown_like short_fragment False True
261 17 18 text where: E - electric field intensity [V/m]; D - electric displacement [C/m²]; H - magnetic field intensity [A/m]; B - magnetic flux density [T]; J - current density [A/m²]; A - magnetic vector potentia [306, 726, 1114, 872] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
262 17 19 text Analysis of electric field data. The electric field was analysed along a xy-plan in a vertical z-coordinate corresponding to the cellular layer/tissue midpoint, i.e., along $ (x, y, 0.505) $ [mm] for [305, 884, 1113, 1007] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
263 17 20 text Stimulation apparatuses for in vitro experiments. Stripped and interdigitated stimulators were implemented according to M-models described in Table 1. Different thicknesses were used: 1 mm thick elect [304, 1022, 1113, 1165] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
264 17 21 text Cell culture and cell seeding. The osteoblastic MC3T3-E1 cells (CRL-2593, ATCC, Barcelona, Spain) were maintained at 37°C in a 5% CO₂ humidified atmosphere with 2 mM L-glutamine-containing Minimum Ess [304, 1178, 1113, 1323] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 unknown_like none True True
265 17 22 text Proliferation and metabolism assays. The Trypan Blue (Sigma-Aldrich, UK) membrane exclusion assay was used to assess cell proliferation. Briefly, 1 × 10⁴ and 1 × 10⁵ cells were plated into 35 mm dishe [305, 1334, 1114, 1479] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
266 17 23 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [77, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
267 17 24 number 17 [1088, 1517, 1112, 1536] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
268 18 0 header www.nature.com/scientificreports/ [78, 29, 401, 50] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
269 18 1 chart [307, 86, 799, 425] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
270 18 2 figure_title Figure 17. Electric field along $ (x, y, 0.505) $ [mm] and $ (x, 0, 0.505) $ [mm] for stimuli analysis throughout the proliferation stage, as well as along $ (x, y, 0.51) $ [mm] and $ (x, 0, 0.51) [306, 444, 1096, 508] figure_caption 0.92 ["figure_title label: Figure 17. Electric field along $ (x, y, 0.505) $ [mm] and "] figure_caption 0.92 display_zone legend_like figure_number True True
271 18 3 text Fisher Scientific, USA). Resazurin reduction was monitored at 570 and 600 nm (Infinite 200 PRO, Tecan). The OD 570/OD 600 nm ratio of the blank was subtracted to the OD 570/OD 600 nm ratio of each con [305, 567, 1113, 630] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
272 18 4 text Alkaline phosphatase (ALP) activity. Secreted ALP activity was determined using $ \rho $-nitrophenyl phosphate (Calbiochem, Merck, Germany) as the enzyme substrate. Conditioned media of 21 DIV stimul [305, 646, 1114, 751] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
273 18 5 text Immunoblot evaluation of osteoblast differentiation markers. Expression of secreted and synthesized protein markers was determined in conditioned medium and cell lysates, respectively. Conditioned med [304, 766, 1114, 1090] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
274 18 6 text Immunocytochemistry and laser scanning confocal microscopy. Briefly, cells grown in coverslips were fixed with 4% paraformaldehyde/PBS (20 min) and permeabilized with 0.2% Triton X-100/1x PBS (10 min) [305, 1105, 1114, 1270] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
275 18 7 text Alizarin Red S assays. According to Gregory and Grady Gunn $ ^{49} $ protocol, after 14 and 28 DIV cells were fixed with 4% paraformaldehyde/PBS and further incubated for 20 min at RT with Alizarin Re [305, 1285, 1114, 1429] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
276 18 8 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
277 18 9 number 18 [1086, 1515, 1112, 1534] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
278 19 0 header www.nature.com/scientificreports/ [77, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
279 19 1 text Statistical analysis of biological tests. Raw values were compared to control levels, converted to fold increase values and averaged. The standard error of the mean (SEM) was calculated and data prese [304, 95, 1114, 241] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
280 19 2 paragraph_title References [308, 254, 420, 274] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone heading_like short_fragment True True
281 19 3 reference_content 1. Garland, D. et al. A 3-month, randomized, double-blind, placebo-controlled study to evaluate the safety and efficacy of a highly optimized, capacitively coupled, pulsed electrical stimulator in pat [313, 276, 1113, 326] reference_item 0.85 ["reference content label: 1. Garland, D. et al. A 3-month, randomized, double-blind, p"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
282 19 4 reference_content 2. Zeng, C. et al. Electrical stimulation for pain relief in knee osteoarthritis: systematic review and network meta-analysis. Osteoarthritis and Cartilage 23(2), 189–202 (2015). [314, 326, 1112, 360] reference_item 0.85 ["reference content label: 2. Zeng, C. et al. Electrical stimulation for pain relief in"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
283 19 5 reference_content 3. Polania, R., Nitsche, M. A. & Ruff, C. C. Studying and modifying brain function with non-invasive brain stimulation. Nature Neuroscience 21, 174–187 (2018). [315, 360, 1112, 394] reference_item 0.85 ["reference content label: 3. Polania, R., Nitsche, M. A. & Ruff, C. C. Studying and mo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
284 19 6 reference_content 4. Rattay, F., Bassereh, H. & Fellner, A. Impact of electrode position on the elicitation of sodium spikes in retinal bipolar cells. Scientific Reports 7, 17590 (2017). [315, 395, 1113, 428] reference_item 0.85 ["reference content label: 4. Rattay, F., Bassereh, H. & Fellner, A. Impact of electrod"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
285 19 7 reference_content 5. Ezzyat, Y. et al. Closed-loop stimulation of temporal cortex rescues functional networks and improves memory. Nature Communications 9, 365 (2018). [316, 428, 1112, 462] reference_item 0.85 ["reference content label: 5. Ezzyat, Y. et al. Closed-loop stimulation of temporal cor"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
286 19 8 reference_content 6. Klooster, D. C. W. et al. Technical aspects of neurostimulation: Focus on equipment, electric field modeling, and stimulation protocols. Neuroscience and Biobehavioral Reviews 65, 113–141 (2016). [316, 462, 1112, 497] reference_item 0.85 ["reference content label: 6. Klooster, D. C. W. et al. Technical aspects of neurostimu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
287 19 9 reference_content 7. Gall, C. et al. Non-invasive electric current stimulation for restoration of vision after unilateral occipital stroke. Contemporary Clinical Trials 43, 231–236 (2015). [317, 496, 1111, 528] reference_item 0.85 ["reference content label: 7. Gall, C. et al. Non-invasive electric current stimulation"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
288 19 10 reference_content 8. Zhang, H. et al. Moderate-intensity 4 mt static magnetic fields prevent bone architectural deterioration and strength reduction by stimulating bone formation in streptozotocin-treated diabetic rat. [315, 531, 1111, 564] reference_item 0.85 ["reference content label: 8. Zhang, H. et al. Moderate-intensity 4 mt static magnetic "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
289 19 11 reference_content 9. Lei, T. et al. Pulsed electromagnetic fields (PEMF) attenuate changes in vertebral bone mass, architecture and strength in ovariectomized mice. Bone 108, 10–19 (2018). [313, 565, 1111, 598] reference_item 0.85 ["reference content label: 9. Lei, T. et al. Pulsed electromagnetic fields (PEMF) atten"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
290 19 12 reference_content 10. Hong, J. M., Kang, K. S., Yi, H.-G., Kim, S.-Y. & Cho, D. W. Electromagnetically controllable osteoclast activity. Bone 62, 99–107 (2014). [310, 598, 1111, 615] reference_item 0.85 ["reference content label: 10. Hong, J. M., Kang, K. S., Yi, H.-G., Kim, S.-Y. & Cho, D"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
291 19 13 reference_content 11. Vöröslakos, M. et al. Direct effects of transcranial electric stimulation on brain circuits in rats and humans. Nature Communications 9, 483 (2018). [310, 615, 1112, 648] reference_item 0.85 ["reference content label: 11. V\u00f6r\u00f6slakos, M. et al. Direct effects of transcranial ele"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
292 19 14 reference_content 12. Soares dos Santos, M. P. et al. New cosurface capacitive stimulators for the development of active osseointegrative implantable devices. Scientific Reports 6, 30231 (2016). [311, 649, 1112, 682] reference_item 0.85 ["reference content label: 12. Soares dos Santos, M. P. et al. New cosurface capacitive"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
293 19 15 reference_content 13. Leppik, L. P. et al. Effects of electrical stimulation on rat limb regeneration, a new look at an old model. Scientific Reports 5, 18353 (2015). [310, 684, 1112, 700] reference_item 0.85 ["reference content label: 13. Leppik, L. P. et al. Effects of electrical stimulation o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
294 19 16 reference_content 14. Min, Y. et al. Self-doped polyaniline-based interdigitated electrodes for electrical stimulation of osteoblast cell lines. Synthetic Metals 198, 308–313 (2014). [310, 702, 1112, 734] reference_item 0.85 ["reference content label: 14. Min, Y. et al. Self-doped polyaniline-based interdigitat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
295 19 17 reference_content 15. Bonmassar, G. et al. Microscopic magnetic stimulation of neural tissue. Nature Communications 3, 921 (2012). [309, 735, 993, 751] reference_item 0.85 ["reference content label: 15. Bonmassar, G. et al. Microscopic magnetic stimulation of"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
296 19 18 reference_content 16. Tsai, D., Sawyer, D., Bradd, A., Yuste, R. & Shepard, K. L. A very large-scale microelectrode array for cellular resolution electrophysiology. Nature Communications 8, 1802 (2017). [310, 751, 1111, 785] reference_item 0.85 ["reference content label: 16. Tsai, D., Sawyer, D., Bradd, A., Yuste, R. & Shepard, K."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
297 19 19 reference_content 17. Yavari, F., Nitsche, M. A. & Ekhtiari, H. Transcranial electric stimulation for precision medicine: A spatiomechanistic framework. Frontiers in Human Neuroscience 11, 159 (2017). [309, 786, 1111, 819] reference_item 0.85 ["reference content label: 17. Yavari, F., Nitsche, M. A. & Ekhtiari, H. Transcranial e"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
298 19 20 reference_content 18. Parazzini, M. et al. A computational model of the electric field distribution due to regional personalized or nonpersonalized electrodes to select transcranial electric stimulation target. IEEE Tr [310, 820, 1111, 854] reference_item 0.85 ["reference content label: 18. Parazzini, M. et al. A computational model of the electr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
299 19 21 reference_content 19. Grehl, S. et al. In vitro magnetic stimulation: A simple stimulation device to deliver dened low intensity electromagnetic fields. Frontiers in Neural Circuits 10, 85 (2016). [309, 854, 1111, 887] reference_item 0.85 ["reference content label: 19. Grehl, S. et al. In vitro magnetic stimulation: A simple"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
300 19 22 reference_content 20. Bonmassar, G. & Golestanirad, L. EM fields comparison between planar vs. solenoidal ms coil designs for nerve stimulation, in: 2017 39th Annual International Conference of the IEEE Engineering in [309, 888, 1111, 922] reference_item 0.85 ["reference content label: 20. Bonmassar, G. & Golestanirad, L. EM fields comparison be"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
301 19 23 reference_content 21. Lavenus, S. et al. Behaviour of mesenchymal stem cells, fibroblasts and osteoblasts on smooth surfaces. Acta Biomaterialia 7(4), 1525–1534 (2011). [308, 923, 1111, 954] reference_item 0.85 ["reference content label: 21. Lavenus, S. et al. Behaviour of mesenchymal stem cells, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
302 19 24 reference_content 22. Torrão, J. N. D., dos Santos, M. P. S. & Ferreira, J. A. F. Instrumented knee joint implants: innovations and promising concepts. Expert Reviews of Medical Devices 12(5), 571–584 (2015). [308, 956, 1112, 989] reference_item 0.85 ["reference content label: 22. Torr\u00e3o, J. N. D., dos Santos, M. P. S. & Ferreira, J. A."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
303 19 25 reference_content 23. Soares dos Santos, M. P., Ferreira, J. A. F., Ramos, A. & Simões, J. A. O. Active orthopaedic implants: Towards optimality. Journal of the Franklin Institute 352(3), 813–834 (2015). [309, 990, 1114, 1023] reference_item 0.85 ["reference content label: 23. Soares dos Santos, M. P., Ferreira, J. A. F., Ramos, A. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
304 19 26 reference_content 24. Soares dos Santos, M. P. et al. Instrumented hip joint replacements, femoral replacements and femoral fracture stabilizers. Expert Reviews of Medical Devices 11(6), 617–635 (2014). [309, 1024, 1112, 1057] reference_item 0.85 ["reference content label: 24. Soares dos Santos, M. P. et al. Instrumented hip joint r"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
305 19 27 reference_content 25. Soares dos Santos, M. P. et al. Instrumented hip implants: Electric supply systems. Journal of Biomechanics 46(15), 2561–2571 (2013). [309, 1057, 1112, 1074] reference_item 0.85 ["reference content label: 25. Soares dos Santos, M. P. et al. Instrumented hip implant"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
306 19 28 reference_content 26. Soares dos Santos, M. P. What can mathematics say about unsolved problems in medicine? Insights in Biology and Medicine 2, 1–2 (2018). [311, 1078, 1112, 1093] reference_item 0.85 ["reference content label: 26. Soares dos Santos, M. P. What can mathematics say about "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
307 19 29 reference_content 27. Hartig, M., Joos, U. & Wiesmann, H.-P. Capacitively coupled electric fields accelerate proliferation of osteoblast-like primary cells and increase bone extracellular matrix formation in vitro. Eur [309, 1093, 1111, 1124] reference_item 0.85 ["reference content label: 27. Hartig, M., Joos, U. & Wiesmann, H.-P. Capacitively coup"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
308 19 30 reference_content 28. Zhuang, H. et al. Electrical stimulation induces the level of TGF- $ \beta $1 mRNA in osteoblastic cells by a mechanism involving calcium/calmodulin pathway. Biochemical and Biophysical Research C [310, 1127, 1111, 1160] reference_item 0.85 ["reference content label: 28. Zhuang, H. et al. Electrical stimulation induces the lev"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
309 19 31 reference_content 29. Fitzsimmons, R. J., Farley, J. R., Adey, W. R. & Baylink, D. J. Frequency dependence of increased cell proliferation, in vitro, in exposures to a low-amplitude, low-frequency electric field: evide [309, 1160, 1111, 1209] reference_item 0.85 ["reference content label: 29. Fitzsimmons, R. J., Farley, J. R., Adey, W. R. & Baylink"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
310 19 32 reference_content 30. Impagliazzo, A., Mattei, A., Pompili, G. F. S., Setti, S. & Cadossi, R. Treatment of nonunited fractures with capacitively coupled electric field. Journal of Orthopaedics and Traumatology 7(1), 16 [310, 1211, 1112, 1244] reference_item 0.85 ["reference content label: 30. Impagliazzo, A., Mattei, A., Pompili, G. F. S., Setti, S"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
311 19 33 reference_content 31. Pepper, J. R., Herbert, M. A., Anderson, J. R. & Bobechko, W. P. Effect of capacitive coupled electrical stimulation on regenerate bone. Journal of Orthopaedic Research 14(2), 296–302 (1996). [310, 1245, 1111, 1278] reference_item 0.85 ["reference content label: 31. Pepper, J. R., Herbert, M. A., Anderson, J. R. & Bobechk"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
312 19 34 reference_content 32. Scott, G. & King, J. B. A prospective, coupling double-blind of electrical capacitive bones in the treatment of non-union of long bones. The Journal of Bone and Joint Surgery-American 76(6), 820–8 [309, 1279, 1112, 1312] reference_item 0.85 ["reference content label: 32. Scott, G. & King, J. B. A prospective, coupling double-b"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
313 19 35 reference_content 33. Mäkelä, E. A. Capacitively coupled electrical field in the treatment of a leg fracture after total knee replacement. Journal of Orthopaedic Trauma 6(2), 237–240 (1992). [309, 1313, 1113, 1346] reference_item 0.85 ["reference content label: 33. M\u00e4kel\u00e4, E. A. Capacitively coupled electrical field in t"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
314 19 36 reference_content 34. Brighton, C. T. & Pollack, S. Treatment of nonunion of the tibia with a capacitively coupled electrical field. Journal of Trauma and Acute Care Surgery 24(2), 153–155 (1984). [309, 1346, 1112, 1379] reference_item 0.85 ["reference content label: 34. Brighton, C. T. & Pollack, S. Treatment of nonunion of t"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
315 19 37 reference_content 35. Brighton, C. T., Pfeffer, G. B. & Pollack, S. R. In vivo growth plate stimulation in various capacitively coupled electrical fields. Journal of Orthopaedic Research 1(1), 42–49 (1983). [308, 1381, 1113, 1414] reference_item 0.85 ["reference content label: 35. Brighton, C. T., Pfeffer, G. B. & Pollack, S. R. In vivo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
316 19 38 reference_content 36. Pina, S. et al. In vitro performance assessment of new brushite-forming Zn- and ZnSr-substituted $ \beta $-TCP bone cements. Journal of Biomedical Materials Research 94B(2), 414–420 (2010). [309, 1416, 1113, 1448] reference_item 0.85 ["reference content label: 36. Pina, S. et al. In vitro performance assessment of new b"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
317 19 39 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
318 19 40 number 19 [1085, 1517, 1111, 1536] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
319 20 0 header www.nature.com/scientificreports/ [78, 30, 401, 50] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
320 20 1 reference_content 37. Orimo, H. The mechanism of mineralization and the role of alkaline phosphatase in health and disease. Journal of Nippon Medical School 77(1), 4–12 (2010). [308, 97, 1111, 129] reference_item 0.85 ["reference content label: 37. Orimo, H. The mechanism of mineralization and the role o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
321 20 2 reference_content 38. Sharma, U., Pal, D. & Prasad, R. Alkaline phosphatase: An overview. Indian Journal of Clinical Biochemistry 29(3), 269–278 (2014). [307, 131, 1110, 149] reference_item 0.85 ["reference content label: 38. Sharma, U., Pal, D. & Prasad, R. Alkaline phosphatase: A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
322 20 3 reference_content 39. Lafon, B. et al. Low frequency transcranial electrical stimulation does not entrain sleep rhythms measured by human intracranial recordings. Nature Communications 8(1199) (2017). [310, 150, 1111, 181] reference_item 0.85 ["reference content label: 39. Lafon, B. et al. Low frequency transcranial electrical s"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
323 20 4 reference_content 40. Silva, N. M. et al. Power management architecture for smart hip prostheses comprising multiple energy harvesting systems. Sensors and Actuators A: Physical 202, 183–192 (2013). [309, 183, 1111, 216] reference_item 0.85 ["reference content label: 40. Silva, N. M. et al. Power management architecture for sm"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
324 20 5 reference_content 41. Soares dos Santos, M. P. et al. Magnetic levitation-based electromagnetic energy harvesting: a semi-analytical non-linear model for energy transduction. Scientific Reports 6(18579) (2016). [309, 217, 1111, 249] reference_item 0.85 ["reference content label: 41. Soares dos Santos, M. P. et al. Magnetic levitation-base"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
325 20 6 reference_content 42. Schmidt, C., Zimmermann, U. & van Rienen, U. Modeling of an optimized electrostimulative hip revision system under consideration of uncertainty in the conductivity of bone tissue. IEEE Journal of [309, 252, 1111, 283] reference_item 0.85 ["reference content label: 42. Schmidt, C., Zimmermann, U. & van Rienen, U. Modeling of"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
326 20 7 reference_content 43. Griffin, M., Sebastian, A., Colthurst, J. & Bayat, A. Enhancement of differentiation and mineralisation of osteoblast-like cells by degenerate electrical waveform in an in vitro electrical stimula [309, 286, 1111, 317] reference_item 0.85 ["reference content label: 43. Griffin, M., Sebastian, A., Colthurst, J. & Bayat, A. En"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
327 20 8 reference_content 44. Brighton, C. T., Wang, W., Seldes, R., Zhang, G. & Pollack, S. Signal transduction in electrically stimulated bone cells. The Journal of Bone and Joint Surgery 83(10), 1514–1523 (2001). [309, 319, 1113, 351] reference_item 0.85 ["reference content label: 44. Brighton, C. T., Wang, W., Seldes, R., Zhang, G. & Polla"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
328 20 9 reference_content 45. Park, H.-J. et al. Activation of the central nervous system induced by micro-magnetic stimulation. Nature Communications 4, 2463 (2013). [308, 352, 1111, 369] reference_item 0.85 ["reference content label: 45. Park, H.-J. et al. Activation of the central nervous sys"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
329 20 10 reference_content 46. Cho, H. et al. Neural stimulation on human bone marrow-derived mesenchymal stem cells by extremely low frequency electromagnetic fields. Biotechnology Progress 28(5), 1329–1335 (2012). [310, 369, 1111, 402] reference_item 0.85 ["reference content label: 46. Cho, H. et al. Neural stimulation on human bone marrow-d"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
330 20 11 reference_content 47. Marques, C. F. et al. Biphasic calcium phosphate scaffolds fabricated by direct write assembly: Mechanical, anti-microbial and osteoblastic properties. Journal of the European Ceramic Society 37(1 [309, 404, 1111, 437] reference_item 0.85 ["reference content label: 47. Marques, C. F. et al. Biphasic calcium phosphate scaffol"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
331 20 12 reference_content 48. Torres, P. M. C. et al. Injectable MnSr-doped brushite bone cements with improved biological performance. Journal of Materials Chemistry B 5, 2775 (2017). [309, 438, 1111, 470] reference_item 0.85 ["reference content label: 48. Torres, P. M. C. et al. Injectable MnSr-doped brushite b"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
332 20 13 reference_content 49. Gregory, C. A., Gunn, W. G., Peister, A. & Prockop, D. J. An alizarin red-based assay of mineralization by adherent cells in culture: comparison with cetylpyridinium chloride extraction. Analytica [309, 472, 1112, 504] reference_item 0.85 ["reference content label: 49. Gregory, C. A., Gunn, W. G., Peister, A. & Prockop, D. J"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
333 20 14 reference_content 50. Ozawa, H., Abe, E., Shibasaki, Y., Fukuhara, T. & Suda, T. Electric fields stimulate DNA synthesis of mouse osteoblast-like cells (MC3T3-El) by a mechanism involving calcium ions. Journal of Cellu [309, 506, 1112, 539] reference_item 0.85 ["reference content label: 50. Ozawa, H., Abe, E., Shibasaki, Y., Fukuhara, T. & Suda, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
334 20 15 reference_content 51. Pucihar, G., Kotnik, T., Kandušer, M. & Miklavčič, D. The influence of medium conductivity on electropemeabilization and survival of cells in vitro. Bioelectrochemistry 54(2), 107–115 (2001). [310, 540, 1111, 572] reference_item 0.85 ["reference content label: 51. Pucihar, G., Kotnik, T., Kandu\u0161er, M. & Miklav\u010di\u010d, D. Th"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
335 20 16 reference_content 52. Wiesmann, H.-P., Hartig, M., Stratmann, U., Meyer, U. & Joos, U. Electrical stimulation influences mineral formation of osteoblast-like cells in vitro. Biochimica et Biophysica Acta (BBA) - Molecu [309, 574, 1111, 608] reference_item 0.85 ["reference content label: 52. Wiesmann, H.-P., Hartig, M., Stratmann, U., Meyer, U. & "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
336 20 17 reference_content 53. Tomaselli, V. P. & Shamos, M. H. Electrical properties of hydrated collagen. I. dielectric properties. Biopolymers 12(2), 353–366 (1973). [310, 608, 1112, 624] reference_item 0.85 ["reference content label: 53. Tomaselli, V. P. & Shamos, M. H. Electrical properties o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
337 20 18 reference_content 54. Tomaselli, V. P. & Shamos, M. H. Electrical properties of hydrated collagen. II. semi conductor properties. Biopolymers 13(12), 2423–2434 (1974). [308, 623, 1110, 657] reference_item 0.85 ["reference content label: 54. Tomaselli, V. P. & Shamos, M. H. Electrical properties o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
338 20 19 reference_content 55. Brandup, J., Immergut, E. H. & Grulke, E. A. (Eds), Polymer Handbook, 4th Edition. (John Wiley and Sons, New York, 1999). [308, 658, 1075, 675] reference_item 0.85 ["reference content label: 55. Brandup, J., Immergut, E. H. & Grulke, E. A. (Eds), Poly"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
339 20 20 reference_content 56. Behari, J. & Behari, J. Changes in bone histology due to capacitive electric field stimulation of ovariectomized rat. The Indian Journal of Medical Research 130(6), 720–725 (2009). [308, 676, 1112, 708] reference_item 0.85 ["reference content label: 56. Behari, J. & Behari, J. Changes in bone histology due to"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
340 20 21 reference_content 57. Manjhi, J., Mathur, R. & Behari, J. Effect of low level capacitive-coupled pulsed electric field stimulation on mineral profile of weight-bearing bones in ovariectomized rats. Journal of Biomedica [309, 710, 1111, 744] reference_item 0.85 ["reference content label: 57. Manjhi, J., Mathur, R. & Behari, J. Effect of low level "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
341 20 22 paragraph_title Acknowledgements [308, 765, 502, 787] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements"] sub_subsection_heading 0.6 tail_nonref_hold_zone heading_like short_fragment True True
342 20 23 text This work was funded by Portuguese Foundation for Science and Technology, through the grant ref. SFRH/BPD/117475/2016 and research project ref. POCI-01-0145-FEDER-031132. It was also supported by the [305, 788, 1114, 890] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 unknown_like none True True
343 20 24 paragraph_title Author Contributions [307, 909, 515, 931] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Author Contributions"] subsection_heading 0.6 tail_nonref_hold_zone support_like none False True
344 20 25 text Marco P. Soares dos Santos and A. Ramos helped managing and supervising the research project. Marco P. Soares dos Santos, Jorge A.F. Ferreira, Sandra I. Vieira, A. Torres Marques and Jos A.O. Simões d [305, 932, 1114, 1053] reference_item 0.82 ["default body_paragraph for text label", "late role resolution: reference_like family + reference zone", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_zone reference_like citation_line True True
345 20 26 paragraph_title Additional Information [308, 1073, 532, 1095] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Additional Information"] backmatter_boundary_candidate 0.5 heading_like none True True
346 20 27 text Supplementary information accompanies this paper at https://doi.org/10.1038/s41598-019-41540-3. [307, 1095, 1038, 1116] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 unknown_like none True True
347 20 28 text Competing Interests: The authors declare no competing interests. [307, 1125, 787, 1146] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
348 20 29 text Publisher's note: Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations. Open Access This article is licensed under a Creative Commons A [306, 1153, 1092, 1193] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 support_like none True True
349 20 30 text [305, 1203, 1114, 1366] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
350 20 31 text [308, 1382, 473, 1404] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
351 20 32 image [309, 1205, 395, 1236] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
352 20 33 footer SCIENTIFIC REPORTS | (2019) 9:5001 | https://doi.org/10.1038/s41598-019-41540-3 [78, 1514, 675, 1534] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
353 20 34 number 20 [1085, 1517, 1112, 1533] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False

View file

@ -0,0 +1,463 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header_image,,"[71, 100, 140, 171]",non_body_insert,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,False
1,1,header,materials,"[147, 109, 339, 157]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,2,header_image,,"[1030, 110, 1120, 170]",non_body_insert,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,False
1,3,text,Review,"[67, 208, 135, 232]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,frontmatter_main_zone,support_like,short_fragment,False,False
1,4,doc_title,Hydrogels for Neural Regeneration: Exploring New Horizons,"[67, 233, 1082, 276]",paper_title,0.8,"[""page-1 zone title_zone: Hydrogels for Neural Regeneration: Exploring New Horizons""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,5,text,"Hossein Omidian $ \^{*} $ $ \textcircled{D} $, Sumana Dey Chowdhury $ \textcircled{D} $ and Luigi X. Cubeddu $ \textcircled{D} $","[66, 298, 762, 324]",authors,0.8,"[""page-1 zone author_zone: Hossein Omidian $ \\^{*} $ $ \\textcircled{D} $, Sumana Dey C""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,6,text,"Barry and Judy Silverman College of Pharmacy, Nova Southeastern University, Fort Lauderdale, FL 33328, USA; sd2236@mynsu.nova.edu (S.D.C.); lcubeddu@nova.edu (L.X.C.)","[327, 367, 1123, 410]",affiliation,0.8,"[""page-1 zone affiliation_zone: Barry and Judy Silverman College of Pharmacy, Nova Southeast""]",affiliation,0.8,frontmatter_main_zone,support_like,none,True,True
1,7,text,* Correspondence: omidian@nova.edu,"[328, 411, 615, 433]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: * Correspondence: omidian@nova.edu""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,8,text,check for updates,"[70, 984, 177, 1021]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,unknown_like,short_fragment,False,False
1,9,abstract,"Abstract: Nerve injury can significantly impair motor, sensory, and autonomic functions. Understanding nerve degeneration, particularly Wallerian degeneration, and the mechanisms of nerve regeneration","[328, 459, 1124, 771]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,10,text,Academic Editor: Xiao Kuang,"[68, 1160, 260, 1181]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Academic Editor: Xiao Kuang""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,11,text,"Citation: Omidian, H.; Chowdhury, S.D.; Cubeddu, L.X. Hydrogels for Neural Regeneration: Exploring New Horizons. Materials 2024, 17, 3472. https://doi.org/10.3390/ma17143472","[66, 1030, 305, 1146]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Citation: Omidian, H.; Chowdhury, S.D.; Cubeddu, L.X. Hydrog""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,12,text,"Received: 24 June 2024
Revised: 6 July 2024
Accepted: 11 July 2024
Published: 13 July 2024
Copyright: © 2024 by the authors.
Licensee MDPI, Basel, Switzerland.
This article is an open access article d","[68, 1198, 218, 1290]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Received: 24 June 2024\nRevised: 6 July 2024\nAccepted: 11 Jul""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,13,text,,"[66, 1363, 308, 1551]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
1,14,text,,"[328, 796, 1121, 821]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,frontmatter_main_zone,support_like,empty,True,True
1,15,image,,"[70, 1313, 185, 1353]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,16,paragraph_title,1. Introduction,"[329, 895, 473, 918]",section_heading,0.85,"[""paragraph_title label with numbering: 1. Introduction""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
1,17,paragraph_title,1.1. Neural Degeneration and Regeneration,"[330, 922, 688, 947]",subsection_heading,0.85,"[""paragraph_title label with numbering: 1.1. Neural Degeneration and Regeneration""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
1,18,text,"Nerves are vital components of the peripheral nervous system, responsible for transmitting signals between the brain, spinal cord, and various parts of the body. Injury or damage to these nerves can r","[325, 953, 1124, 1103]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,19,text,"Nerve degeneration occurs when axons, the long extensions of neurons, are damaged. This damage can be caused by various factors, including trauma, diseases like diabetes, and surgical procedures such ","[326, 1104, 1124, 1303]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,20,text,"Nerve regeneration is a complex process that involves the growth of new axons to replace those that have been damaged. This process is facilitated by Schwann cells, which respond to axonal injury by d","[326, 1305, 1124, 1454]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,21,text,Several conventional therapies have been explored to enhance nerve regeneration. These include the following:,"[323, 1456, 1124, 1506]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,22,footer,"Materials 2024, 17, 3472. https://doi.org/10.3390/ma17143472","[67, 1625, 513, 1647]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
1,23,footer,https://www.mdpi.com/journal/materials,"[806, 1625, 1121, 1647]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,1,header,2 of 39,"[1069, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,reference_like,reference_numeric_dot,False,False
2,2,text,"- Pharmacological Treatments: Drugs like aldose reductase inhibitors and vasodilators have shown potential in enhancing nerve regeneration, particularly in conditions like diabetic neuropathy [5]. How","[328, 175, 1122, 275]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,3,text,"- Surgical Interventions: Traditional nerve conduits and nerve grafts are used to bridge gaps in damaged nerves. Studies have shown that the timing of these interventions is crucial, as delayed nerve ","[328, 277, 1122, 350]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,text,- Electrical Stimulation (ES): Brief low-frequency ES has been demonstrated to accelerate Wallerian degeneration and promote nerve regeneration by enhancing the clearance of axonal and myelin debris a,"[328, 351, 1122, 427]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,5,text,"- Stem Cell Therapy: Stem cells offer a promising alternative for nerve regeneration. They can differentiate into Schwann-like cells and secrete neurotrophic factors, thereby promoting axonal growth a","[328, 428, 1124, 526]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,text,- Hydrogels and Biomaterials: Innovative materials such as hydrogels are being explored to enhance nerve regeneration. These materials provide a supportive environment for nerve growth and can be used,"[328, 527, 1125, 629]",unknown_structural,0.8,"[""page-1 zone author_zone: - Hydrogels and Biomaterials: Innovative materials such as h""]",authors,0.8,body_zone,body_like,none,False,True
2,7,text,"Despite these advancements, many challenges remain in achieving robust and reliable nerve regeneration. The complexity of the molecular mechanisms involved and the need for precise control over the re","[324, 638, 1123, 765]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,8,paragraph_title,1.2. Hydrogels in Neural Regeneration,"[329, 783, 650, 808]",subsection_heading,0.85,"[""paragraph_title label with numbering: 1.2. Hydrogels in Neural Regeneration""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
2,9,text,"Hydrogels, composed of water-swollen polymer networks, have emerged as a promising solution in neural regeneration due to their biocompatibility, structural versatility, and ability to incorporate bio","[326, 814, 1123, 915]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,10,text,"Polysaccharide hydrogels with internal scaffolds, for instance, show the potential for peripheral nerve regeneration $ [10,21,22] $. Moreover, hydrogels combined with nanoparticles and neurotrophic f","[325, 914, 1124, 1115]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,11,text,Injectable hydrogels have demonstrated significant potential in treating central nervous system (CNS) injuries caused by ischemic stroke by providing supportive environments for cell growth and tissue,"[326, 1115, 1125, 1291]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,12,text,"However, the application of hydrogels is not without challenges. Issues such as limited bioactivity, poor mechanical properties, and the need for specific structural configurations to support nerve re","[325, 1291, 1124, 1469]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,1,number,3 of 39,"[1069, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
3,2,text,"The versatility of hydrogel polymers, such as chitosan, alginate, collagen, hyaluronic acid, and peptides, is notable in neural applications:","[326, 175, 1121, 228]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,3,text,- Chitosan-based Hydrogels: These are valued for their biodegradability and antimicrobial properties. Examples include thiolated chitosan hydrogels with taurine $ [8] $ and chitosan conduits with sim,"[327, 231, 1125, 381]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,4,text,"- Alginate-based Hydrogels: Known for their gel-forming capabilities and biocompatibility, these include formulations like alginate/chitosan hydrogels with 4-methylcatechol (4-MC) [22] and berberine [","[327, 383, 1125, 482]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,text,"- Collagen-based Hydrogels: Leveraging properties of the natural extracellular matrix, these include chitosan/collagen hydrogel nerve conduits containing Schwann cells [11] and collagen type I hydroge","[327, 483, 1123, 558]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,"- Hyaluronic acid-based (HA) Hydrogels: Valued for promoting cell migration and proliferation, examples include injectable chitosanhyaluronic acid hydrogels for the sustained release of NGF [41] and ","[327, 558, 1123, 634]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,7,text,"- Peptide-based Hydrogels: These self-assembling hydrogels, like peptide amphiphile hydrogels delivering sonic hedgehog (SHH) protein [43] and neurotrophic peptide-functionalized hydrogels [44] provid","[328, 635, 1124, 766]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,8,text,• Synthetic Molecules: Hydrogels incorporating simvastatin [9] and taurine [8] deliver targeted therapies promoting neurogenesis and reducing inflammation.,"[327, 770, 1123, 821]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,9,text,● Biomolecules: Bioactive molecules like 4-methylcatechol (4-MC) [22] and hesperidin [45] provide neuroprotective effects and support neural regeneration.,"[327, 821, 1121, 872]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,10,text,"- Genes: Gene delivery via hydrogels is an innovative approach, with genetically modified cells overexpressing neurotrophic factors [46] enabling the sustained release of therapeutic genes.","[327, 873, 1123, 946]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,11,text,"- Growth Factors: The incorporation of nerve growth factor (NGF), brain-derived neurotrophic factor (BDNF), and fibroblast growth factor (FGF) into hydrogels [24,4749] enhances their regenerative pot","[328, 947, 1124, 1048]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,12,text,"In summary, while significant progress has been made in neural regeneration, the limitations of current treatments underscore the necessity for alternative interventions like hydrogels. These advanced","[325, 1053, 1124, 1256]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,1,number,4 of 39,"[1069, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
4,2,image,,"[125, 182, 1062, 766]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,3,figure_title,Scheme 1. Potential uses and challenges of hydrogel interventions in neural regeneration.,"[326, 799, 1046, 824]",figure_caption,0.85,"[""figure_title label: Scheme 1. Potential uses and challenges of hydrogel interven""]",figure_caption,0.85,body_zone,legend_like,none,True,True
4,4,paragraph_title,2. Chitosan-Based Hydrogels,"[327, 839, 602, 864]",section_heading,0.85,"[""paragraph_title label with numbering: 2. Chitosan-Based Hydrogels""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
4,5,text,"This section discusses various chitosan-based hydrogels developed for nerve regeneration. The studies focus on different formulations, additives, and methodologies to enhance nerve repair. Evaluations","[325, 870, 1125, 1021]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,6,text,Thiolated chitosan hydrogels containing varying concentrations of taurine were evaluated for their efficacy in peripheral nerve regeneration. The study assessed various morphological and biochemical p,"[325, 1021, 1124, 1222]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,7,text,Chitosan conduits filled with simvastatin in Pluronic F-127 hydrogel were used to bridge 10 mm sciatic nerve defects in rats. The study analyzed the effects of different concentrations of simvastatin ,"[325, 1222, 1126, 1476]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,0,header,"Materials 2024, 17, 3472","[69, 99, 236, 118]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,1,header,5 of 39,"[1069, 104, 1121, 122]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
5,2,image,,"[125, 172, 1063, 342]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
5,3,figure_title,Figure 1. Gross views of regenerated sciatic nerves 10 weeks postoperatively. Regenerated sciatic nerves in rats with defects that were bridged by chitosan conduits filled with simvastatin/Pluronic F-,"[325, 362, 1124, 464]",figure_caption,0.92,"[""figure_title label: Figure 1. Gross views of regenerated sciatic nerves 10 weeks""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,4,text,"Chitosan tubes prefilled with an aligned fibrin nanofiber hydrogel (AFG), assembled via electrospinning and molecular self-assembly, were utilized to treat rabbit facial nerve defects. The study compa","[326, 483, 1124, 684]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,5,text,A chitosan/glycerol-beta-phosphate disodium salt (CS/GP) hydrogel injected with Schwann cells was investigated for its potential in peripheral nerve regeneration. The study evaluated the gelation time,"[325, 685, 1125, 886]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,6,text,"A carboxymethyl chitosan hydrogel manufactured through radiation-induced crosslinking was developed for nerve regeneration guides. The study focused on the degradation and crosslinking properties, phy","[325, 886, 1124, 1085]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,text,Conductive black phosphorus nanosheets within a lipoic acid-modified chitosan hydrogel matrix incorporating tannic acid-modified black phosphorus nanosheets (BP@TA) and bicyclodextrin-conjugated tazar,"[326, 1087, 1124, 1260]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,8,text,"Chitosan/beta-glycerophosphate/salt hydrogels with conductive aligned nanofibers composed of polycaprolactone, gelatin, and single-wall carbon nanotubes (SWCNTs) were developed for nerve regeneration.","[325, 1262, 1124, 1437]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,text,"A substance-P-conjugated chitosan hydrochloride hydrogel (CSCI-SP) was evaluated for full-thickness wound healing. The stability of SP, as well as its effects on proliferation, migration, tube formati","[326, 1437, 1125, 1539]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
6,1,number,6 of 39,"[1069, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
6,2,text,"proliferation, migration, and angiogenesis in vitro and enhanced vascularization, ECM deposition, and nerve regeneration in vivo. This led to the efficient recovery of full-thickness skin defects, hig","[324, 176, 1125, 251]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,3,text,"The research on chitosan-based hydrogels for neural regeneration includes a range of approaches, each exploring different formulations and additives to enhance nerve repair. Despite their varied metho","[324, 252, 1126, 477]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,4,text,"The comparative analysis of chitosan-based hydrogels for nerve regeneration highlights that the most effective compositions combine chemical additives, physical structural enhancements, and cellular c","[324, 477, 1125, 754]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,5,text,"Table 1 outlines different chitosan-based hydrogels researched for neural regeneration, highlighting their specific physical, chemical, and biological characteristics tailored to treat various neural ","[323, 754, 1125, 881]",table_caption,0.9,"[""table prefix matched: Table 1 outlines different chitosan-based hydrogels research""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
6,6,figure_title,Table 1. Chitosan-based hydrogels in neural regeneration.,"[327, 904, 796, 929]",table_caption,0.9,"[""table prefix matched: Table 1. Chitosan-based hydrogels in neural regeneration.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
6,7,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/ Disorder Targeted</td><td>Ref</td></tr><tr><td>Thiolated chitosan hydrogel","[68, 945, 1124, 1486]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
7,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
7,1,number,7 of 39,"[1068, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
7,2,paragraph_title,3. Alginate-Based Hydrogels,"[327, 176, 599, 201]",section_heading,0.85,"[""paragraph_title label with numbering: 3. Alginate-Based Hydrogels""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
7,3,text,"This section explores alginate-based hydrogels for peripheral nerve and diabetic wound regeneration. Various studies have assessed hydrogels containing bioactive components like 4-MC, berberine, narin","[325, 207, 1124, 357]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,4,text,"Alginate/chitosan hydrogels containing varying percentages of 4-methylcatechol (4-MC) were investigated for their potential in peripheral nerve regeneration. The study evaluated the pore size, biodegr","[325, 358, 1125, 533]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,5,text,Chitosan/alginate hydrogels with berberine (Ber)-loaded chitosan nanoparticles and naringin (Nar)-loaded chitosan nanoparticles were also examined for their effects on peripheral nerve regeneration. T,"[325, 533, 1124, 733]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,6,text,"Another study explored alginate/chitosan hydrogels containing different dosages of hesperidin (0.1%, 1%, and 10% (w/v)) for peripheral nerve regeneration. Key parameters such as morphology, swelling p","[325, 735, 1124, 934]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,7,text,Alginate/gum Arabic hydrogels enriched with immobilized nerve growth factor (NGF) in mesoporous silica nanoparticles (SiNGF) and carnosine (Car) were developed for diabetic wound regeneration. The stu,"[325, 935, 1124, 1186]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,8,text,"In a study of alginate/chitosan hydrogels containing different concentrations of berberine (0%, 0.1%, 1%, and 10% (w/v)), the effects on sciatic nerve regeneration were investigated. The study assesse","[326, 1187, 1125, 1387]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,9,text,An alginate hydrogel scaffold mimicking the extracellular matrix (ECM) and loaded with melatonin was combined with a polycaprolactone outer layer to create a controlled-release microenvironment for pe,"[326, 1388, 1125, 1538]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
8,1,number,8 of 39,"[1069, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
8,2,text,"conduction, reduced inflammation and oxidative stress, enhanced angiogenesis, neurite extension, and axonal sprouting, and elevated fast-type myosin in the gastrocnemius muscle, effectively restoring ","[326, 176, 1126, 253]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,3,figure_title,(a),"[336, 279, 368, 304]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,4,image,,"[339, 279, 1004, 477]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,5,figure_title,(b),"[338, 516, 373, 546]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,6,image,,"[335, 534, 785, 942]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,7,figure_title,(c),"[804, 541, 836, 567]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
8,8,chart,,"[805, 631, 1069, 930]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,9,figure_title,Figure 2. The evaluation of the wound-healing effects of hydrogels in STZ-induced diabetic rats. (a) A schematic illustration of the experiments. (b) The morphology of wounds treated with the hydrogel,"[325, 963, 1125, 1144]",figure_caption,0.92,"[""figure_title label: Figure 2. The evaluation of the wound-healing effects of hyd""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,10,text,Alginate hydrogels incorporating magnetic short nanofibers (M.SNFs) made of wet-electrospun gelatin and superparamagnetic iron oxide nanoparticles (SPIONs) were used to encapsulate human olfactory muc,"[325, 1160, 1125, 1361]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,11,text,"Studies on alginate-based hydrogels, much like those on their chitosan counterparts, share a common focus on biocompatibility, biodegradability, and the ability to support cell proliferation and nerve","[325, 1361, 1127, 1541]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
9,1,number,9 of 39,"[1069, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
9,2,text,"in promoting peripheral nerve regeneration, assessing parameters like cell proliferation, functional recovery, and histological improvements [23,24,28,32,45].","[326, 176, 1125, 226]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,3,text,"When comparing these studies, the most effective alginate-based hydrogel compositions are those that integrate bioactive components, structural modifications, and suitable physical properties. The add","[324, 227, 1126, 552]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,4,text,"Table 2 describes various alginate-based hydrogels designed for neural regeneration, highlighting their specific structural and functional characteristics tailored to treat neural diseases. These hydr","[324, 552, 1125, 680]",table_caption,0.9,"[""table prefix matched: Table 2 describes various alginate-based hydrogels designed ""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
9,5,figure_title,Table 2. Alginate-based hydrogels in neural regeneration.,"[326, 703, 793, 728]",table_caption,0.9,"[""table prefix matched: Table 2. Alginate-based hydrogels in neural regeneration.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
9,6,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Alginate/chitosan hydrogel c","[67, 744, 1120, 1328]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
9,7,paragraph_title,4. Collagen-Based Hydrogels,"[328, 1358, 602, 1383]",section_heading,0.85,"[""paragraph_title label with numbering: 4. Collagen-Based Hydrogels""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
9,8,text,"This section discusses various studies on hydrogels used for nerve regeneration, highlighting alginate-based and collagen-based hydrogels. It focuses on their biocompatibility, bioabsorbability, mecha","[325, 1389, 1126, 1542]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
10,1,header,10 of 39,"[1062, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
10,2,text,"A chitosan/collagen hydrogel nerve guidance conduit containing Schwann cells was developed for peripheral nerve regeneration. The study focused on the biocompatibility, mechanical strength, scaffold s","[324, 175, 1125, 452]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,3,text,"A collagen type I hydrogel containing chitosan nanoparticles loaded with insulin was examined for sciatic nerve regeneration. The study evaluated the proliferation rate of Schwann cells, sciatic funct","[324, 453, 1125, 754]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,4,text,"In another study, a collagen type I hydrogel containing naringin was used for sciatic nerve regeneration. The study focused on the microstructure, swelling behavior, biodegradation, cyto/hemocompatibi","[325, 754, 1126, 979]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,5,text,"Nanofiber neural guidance channels (NGCs) containing a collagen hydrogel and 5% acetyl L-carnitine (ALC) were developed for nerve regeneration. The study assessed surface hydrophilicity, porosity, ten","[325, 980, 1126, 1281]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,6,text,"The research on collagen-based hydrogels for neural regeneration consistently shares several key similarities. Across different studies, collagen serves as the primary scaffold material due to its bio","[325, 1282, 1125, 1480]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,7,text,"The comparative analysis of collagen-based hydrogels for nerve regeneration suggests that the most effective compositions integrate bioactive molecules, advanced structural","[327, 1482, 1124, 1533]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
11,1,number,11 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
11,2,text,"designs, and suitable physical properties. The incorporation of Schwann cells [11,12] has shown significant enhancements in motor functional recovery and axonal regrowth. Hydrogels with insulin-loaded","[324, 175, 1125, 502]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,3,text,"Table 3 presents various collagen-based hydrogels engineered for neural regeneration, highlighting their structural and functional characteristics. These hydrogels are designed to support nerve repair","[325, 503, 1125, 630]",table_caption,0.9,"[""table prefix matched: Table 3 presents various collagen-based hydrogels engineered""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
11,4,figure_title,Table 3. Collagen-based hydrogels in neural regeneration.,"[327, 653, 796, 677]",table_caption,0.9,"[""table prefix matched: Table 3. Collagen-based hydrogels in neural regeneration.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
11,5,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Chitosan/collagen hydrogel h","[67, 694, 1124, 1254]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
11,6,paragraph_title,5. Hyaluronic Acid-Based Hydrogels,"[328, 1287, 671, 1311]",section_heading,0.85,"[""paragraph_title label with numbering: 5. Hyaluronic Acid-Based Hydrogels""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
11,7,text,"This section discusses various hyaluronic acid-based hydrogels developed for neural regeneration. These hydrogels are enhanced with bioactive molecules like NGF, BDNF, and anti-inflammatory agents to ","[325, 1317, 1125, 1467]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,8,text,"An injectable chitosan/hyaluronic acid (CS-HA) hydrogel was designed for the sustained release of nerve growth factor (NGF) to aid in nerve regeneration. The study assessed the gelation time, intercon","[326, 1468, 1126, 1545]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
12,1,header,12 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
12,2,text,"behavior, degradation rate, NGF release profiles, biocompatibility, and the adhesion and proliferation of bone marrow-derived mesenchymal stem cells (BMMSCs). The CS-HA hydrogel gelled rapidly at pH 7","[324, 175, 1124, 351]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,3,text,"In another study, a hyaluronic acid hydrogel loaded with lithium chloride (LiCl) at a dose of 15 mEq and different doses of LiCl itself (2.5, 5, and 15 mEq) were investigated for nerve regeneration an","[323, 352, 1125, 527]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,4,text,A hyaluronan/methylcellulose hydrogel modified with the anti-inflammatory peptide KAFAKLAARLYRKALARQLGVAA (KAFAK) and brain-derived neurotrophic factor (BDNF) was developed for spinal cord injury (SCI,"[324, 528, 1126, 728]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,5,text,An injectable hyaluronic acid/phenylboronic acid/poly(vinyl alcohol)/heparin hydrogel modified with cysteamine and phenylboronic acid and loaded with glial cell-derived neurotrophic factor (GDNF) was ,"[324, 728, 1126, 954]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,6,text,"A hyaluronic acid-based hydrogel scaffold containing a matrix metalloproteinase-sensitive peptide, IKVAV (Ile- Lys-Val-Ala-Val) peptide, and brain-derived neurotrophic factor (BDNF) was explored for s","[323, 955, 1126, 1230]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,7,text,"A hyaluronic acid hydrogel functionalized with 2,2,6,6-tetramethylpiperidinyloxy (TEMPO) was studied for spinal cord transection recovery and bladder tissue protection. The hydrogel exhibited antioxid","[324, 1230, 1125, 1406]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,8,text,"In another study, a hyaluronic acid granular hydrogel nerve guidance conduit was evaluated for 10 mm long sciatic nerve gap regeneration in rats. The study simulated the extracellular matrix, promotin","[324, 1407, 1126, 1534]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
13,1,number,13 of 39,"[1062, 103, 1121, 124]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
13,2,text,"recovery of electrophysiological and motor functions to autologous nerve transplantation, outperforming bulk hydrogel or silicone tube transplants [59].","[326, 176, 1124, 226]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,3,text,"The research on hyaluronic acid-based hydrogels for neural regeneration shares several key similarities. These hydrogels leverage hyaluronic acid's natural properties, including its biocompatibility, ","[324, 227, 1125, 403]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,4,text,"The comparative analysis of hyaluronic acid-based hydrogels for neural regeneration suggests that the most effective compositions integrate bioactive molecules, anti-inflammatory agents, and advanced ","[324, 402, 1125, 753]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,5,text,"Table 4 outlines various hyaluronic acid-based hydrogels designed for neural regeneration, detailing their structural and functional characteristics. These hydrogels enhance nerve repair through prope","[325, 753, 1126, 881]",table_caption,0.9,"[""table prefix matched: Table 4 outlines various hyaluronic acid-based hydrogels des""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
13,6,figure_title,Table 4. Hyaluronate-based hydrogels in neural regeneration.,"[327, 904, 826, 929]",table_caption,0.9,"[""table prefix matched: Table 4. Hyaluronate-based hydrogels in neural regeneration.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
13,7,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Hyaluronan/methylcellulose h","[67, 946, 1124, 1510]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
14,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
14,1,number,14 of 39,"[1062, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
14,2,paragraph_title,6. Peptide-Based Hydrogels,"[327, 176, 590, 201]",section_heading,0.85,"[""paragraph_title label with numbering: 6. Peptide-Based Hydrogels""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
14,3,text,"Peptide-based hydrogels are explored for nerve regeneration, mimicking the extracellular matrix and supporting cell growth. Studies on various hydrogels, including C16GSH, RADA16-I, and SF16, have sho","[325, 207, 1125, 356]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,4,text,A peptide amphiphile hydrogel composed of C16GSH was evaluated for peripheral nerve regeneration compared to traditional collagen gels. It was able to promote Schwann cell proliferation and migration ,"[325, 357, 1125, 507]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,5,text,Peptide amphiphile nanofiber hydrogels delivering the sonic hedgehog (SHH) protein were studied for cavernous nerve regeneration. This approach aimed to maintain neuronal integrity and prevent degener,"[325, 508, 1124, 683]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,6,text,"A synthesized nanofiber scaffold hydrogel, the peptide RADA16-I, was used for peripheral nerve regeneration in rats. This self-assembling peptide hydrogel demonstrated faster healing rates for sciatic","[325, 685, 1125, 809]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,7,text,Another study explored a neurotrophic peptide-functionalized self-assembling peptide nanofiber hydrogel (RAD/RGI) prefilled inside a hollow chitosan tube (hCST) to promote sciatic nerve regeneration. ,"[325, 810, 1124, 984]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,8,text,"The RADA16-Mix hydrogel, a self-assembling peptide nanofiber hydrogel modified with IKVAV and RGD, was developed for sciatic nerve regeneration in rats. This hydrogel, designed to remain pH-neutral, i","[324, 986, 1124, 1111]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,9,text,"For recurrent laryngeal nerve regeneration, the RADA16-I self-assembling peptide hydrogel was utilized in a rat model. The study evaluated neurite outgrowth, functional synapse formation, nerve regene","[325, 1112, 1125, 1286]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,10,text,A BD PuraMatrix peptide hydrogel seeded with Schwann cells was investigated for sciatic nerve regeneration in rats. The hydrogel significantly increased the axonal regeneration distance and promoted t,"[326, 1287, 1125, 1412]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,11,text,"Multidomain peptide (MDP) hydrogels, both anionic and cationic, were used as intraluminal fillers in electrospun poly(epsilon-caprolactone) (PCL) conduits for sciatic nerve regeneration in rats. The s","[326, 1412, 1126, 1539]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
15,1,header,15 of 39,"[1062, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
15,2,text,"higher muscle action potential, greater muscle weight retention, and superior myelination compared to the cationic MDP, suggesting that the anionic MDP is a promising strategy for treating transected ","[325, 176, 1123, 251]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,3,text,"A silk fibroin peptide (SF16) hydrogel scaffold was developed for peripheral nerve regeneration. In vitro tests on PC12 cells showed that the hydrogel supported cell viability and growth, and in vivo ","[324, 252, 1123, 451]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,4,text,"Moreover, a human hair keratin hydrogel scaffold was studied for median nerve regeneration in nonhuman primates. A 1 cm nerve gap was grafted with a NeuraGen(R) collagen conduit and filled with a kera","[324, 453, 1124, 653]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,5,text,Peptide-based hydrogels for neural regeneration share several common features across the various studies. These hydrogels leverage the self-assembling properties of peptides to create a supportive ext,"[325, 653, 1124, 855]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,6,text,"The comparative analysis of peptide-based hydrogels for nerve regeneration suggests that the most effective compositions integrate neurotrophic factors, cell adhesion molecules, and advanced structura","[324, 855, 1126, 1206]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,7,text,"Table 5 summarizes various peptide-based hydrogels designed for neural regeneration, detailing their physical, chemical, and biological properties. These hydrogels are engineered to support nerve repa","[326, 1206, 1124, 1334]",table_caption,0.9,"[""table prefix matched: Table 5 summarizes various peptide-based hydrogels designed ""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
16,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
16,1,number,16 of 39,"[1062, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
16,2,figure_title,Table 5. Peptide-based hydrogels in neural regeneration.,"[326, 174, 786, 199]",table_caption,0.9,"[""table prefix matched: Table 5. Peptide-based hydrogels in neural regeneration.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
16,3,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Peptide amphiphile nanofiber","[67, 214, 1123, 956]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
16,4,paragraph_title,7. Hydrogels with Specific Growth Factors and Cells,"[327, 990, 813, 1015]",section_heading,0.85,"[""paragraph_title label with numbering: 7. Hydrogels with Specific Growth Factors and Cells""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
16,5,text,This section details various studies on hydrogels containing specific growth factors and cells for neural regeneration. It highlights different formulations and objectives aimed at promoting spinal co,"[325, 1021, 1123, 1172]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,6,text,An injectable thermosensitive hydrogel composed of chitosan/beta-glycerophosphate/hydroxyethyl cellulose (CS/beta-GP/HEC) encapsulating nerve growth factor (NGF)-overexpressing human adipose-derived m,"[325, 1172, 1125, 1347]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
16,7,text,"A chitosan/beta-glycerophosphate (C/GP) hydrogel containing nerve growth factor (NGF) was developed for facial nerve regeneration in rats. The study examined drug delivery, scaffold properties, electr","[325, 1348, 1125, 1550]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
17,1,number,17 of 39,"[1062, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
17,2,text,A hydrogel composed of hyaluronic acid and laminin (NVR-Gel) filled with Schwann cells (SCs) genetically modified to overexpress glial cell line-derived neurotrophic factor (GDNF) or fibroblast growth,"[324, 176, 1125, 375]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,3,text,"Poly(D,L-lactic acid) (PDLLA)/β-tricalcium phosphate (β-TCP) nerve conduits filled with injectable chitosan/hyaluronic acid hydrogel featuring the sustained release of nerve growth factor (NGF) were e","[325, 378, 1125, 631]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
17,4,table,"<table><tr><td>A</td><td>Autograft</td><td>PT</td><td>PT/CHN</td></tr><tr><td>1 month</td><td>[1[F6]]</td><td>[1[F5]]</td><td><img src=""imgs/img_in_image_box_630_660_741_765.jpg"" alt=""Image"""" /></td><","[329, 642, 851, 1221]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,unknown_like,none,True,False
17,5,image,,"[745, 655, 852, 763]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
17,6,figure_title,"Figure 3. Walking track analyses in vivo. (A): Footprint collected on the walking track at different time points (1, 2, and 3 months after implantation): first column: autograft group; second column: ","[326, 1233, 1125, 1336]",figure_caption,0.92,"[""figure_title label: Figure 3. Walking track analyses in vivo. (A): Footprint col""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
17,7,text,"Poly(2-hydroxyethyl methacrylate-co-methyl methacrylate) (PHEMA-MMA) tubes filled with collagen gel impregnated with neurotropin-3, brain-derived neurotrophic factor (BDNF), or acidic fibroblast growt","[325, 1352, 1126, 1556]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
18,1,header,18 of 39,"[1062, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
18,2,text,"Hierarchically aligned fibrin hydrogel microfibers laden with mesenchymal stem cells (MSCs) were used for spinal cord transection injury repair. This study examined MSC neural differentiation, nerve f","[324, 176, 1125, 351]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,3,text,An erythropoietin (EPO)-loaded multifunctional hydrogel combined with adipose-derived stem cells (ADSCs) was evaluated for neurogenic erectile function recovery. The hydrogel significantly improved er,"[324, 352, 1125, 501]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,4,text,"A Poloxamer hydrogel delivering adipose-derived stem cells (ASCs) was investigated for peripheral nerve regeneration in rats. The study focused on ASC viability, axonal regrowth, reinnervation of musc","[325, 502, 1124, 653]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,5,text,A heparin/Poloxamer thermosensitive hydrogel co-delivered with basic fibroblast growth factor (bFGF) and nerve growth factor (NGF) was evaluated for peripheral nerve regeneration in diabetic rats. The,"[325, 653, 1125, 828]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,6,text,"A decellularized porcine nerve-derived hydrogel filler peripheral nerve matrix (PNM) was used within conduits for nerve gap repair in rats. The study focused on nerve-specific matrix components, nerve","[324, 829, 1125, 980]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,7,text,"A decellularized nerve matrix hydrogel was derived from a porcine sciatic nerve (pDNM-G) with longitudinally oriented microchannels through unidirectional freeze-drying, creating A-pDNM-G scaffolds fo","[325, 981, 1125, 1130]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,8,text,"A fibrin hydrogel combined with poly(lactic-co-glycolic) acid (PLGA) microspheres encapsulating tacrolimus, along with rat adipose-derived mesenchymal stem cells (MSCs), was examined for peripheral ne","[325, 1131, 1125, 1306]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,9,text,"Moreover, a biodegradable gelatin hydrogel (Medgel) containing olfactory stem cells (OSCs) harvested from newborn mice was studied for facial nerve regeneration in mice. The research assessed OSC isol","[326, 1306, 1125, 1481]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
18,10,text,Hydrogels incorporating specific growth factors and cells for neural regeneration share several common features. They utilize biocompatible and biodegradable materials,"[326, 1481, 1124, 1533]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
19,1,number,19 of 39,"[1062, 102, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
19,2,text,"like chitosan, hyaluronic acid, and various synthetic polymers to create scaffolds that support cell proliferation and tissue integration. These hydrogels often encapsulate growth factors such as nerv","[326, 176, 1125, 376]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,3,text,"The comparative analysis of hydrogels with specific growth factors and cells for neural regeneration suggests that the most effective compositions integrate neurotrophic factors, stem cells, and advan","[324, 378, 1125, 629]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
19,4,text,"Table 6 outlines various hydrogels loaded with specific growth factors and cells, designed for neural regeneration. These hydrogels enhance nerve repair through the sustained release of growth factors","[324, 628, 1126, 757]",table_caption,0.9,"[""table prefix matched: Table 6 outlines various hydrogels loaded with specific grow""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
19,5,figure_title,Table 6. Hydrogels loaded with specific growth factors and cells in nerve regeneration.,"[326, 779, 1025, 804]",table_caption,0.9,"[""table prefix matched: Table 6. Hydrogels loaded with specific growth factors and c""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
19,6,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Poly(D, l-lactic acid) (PDLL","[67, 819, 1124, 1470]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
20,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
20,1,number,20 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
20,2,figure_title,Table 6. Cont.,"[328, 175, 443, 198]",table_caption,0.9,"[""table prefix matched: Table 6. Cont.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
20,3,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Poloxamer hydrogel with adip","[68, 214, 1124, 831]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
20,4,paragraph_title,8. Hydrogels with Conductive Properties,"[327, 864, 709, 889]",section_heading,0.85,"[""paragraph_title label with numbering: 8. Hydrogels with Conductive Properties""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
20,5,text,"This section discusses the development of conductive hydrogels for peripheral nerve regeneration. Various formulations, including a chitosan/aniline pentamer, graphene oxide composites, and polypyrrol","[324, 896, 1123, 1046]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
20,6,text,"An electroactive chitosan/aniline pentamer hydrogel (CS-AP) was developed for peripheral nerve regeneration. This hydrogel was characterized by its electroactivity, degradation, gelation time, tensile","[325, 1048, 1125, 1222]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
20,7,text,"A chitosan/oxidized hydroxyethyl cellulose/reduced graphene oxide/asiaticoside liposome hydrogel was created for nerve regeneration. The hydrogel was nontoxic, and its conductivity was $ 5.27 \pm 0.4","[324, 1223, 1125, 1372]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
20,8,text,A conductive sodium alginate/carboxymethyl chitosan hydrogel doped with polypyrrole (SA/CMCS/PPy) was investigated for peripheral nerve regeneration. The SA/CMCS/PPy hydrogel showed good biocompatibil,"[326, 1373, 1126, 1525]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
21,1,header,21 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
21,2,text,"A plasticine-like conductive hydrogel consisting of gelatin, polypyrrole, and tannic acid (GPT) was studied for peripheral nerve regeneration. The GPT hydrogel exhibited self-healing properties, elect","[325, 176, 1124, 327]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,3,text,Conductive graphene oxide/oligo(polyethylene glycol fumarate) (GO-OPF) hydrogel composites with a functionalized surface were evaluated for nerve regeneration. The study examined the hydrogels' electr,"[325, 327, 1126, 503]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,4,text,Reduced graphene oxide/gelatin-methacrylate (r(GO/GelMA)) hydrogel nerve guidance conduits (NGCs) were assessed for peripheral nerve regeneration. The study focused on the hydrogels' electrical conduc,"[326, 503, 1125, 703]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,5,text,A zwitterionic conductive hydrogel fabricated by the copolymerization of sulfobetain methacrylate and hydroxyethyl methacrylate was developed as a nerve guidance conduit for peripheral nerve regenerat,"[325, 703, 1125, 929]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,6,text,"A self-healing electroconductive hydrogel (HASPy) made from hyaluronic acid (HA), cystamine (Cys), and pyrrole-1-propionic acid (Py-COOH) was investigated for promoting peripheral nerve regeneration. ","[325, 929, 1125, 1156]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,7,text,"An injectable, self-healing, conductive hydrogel (ACCP) was created by grafting polyaniline (PANI) onto carboxymethyl chitosan (CMCS) and crosslinking with aldehyde-based hyaluronic acid (ALHA). This ","[324, 1155, 1125, 1357]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
21,8,text,"Adhesive conductive immunomodulatory nerve hydrogel bandages were prepared from extracellular matrix (ECM), oxidized polysaccharides, and poly(3,4-ethylenedioxythio phene)/poly(styrenesulfonate) (PEDO","[325, 1356, 1123, 1534]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
22,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
22,1,number,22 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
22,2,figure_title,A,"[343, 181, 363, 201]",figure_inner_text,0.9,"[""panel label / figure inner text: A""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
22,3,image,,"[335, 179, 977, 1130]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
22,4,figure_title,Figure 4. (A) A schematic diagram of the preparation of an injectable self-healing conductive hydrogel. (B) A schematic of the self-healing and electrical conductivity of the hydrogel and its regulati,"[326, 1157, 1125, 1285]",figure_caption,0.92,"[""figure_title label: Figure 4. (A) A schematic diagram of the preparation of an i""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
22,5,text,"Conductive hydrogel scaffolds with in situ electrical generation capability, combining conductive hydrogel and wireless power transmitter, were developed for nerve regeneration. This innovative approa","[325, 1302, 1126, 1502]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
22,6,text,A black phosphorus (BP) hydrogel loaded with neuregulin 1 (Nrg1) was studied for peripheral nerve regeneration. The BP hydrogel nerve guidance conduits (NGCs) were,"[326, 1503, 1125, 1556]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
23,1,number,23 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
23,2,text,"characterized by flexibility, nerve regeneration-related cell induction, Schwann cell proliferation, neuron-branch elongation, and axon remyelination. In vivo immunofluorescence studies showed that BP","[324, 175, 1126, 300]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,3,text,"A biomimetic silk fibroin hydrogel incorporating graphene oxide and fibroblast exosomes was developed for nerve regeneration. This conductive hydrogel was assessed for its conductivity, electron trans","[324, 302, 1126, 476]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,4,text,"Synthetic hydrogels with conductive properties for neural regeneration exhibit several common characteristics. These hydrogels are designed to be biocompatible and biodegradable, providing a supportiv","[325, 478, 1126, 678]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,5,text,"The comparative analysis of conductive hydrogels for neural regeneration suggests that the most effective compositions integrate conductive materials, bioactive molecules, and advanced structural desi","[325, 678, 1125, 928]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
23,6,text,"Table 7 describes various synthetic hydrogels with conductive properties engineered for neural regeneration. These hydrogels support nerve repair through features like biocompatibility, electrical con","[325, 929, 1125, 1032]",table_caption,0.9,"[""table prefix matched: Table 7 describes various synthetic hydrogels with conductiv""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
23,7,figure_title,Table 7. Conductive hydrogels in neural regeneration.,"[327, 1055, 765, 1079]",table_caption,0.9,"[""table prefix matched: Table 7. Conductive hydrogels in neural regeneration.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
23,8,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>HA-modified polypyrrole self","[67, 1094, 1118, 1487]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
24,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
24,1,number,24 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
24,2,figure_title,Table 7. Cont.,"[328, 175, 443, 198]",table_caption,0.9,"[""table prefix matched: Table 7. Cont.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
24,3,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Chitosan/oxidized hydroxyeth","[68, 213, 1124, 1047]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
24,4,paragraph_title,9. Various Synthetic and Composite Hydrogels,"[327, 1079, 763, 1103]",section_heading,0.85,"[""paragraph_title label with numbering: 9. Various Synthetic and Composite Hydrogels""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
24,5,text,"This section explores various synthetic and composite hydrogels designed for nerve regeneration. It covers different hydrogel compositions, including graphene oxide, collagen/chitosan, polyacrylamide/","[324, 1109, 1125, 1259]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
24,6,text,Silicone conduits filled with ammonia-functionalized graphene oxide (NH₂-GO) and frankincense (Fr) embedded in collagen/chitosan hydrogel were evaluated for nerve regeneration. This study investigated,"[326, 1260, 1124, 1436]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
24,7,text,Polyacrylamide/chitosan (PAM/CS) composite hydrogels with elasticity and topographical guidance were designed for nerve regeneration. These hydrogels were created using in situ free-radical polymeriza,"[326, 1435, 1126, 1539]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
25,1,header,25 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
25,2,text,"composite hydrogel with an elastic modulus of 5.822 kPa/8.41 kPa and groove width of 30 $ \mu $m promoted strong neurite growth, better-oriented status, and effective peripheral nerve regeneration in","[325, 176, 1123, 275]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,3,text,Collagen crosslinked with poly(N-isopropylacrylamide) (PNiPAAm) terpolymer scaffolds grafted with laminin pentapeptide YIGSR was studied for nerve regeneration. These bioactive hydrogel-filament scaff,"[325, 277, 1125, 452]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,4,text,"A polyacrylonitrile (PAN) conduit filled with a fibrin hydrogel and graphene quantum dots (GQDs), incorporating Wharton's jelly-derived mesenchymal stem cells (WJMSCs) differentiated into Schwann cell","[325, 453, 1124, 677]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,5,text,Fibrin or synthetic poly(ethylene glycol) and fibrinogen/gelatin hydrogels with laser-ablated microchannels were utilized for sciatic nerve regeneration. The hydrogels were evaluated for shear modulus,"[325, 679, 1124, 854]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,6,text,"Poly(2-hydroxyethyl methacrylate-co-methyl methacrylate) (PHEMA-MMA) porous tubes were developed for sciatic nerve repair. These tubes were characterized by their biocompatibility, pore structure, mec","[325, 854, 1124, 1005]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,7,text,"Gelatin methacrylate (GelMA)/poly(2-ethyl-2-oxazoline) (PEtOx) hydrogel containing 4-aminopyridine (4-AP) was investigated for sciatic nerve injury. The hydrogel was assessed for porosity, swelling ra","[325, 1005, 1123, 1180]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,8,text,"Anisotropic polyacrylamide (PAM) hydrogel micropatterns with aligned ridge/groove structures, biofunctionalized using YIGSR peptide, were created to guide Schwann cell behavior. These hydrogels were d","[325, 1180, 1124, 1382]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
25,9,text,A pure silk fibroin hydrogel with an aligned microgrooved topographic structure was designed for peripheral nerve regeneration. The hydrogels exhibited excellent mechanical properties and biocompatibi,"[326, 1382, 1125, 1508]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
26,1,header,26 of 39,"[1061, 103, 1122, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
26,2,text,A photothermal-responsive cell-laden poly-N-isopropylacrylamide (PNIPAM) hydrogel containing dopamine hydrochloride-modified multi-walled carbon nanotubes (MWCNTs) was developed for nerve regeneration,"[324, 175, 1125, 352]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,3,text,A polyamidoamine (PAA) hydrogel scaffold shaped as a small tube was obtained by radical polymerization of a soluble functional oligomeric precursor and was investigated as a conduit for nerve regenera,"[324, 352, 1124, 552]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,4,text,"A polyacrylamide/silk fibroin/graphene oxide composite hydrogel was designed for Schwann cell culture and nerve regeneration. This composite hydrogel featured a three-dimensional network structure, hy","[324, 552, 1125, 704]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,5,text,"Magnesium-encapsulated injectable hydrogel combined with a polycaprolactone (PCL) conduit was investigated for nerve regeneration. The study focused on sustained $ Mg^{2+} $ delivery, the activation ","[324, 704, 1123, 855]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,6,text,An in situ visible photo-crosslinkable protein-based bioadhesive hydrogel containing a functional neurotransmitter peptide was developed for sutureless neurorrhaphy. This system utilized a macrophage-,"[325, 855, 1125, 1029]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,7,text,A hierarchically aligned fibrin nanofiber hydrogel (AFG) was prepared through electrospinning and molecular self-assembly for peripheral nerve regeneration. This hydrogel featured hierarchically align,"[325, 1030, 1125, 1206]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,8,text,Graphene foam/hydrogel scaffolds combined with adipose-derived stem cells (ADSCs) were investigated for peripheral nerve regeneration in a diabetic mouse model. These scaffolds provided mechanical str,"[324, 1206, 1125, 1407]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
26,9,text,"A graphene mesh-supported double-network (DN) hydrogel scaffold loaded with netrin-1 was engineered for nerve regeneration. Composed of natural alginate, gelatin-methacryloyl, and graphene mesh, this ","[324, 1406, 1127, 1534]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
27,1,number,27 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
27,2,text,"significantly promoted peripheral nerve regeneration, demonstrating superiority to autografts [97].","[325, 176, 1125, 226]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,3,text,"Poly(2-hydroxyethyl methacrylate-co-methyl methacrylate) (PHEMA-MMA) coil-reinforced hydrogel tubes were synthesized and compared with autografts for nerve regeneration. Three designs—plain, corrugate","[324, 226, 1126, 402]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,4,text,A gelatin methacryloyl (GelMA) hydrogel photocrosslinked under a blue-light source (405 nm) was studied for nerve repair and regeneration in mice with spinal cord injury. The hydrogel's biocompatibili,"[324, 403, 1126, 552]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,5,text,"The various synthetic and composite hydrogels for neural regeneration exhibit several common features. Many studies incorporate conductive materials such as graphene oxide, polypyrrole, or carbon nano","[324, 552, 1125, 753]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,6,text,"The comparative analysis of various synthetic and composite hydrogels for nerve regeneration suggests that the most effective compositions integrate conductive materials, bioactive molecules, and adva","[324, 753, 1125, 1029]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
27,7,text,"Table 8 outlines various miscellaneous synthetic and composite hydrogels designed for neural regeneration, highlighting their physical, chemical, and biological properties. These hydrogels support ner","[324, 1029, 1125, 1182]",table_caption,0.9,"[""table prefix matched: Table 8 outlines various miscellaneous synthetic and composi""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
27,8,figure_title,Table 8. Miscellaneous synthetic and composite hydrogels in neural regeneration.,"[326, 1205, 983, 1230]",table_caption,0.9,"[""table prefix matched: Table 8. Miscellaneous synthetic and composite hydrogels in ""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
27,9,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Pure silk fibroin hydrogel w","[67, 1247, 1119, 1484]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
28,0,header,"Materials 2024, 17, 3472","[68, 98, 238, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
28,1,number,28 of 39,"[1061, 102, 1122, 124]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
28,2,figure_title,Table 8. Cont.,"[327, 174, 444, 198]",table_caption,0.9,"[""table prefix matched: Table 8. Cont.""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
28,3,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/ Disorder Targeted</td><td>Ref</td></tr><tr><td>Collagen/terpolymer hydroge","[66, 206, 1124, 1554]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
29,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
29,1,header,29 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
29,2,paragraph_title,10. Specialized Hydrogels for Specific Applications,"[327, 176, 804, 201]",section_heading,0.85,"[""paragraph_title label with numbering: 10. Specialized Hydrogels for Specific Applications""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
29,3,text,"This section discusses the development and application of specialized hydrogels for nerve tissue engineering. It highlights various formulations, like GelMA, thermosensitive, agarose-methylcellulose b","[324, 207, 1124, 333]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,4,text,"A gelatin methacrylate (GelMA) hydrogel, a gelatin modified by methacrylamide, has been extensively reviewed for its applications in nerve tissue engineering. This hydrogel possesses adjustable mechan","[325, 333, 1124, 483]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,5,text,Further advancements in GelMA hydrogels include their modification with methacrylic anhydride and loading with vascular endothelial growth factor (VEGF). This formulation exhibits good physical and ch,"[326, 483, 1125, 635]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,6,text,A thermosensitive hydrogel (PALDE) carrying extracellular vesicles (EVs) from adipose-derived stem cells was studied for peripheral nerve regeneration after microsurgical repair. This hydrogel promote,"[325, 635, 1128, 810]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,7,text,Agarose and methylcellulose hydrogel blends have been created for nerve regeneration applications. These thermoreversible hydrogels combine methylcellulose with agarose to create injectable materials ,"[325, 810, 1124, 985]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,8,text,Chondroitin sulfate hydrogel has been designed as a scaffold for regenerating root neurons and delivering neurotrophic signals. This hydrogel shows a strong affinity with common neurotrophins and prov,"[324, 986, 1124, 1136]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,9,text,"Specialized hydrogels for specific applications in nerve regeneration share several common features. These hydrogels are designed to be biocompatible, biodegradable, and possess tunable mechanical pro","[325, 1137, 1126, 1312]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
29,10,text,"The comparative analysis of specialized hydrogels for specific applications in nerve tissue engineering suggests that the most effective compositions integrate bioactive molecules, exhibit tunable mec","[325, 1313, 1126, 1540]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
30,1,number,30 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
30,2,text,"offer advantageous thermoreversible properties and structural stability at physiological temperatures, supporting nerve regeneration and therapeutic delivery [105]. Chondroitin sulfate hydrogels excel","[325, 175, 1124, 276]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,3,text,"Table 9 highlights specialized hydrogels designed for specific neural regeneration applications, detailing their physical, chemical, and biological properties. These hydrogels support nerve repair by ","[324, 277, 1125, 430]",table_caption,0.9,"[""table prefix matched: Table 9 highlights specialized hydrogels designed for specif""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
30,4,figure_title,Table 9. Hydrogels designed for special neural regeneration applications.,"[326, 452, 917, 476]",table_caption,0.9,"[""table prefix matched: Table 9. Hydrogels designed for special neural regeneration ""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
30,5,table,"<table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Gelatin methacrylate (GelMA)","[67, 492, 1119, 904]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
30,6,paragraph_title,11. Factors Affecting the Selection of Hydrogels for Neural Regeneration,"[327, 935, 998, 960]",section_heading,0.85,"[""paragraph_title label with numbering: 11. Factors Affecting the Selection of Hydrogels for Neural ""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
30,7,text,The selection of hydrogels for neural regeneration is influenced by several key factors that help tailor these materials to address specific neural injuries and regeneration challenges. These factors ,"[324, 967, 1125, 1066]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,8,text,"Different neural injuries require hydrogels with specific properties. For instance, spinal cord injuries often benefit from hydrogels that support electrical signal transmission and promote axonal gro","[324, 1066, 1125, 1241]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,9,text,"The physical properties of hydrogels, such as porosity, biodegradability, and mechanical strength, are critical for creating an environment conducive to nerve regeneration. Tailoring these properties ","[325, 1242, 1125, 1419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
30,10,text,"Incorporating growth factors, drugs, conductive materials, and bioactive molecules into hydrogels significantly enhances their regenerative capabilities. Growth factors like NGF and BDNF improve neuro","[324, 1419, 1127, 1546]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
31,1,header,31 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""header label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
31,2,text,"including neurotrophic peptides, antioxidants, and anti-inflammatory agents, support cell proliferation, reduce inflammation, and enhance neuroprotection [14,15,58]. The choice of additives, such as 4","[325, 176, 1125, 300]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,3,text,"Effective delivery methods and sustained release profiles are crucial for the therapeutic success of hydrogels. Injectable hydrogels offer minimally invasive delivery and better tissue integration, wh","[325, 302, 1124, 527]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,4,text,"Ensuring the biocompatibility and safety of hydrogels is paramount. Rigorous in vitro and in vivo testing confirms the cytocompatibility and hemocompatibility of the hydrogels, ensuring they are nonto","[326, 527, 1125, 678]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,5,text,"By carefully considering these factors—the type of nerve injury, hydrogel properties, additive components, delivery methods, and biocompatibility—researchers can optimize hydrogels to meet the specifi","[325, 678, 1126, 805]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,6,paragraph_title,12. Testing Hydrogels for Neural Regeneration and Repair,"[327, 823, 868, 849]",section_heading,0.85,"[""paragraph_title label with numbering: 12. Testing Hydrogels for Neural Regeneration and Repair""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
31,7,text,"Hydrogels have emerged as promising materials for neural regeneration and repair due to their biocompatibility, tunable mechanical properties, and ability to mimic the natural extracellular matrix. Co","[325, 854, 1123, 983]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,8,paragraph_title,12.1. In Vitro Tests,"[329, 1000, 493, 1024]",subsection_heading,0.85,"[""paragraph_title label with numbering: 12.1. In Vitro Tests""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
31,9,text,"In vitro tests focus on the morphological, mechanical, and biological properties of hydrogels. Morphological analysis using scanning electron microscopy (SEM) is essential to ensuring the appropriate ","[325, 1031, 1123, 1182]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,10,text,"Mechanical and degradation properties are also critical. Mechanical properties such as the tensile strength, compressive modulus, and Young's modulus are measured to ensure that the hydrogel can withs","[325, 1182, 1124, 1332]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,11,text,"Cell viability and proliferation are assessed using various assays. Viability assays like MTT and resazurin analyses help determine the hydrogel's ability to support cell survival and proliferation, w","[326, 1332, 1123, 1482]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
31,12,text,"The electrophysiological and conductivity properties of hydrogels are evaluated to ensure their suitability for neural applications. Electrophysiological recordings, such as","[326, 1483, 1124, 1535]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
32,1,number,32 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
32,2,text,"compound muscle action potential (CMAP) latency and nerve conduction velocity (NCV), assess the hydrogel's ability to support and transmit electrical signals [61,67]. Conductivity measurements are als","[326, 175, 1123, 277]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,3,paragraph_title,12.2. In Vivo Tests,"[329, 296, 489, 319]",subsection_heading,0.85,"[""paragraph_title label with numbering: 12.2. In Vivo Tests""]",subsection_heading,0.85,body_zone,heading_like,heading_numbered,True,True
32,4,text,"In vivo tests provide insights into the functional recovery and integration of hydrogels in living organisms. Functional recovery is often assessed using the sciatic functional index (SFI), which meas","[325, 327, 1124, 452]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,5,text,"Histological and biochemical analyses are conducted to observe tissue integration, axonal regeneration, and inflammatory responses. Techniques such as immunohistochemistry and Masson's trichrome stain","[326, 453, 1125, 602]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,6,text,"Muscle mass and function, such as gastrocnemius muscle mass measurements, serve as indicators of successful nerve regeneration and functional recovery $ [9,26] $.","[326, 604, 1122, 654]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,7,paragraph_title,13. Collective Outcomes,"[329, 673, 557, 697]",section_heading,0.85,"[""paragraph_title label with numbering: 13. Collective Outcomes""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
32,8,text,"Hydrogels have demonstrated significant advancements in nerve regeneration through enhanced biocompatibility, structural integrity, and functional recovery. Studies report high biocompatibility, minim","[325, 704, 1124, 905]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,9,text,"Hydrogels possess favorable structural and mechanical properties, such as matching the Young's modulus of nerve tissues and supporting cell regrowth, exemplified by a chitosan/beta-glycerophosphate/sa","[324, 906, 1123, 1031]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,10,text,Functional recovery and nerve regeneration have significantly improved with various hydrogels. Examples include AFG-prefilled chitosan tubes and a Schwann cell-encapsulated chitosan/collagen hydrogel ,"[325, 1031, 1126, 1231]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,11,text,"Incorporating advanced materials like BP nanosheets, peptide amphiphile nanofibers, and graphene oxide composites significantly improves hydrogel properties, enhancing conductivity, mechanical stabili","[325, 1232, 1124, 1381]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
32,12,text,Hydrogels with controlled release mechanisms and antimicrobial properties show promising results in promoting nerve regeneration while preventing infections. Examples include an AG-Car/SiNGF hydrogel ,"[325, 1383, 1125, 1534]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
33,1,number,33 of 39,"[1061, 103, 1121, 123]",noise,0.9,"[""page number label""]",noise,0.9,,reference_like,reference_numeric_dot,False,False
33,2,text,"Innovative structural designs, such as microchannel guidance patterns and hierarchically aligned fibrin nanofiber hydrogels, improve tissue propagation and directional cell migration, further enhancin","[326, 175, 1124, 254]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,3,paragraph_title,14. Collective Limitations,"[328, 271, 571, 294]",section_heading,0.85,"[""paragraph_title label with numbering: 14. Collective Limitations""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
33,4,text,"Hydrogels face significant challenges in nerve regeneration applications. There is notable variability in outcomes, with some hydrogels like the CS/GP hydrogel showing positive in vitro results but in","[325, 302, 1124, 606]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,5,paragraph_title,15. Future Directions,"[328, 623, 529, 647]",section_heading,0.85,"[""paragraph_title label with numbering: 15. Future Directions""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
33,6,text,"Future research in hydrogel-based nerve regeneration should focus on optimizing physical and chemical properties to better mimic natural nerve tissue by fine-tuning pore sizes, degradation rates, and ","[325, 653, 1125, 1007]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,7,paragraph_title,16. Conclusions,"[328, 1025, 482, 1049]",section_heading,0.85,"[""paragraph_title label with numbering: 16. Conclusions""]",section_heading,0.85,body_zone,heading_like,heading_numbered,True,True
33,8,text,"Hydrogels such as chitosan, alginate, collagen, hyaluronic acid, and peptide amphiphiles exhibit high biocompatibility and biodegradability, which are essential for nerve repair. These materials suppo","[324, 1056, 1125, 1335]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
33,9,text,"Author Contributions: The authors confirm contributions to the paper as follows: conceptualization, writing, review, and editing, H.O.; investigation, review, and editing S.D.C. and L.X.C. All authors","[326, 1356, 1124, 1428]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,support_like,none,True,True
33,10,text,Funding: This review article received no external funding.,"[328, 1438, 807, 1463]",body_paragraph,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,unknown_like,none,True,True
33,11,text,Institutional Review Board Statement: Not applicable.,"[327, 1473, 778, 1497]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
33,12,text,Informed Consent Statement: Not applicable.,"[328, 1509, 704, 1533]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
34,0,header,"Materials 2024, 17, 3472","[68, 98, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
34,1,number,34 of 39,"[1061, 103, 1121, 123]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
34,2,text,Data Availability Statement: No new data were created or analyzed in this study. Data sharing is not applicable to this article.,"[327, 178, 1122, 225]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
34,3,text,"Conflicts of Interest: Authors partly used the OpenAI Large-Scale Language Model to maximize accuracy, clarity, and organization.","[327, 236, 1122, 284]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
34,4,paragraph_title,Abbreviations,"[328, 308, 466, 330]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Abbreviations""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
34,5,table,<table><tr><td>4-MC</td><td>4-Methylcatechol</td></tr><tr><td>ADSCs</td><td>Adipose-derived stem cells</td></tr><tr><td>AFG</td><td>Aligned fibrin nanofiber hydrogels</td></tr><tr><td>ASC</td><td>Adip,"[324, 351, 957, 1271]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
34,6,paragraph_title,References,"[67, 1293, 175, 1316]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
34,7,reference_content,"1. Navarro, X.; Vivo, M.; Valero-Cabre, A. Neural plasticity after peripheral nerve injury and regeneration. Prog. Neurobiol. 2007, 82, 163201. [CrossRef]","[66, 1323, 1123, 1366]",reference_item,0.85,"[""reference content label: 1. Navarro, X.; Vivo, M.; Valero-Cabre, A. Neural plasticity""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
34,8,reference_content,"2. Stoll, G.; Muller, H.W. Nerve injury, axonal degeneration and neural regeneration: Basic insights. Brain Pathol. 1999, 9, 313325. [CrossRef] [PubMed]","[66, 1369, 1123, 1412]",reference_item,0.85,"[""reference content label: 2. Stoll, G.; Muller, H.W. Nerve injury, axonal degeneration""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
34,9,reference_content,"3. Gazdar, A.F.; Dammin, G.J. Neural degeneration and regeneration in human renal transplants. N. Engl. J. Med. 1970, 283, 222224. [CrossRef] [PubMed]","[66, 1415, 1122, 1459]",reference_item,0.85,"[""reference content label: 3. Gazdar, A.F.; Dammin, G.J. Neural degeneration and regene""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
34,10,reference_content,"4. Gulati, A.K. Peripheral nerve regeneration through short- and long-term degenerated nerve transplants. Brain Res. 1996, 742, 265270. [CrossRef]","[66, 1462, 1124, 1505]",reference_item,0.85,"[""reference content label: 4. Gulati, A.K. Peripheral nerve regeneration through short-""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
35,1,number,35 of 39,"[1061, 103, 1121, 123]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
35,2,reference_content,"5. Yasuda, H.; Terada, M.; Maeda, K.; Kogawa, S.; Sanada, M.; Haneda, M.; Kashiwagi, A.; Kikkawa, R. Diabetic neuropathy and nerve regeneration. Prog. Neurobiol. 2003, 69, 229285. [CrossRef]","[65, 177, 1122, 222]",reference_item,0.85,"[""reference content label: 5. Yasuda, H.; Terada, M.; Maeda, K.; Kogawa, S.; Sanada, M.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,3,reference_content,"6. Li, X.; Zhang, T.; Li, C.; Xu, W.; Guan, Y.; Li, X.; Cheng, H.; Chen, S.; Yang, B.; Liu, Y.; et al. Electrical stimulation accelerates Wallerian degeneration and promotes nerve regeneration after s","[66, 224, 1122, 268]",reference_item,0.85,"[""reference content label: 6. Li, X.; Zhang, T.; Li, C.; Xu, W.; Guan, Y.; Li, X.; Chen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,4,reference_content,"7. Jiang, L.; Jones, S.; Jia, X. Stem Cell Transplantation for Peripheral Nerve Regeneration: Current Options and Opportunities. Int. J. Mol. Sci. 2017, 18, 94. [CrossRef] [PubMed]","[67, 270, 1122, 313]",reference_item,0.85,"[""reference content label: 7. Jiang, L.; Jones, S.; Jia, X. Stem Cell Transplantation f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,5,reference_content,"8. Ehterami, A.; Rezaei Kolarijani, N.; Nazarnezhad, S.; Alizadeh, M.; Masoudi, A.; Salehi, M. Peripheral nerve regeneration by thiolated chitosan hydrogel containing Taurine: In vitro and in vivo stu","[66, 316, 1122, 360]",reference_item,0.85,"[""reference content label: 8. Ehterami, A.; Rezaei Kolarijani, N.; Nazarnezhad, S.; Ali""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,6,reference_content,"9. Guo, Q.; Liu, C.; Hai, B.; Ma, T.; Zhang, W.; Tan, J.; Fu, X.; Wang, H.; Xu, Y.; Song, C. Chitosan conduits filled with simvastatin/Pluronic F-127 hydrogel promote peripheral nerve regeneration in ","[66, 363, 1124, 428]",reference_item,0.85,"[""reference content label: 9. Guo, Q.; Liu, C.; Hai, B.; Ma, T.; Zhang, W.; Tan, J.; Fu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,7,reference_content,"10. Wach, R.A.; Adamus-Wlodarczyk, A.; Olejnik, A.K.; Matusiak, M.; Tranquilan-Aranilla, C.; Ulanski, P. Carboxymethylchitosan hydrogel manufactured by radiation-induced crosslinking as potential nerv","[67, 431, 1123, 497]",reference_item,0.85,"[""reference content label: 10. Wach, R.A.; Adamus-Wlodarczyk, A.; Olejnik, A.K.; Matusi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,8,reference_content,"11. Itai, S.; Suzuki, K.; Kurashina, Y.; Kimura, H.; Amemiya, T.; Sato, K.; Nakamura, M.; Onoe, H. Cell-encapsulated chitosan-collagen hydrogel hybrid nerve guidance conduit for peripheral nerve regen","[68, 500, 1121, 544]",reference_item,0.85,"[""reference content label: 11. Itai, S.; Suzuki, K.; Kurashina, Y.; Kimura, H.; Amemiya""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,9,reference_content,"12. Takeya, H.; Itai, S.; Kimura, H.; Kurashina, Y.; Amemiya, T.; Nagoshi, N.; Iwamoto, T.; Sato, K.; Shibata, S.; Matsumoto, M.; et al. Schwann cell-encapsulated chitosan-collagen hydrogel nerve cond","[68, 547, 1124, 612]",reference_item,0.85,"[""reference content label: 12. Takeya, H.; Itai, S.; Kimura, H.; Kurashina, Y.; Amemiya""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,10,reference_content,"13. Liu, K.; Wang, Y.; Dong, X.; Xu, C.; Yuan, M.; Wei, W.; Pang, Z.; Wu, X.; Dai, H. Injectable Hydrogel System Incorporating Black Phosphorus Nanosheets and Tazarotene Drug for Enhanced Vascular and","[67, 615, 1123, 681]",reference_item,0.85,"[""reference content label: 13. Liu, K.; Wang, Y.; Dong, X.; Xu, C.; Yuan, M.; Wei, W.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,11,reference_content,"14. He, Z.; Zang, H.; Zhu, L.; Huang, K.; Yi, T.; Zhang, S.; Cheng, S. An anti-inflammatory peptide and brain-derived neurotrophic factor-modified hyaluronan-methylcellulose hydrogel promotes nerve re","[66, 684, 1123, 751]",reference_item,0.85,"[""reference content label: 14. He, Z.; Zang, H.; Zhu, L.; Huang, K.; Yi, T.; Zhang, S.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,12,reference_content,"15. Zhang, Y.; Li, L.; Mu, J.; Chen, J.; Feng, S.; Gao, J. Implantation of a functional TEMPO-hydrogel induces recovery from rat spinal cord transection through promoting nerve regeneration and protec","[67, 752, 1123, 819]",reference_item,0.85,"[""reference content label: 15. Zhang, Y.; Li, L.; Mu, J.; Chen, J.; Feng, S.; Gao, J. I""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,13,reference_content,"16. Lanier, S.T.; Hill, J.R.; Dy, C.J.; Brogan, D.M. Evolving Techniques in Peripheral Nerve Regeneration. J. Hand Surg. Am. 2021, 46, 695701. [CrossRef]","[67, 822, 1124, 865]",reference_item,0.85,"[""reference content label: 16. Lanier, S.T.; Hill, J.R.; Dy, C.J.; Brogan, D.M. Evolvin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,14,reference_content,"17. Omidian, H.; Chowdhury, S.D. Advancements and Applications of Injectable Hydrogel Composites in Biomedical Research and Therapy. Gels 2023, 9, 533. [CrossRef] [PubMed]","[67, 867, 1123, 912]",reference_item,0.85,"[""reference content label: 17. Omidian, H.; Chowdhury, S.D. Advancements and Applicatio""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,15,reference_content,"18. Omidian, H.; Chowdhury, S.D.; Wilson, R.L. Advancements and Challenges in Hydrogel Engineering for Regenerative Medicine. Gels 2024, 10, 238. [CrossRef] [PubMed]","[67, 915, 1124, 958]",reference_item,0.85,"[""reference content label: 18. Omidian, H.; Chowdhury, S.D.; Wilson, R.L. Advancements ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,16,reference_content,"19. Omidian, H.; Dey Chowdhury, S.; Babanejad, N. Cryogels: Advancing Biomaterials for Transformative Biomedical Applications. Pharmaceutics 2023, 15, 1836. [CrossRef]","[67, 960, 1123, 1003]",reference_item,0.85,"[""reference content label: 19. Omidian, H.; Dey Chowdhury, S.; Babanejad, N. Cryogels: ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,17,reference_content,"20. Shokrollahi, P.; Omidi, Y.; Cubeddu, L.X.; Omidian, H. Conductive polymers for cardiac tissue engineering and regeneration. J. Biomed. Mater. Res. Part B 2023, 111, 19791995. [CrossRef]","[66, 1006, 1123, 1050]",reference_item,0.85,"[""reference content label: 20. Shokrollahi, P.; Omidi, Y.; Cubeddu, L.X.; Omidian, H. C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,18,reference_content,"21. Li, H.; Li, M.; Liu, P.; Wang, K.; Fang, H.; Yin, J.; Zhu, D.; Yang, Q.; Gao, J.; Ke, Q.; et al. A multifunctional substance P-conjugated chitosan hydrochloride hydrogel accelerates full-thickness","[66, 1052, 1124, 1119]",reference_item,0.85,"[""reference content label: 21. Li, H.; Li, M.; Liu, P.; Wang, K.; Fang, H.; Yin, J.; Zh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,19,reference_content,"22. Abbaszadeh-Goudarzi, G.; Haghi-Daredeh, S.; Ehterami, A.; Rahmati, M.; Nazarnezhad, S.; Hashemi, S.F.; Niyakan, M.; Vaez, A.; Salehi, M. Evaluating effect of alginate/chitosan hydrogel containing ","[67, 1120, 1124, 1188]",reference_item,0.85,"[""reference content label: 22. Abbaszadeh-Goudarzi, G.; Haghi-Daredeh, S.; Ehterami, A.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,20,reference_content,"23. Ebrahimi, M.H.; Samadian, H.; Davani, S.T.; Kolarijani, N.R.; Mogharabian, N.; Salami, M.S.; Salehi, M. Peripheral nerve regeneration in rats by chitosan/alginate hydrogel composited with Berberin","[66, 1190, 1123, 1257]",reference_item,0.85,"[""reference content label: 23. Ebrahimi, M.H.; Samadian, H.; Davani, S.T.; Kolarijani, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,21,reference_content,"24. Keykhaee, M.; Rahimifard, M.; Najafi, A.; Baeeri, M.; Abdollahi, M.; Mottaghitalab, F.; Farokhi, M.; Khoobi, M. Alginate/gum arabic-based biomimetic hydrogel enriched with immobilized nerve growth","[66, 1260, 1122, 1327]",reference_item,0.85,"[""reference content label: 24. Keykhaee, M.; Rahimifard, M.; Najafi, A.; Baeeri, M.; Ab""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,22,reference_content,"25. Ai, A.; Behforouz, A.; Ehterami, A.; Sadeghvaziri, N.; Jalali, S.; Farzamfar, S.; Yousefbeigi, A.; Ai, A.; Goodarzi, A.; Salehi, M.; et al. Sciatic nerve regeneration with collagen type I hydrogel","[67, 1329, 1124, 1395]",reference_item,0.85,"[""reference content label: 25. Ai, A.; Behforouz, A.; Ehterami, A.; Sadeghvaziri, N.; J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,23,reference_content,"26. Xu, H.; Yu, Y.; Zhang, L.; Zheng, F.; Yin, Y.; Gao, Y.; Li, K.; Xu, J.; Wen, J.; Chen, H.; et al. Sustainable release of nerve growth factor for peripheral nerve regeneration using nerve conduits ","[67, 1398, 1122, 1464]",reference_item,0.85,"[""reference content label: 26. Xu, H.; Yu, Y.; Zhang, L.; Zheng, F.; Yin, Y.; Gao, Y.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
35,24,reference_content,"27. Gao, Y.; Zhang, T.L.; Zhang, H.J.; Gao, J.; Yang, P.F. A Promising Application of Injectable Hydrogels in Nerve Repair and Regeneration for Ischemic Stroke. Int. J. Nanomed. 2024, 19, 327345. [Cr","[67, 1467, 1120, 1512]",reference_item,0.85,"[""reference content label: 27. Gao, Y.; Zhang, T.L.; Zhang, H.J.; Gao, J.; Yang, P.F. A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
36,1,number,36 of 39,"[1061, 103, 1122, 123]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
36,2,reference_content,"28. Wang, X.; Yao, X.; Sun, Z.; Jin, Y.; Yan, Z.; Jiang, H.; Ouyang, Y.; Yuan, W.E.; Wang, C.; Fan, C. An extracellular matrix mimicking alginate hydrogel scaffold manipulates an inflammatory microenv","[65, 178, 1122, 245]",reference_item,0.85,"[""reference content label: 28. Wang, X.; Yao, X.; Sun, Z.; Jin, Y.; Yan, Z.; Jiang, H.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,3,reference_content,"29. Karimi, S.; Bagher, Z.; Najmoddin, N.; Simorgh, S.; Pezeshki-Modaress, M. Alginate-magnetic short nanofibers 3D composite hydrogel enhances the encapsulated human olfactory mucosa stem cells bioac","[66, 247, 1123, 314]",reference_item,0.85,"[""reference content label: 29. Karimi, S.; Bagher, Z.; Najmoddin, N.; Simorgh, S.; Peze""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,4,reference_content,"30. Samadian, H.; Vaez, A.; Ehterami, A.; Salehi, M.; Farzamfar, S.; Sahrapeyma, H.; Norouzi, P. Sciatic nerve regeneration by using collagen type I hydrogel containing naringin. J. Mater. Sci.-Mater.","[66, 316, 1123, 360]",reference_item,0.85,"[""reference content label: 30. Samadian, H.; Vaez, A.; Ehterami, A.; Salehi, M.; Farzam""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,5,reference_content,"31. Ardhani, R.; Ana, I.D.; Tabata, Y. Gelatin hydrogel membrane containing carbonate hydroxyapatite for nerve regeneration scaffold. J. Biomed. Mater. Res. Part A 2020, 108, 24912503. [CrossRef] [Pu","[67, 363, 1124, 406]",reference_item,0.85,"[""reference content label: 31. Ardhani, R.; Ana, I.D.; Tabata, Y. Gelatin hydrogel memb""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,6,reference_content,"32. Rahmati, M.; Ehterami, A.; Saberani, R.; Abbaszadeh-Goudarzi, G.; Rezaei Kolarijani, N.; Khastar, H.; Garmabi, B.; Salehi, M. Improving sciatic nerve regeneration by using alginate/chitosan hydrog","[67, 408, 1124, 473]",reference_item,0.85,"[""reference content label: 32. Rahmati, M.; Ehterami, A.; Saberani, R.; Abbaszadeh-Goud""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,7,reference_content,"33. Salehi, M.; Naseri-Nosar, M.; Ebrahimi-Barough, S.; Nourani, M.; Vaez, A.; Farzamfar, S.; Ai, J. Regeneration of sciatic nerve crush injury by a hydroxyapatite nanoparticle-containing collagen typ","[66, 477, 1122, 521]",reference_item,0.85,"[""reference content label: 33. Salehi, M.; Naseri-Nosar, M.; Ebrahimi-Barough, S.; Nour""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,8,reference_content,"34. Gu, X.; Chen, X.; Tang, X.; Zhou, Z.; Huang, T.; Yang, Y.; Ling, J. Pure-silk fibroin hydrogel with stable aligned micropattern toward peripheral nerve regeneration. Nanotechnol. Rev. 2021, 10, 10","[68, 523, 1120, 567]",reference_item,0.85,"[""reference content label: 34. Gu, X.; Chen, X.; Tang, X.; Zhou, Z.; Huang, T.; Yang, Y""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,9,reference_content,"35. Xuan, H.; Wu, S.; Jin, Y.; Wei, S.; Xiong, F.; Xue, Y.; Li, B.; Yang, Y.; Yuan, H. A Bioinspired Self-Healing Conductive Hydrogel Promoting Peripheral Nerve Regeneration. Adv. Sci. 2023, 10, e2302","[67, 569, 1123, 613]",reference_item,0.85,"[""reference content label: 35. Xuan, H.; Wu, S.; Jin, Y.; Wei, S.; Xiong, F.; Xue, Y.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,10,reference_content,"36. Yi, Z.; Zhan, F.; Chen, Y.; Zhang, R.; Lin, H.; Zhao, L. An electroconductive hydrogel with injectable and self-healing properties accelerates peripheral nerve regeneration and motor functional re","[67, 615, 1121, 659]",reference_item,0.85,"[""reference content label: 36. Yi, Z.; Zhan, F.; Chen, Y.; Zhang, R.; Lin, H.; Zhao, L.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,11,reference_content,"37. Wang, S.; Lu, H.; Kang, X.; Wang, Z.; Yan, S.; Zhang, X.; Shi, X. Electroconductive and Immunomodulatory Natural Polymer-Based Hydrogel Bandages Designed for Peripheral Nerve Regeneration. Adv. Fu","[67, 662, 1120, 704]",reference_item,0.85,"[""reference content label: 37. Wang, S.; Lu, H.; Kang, X.; Wang, Z.; Yan, S.; Zhang, X.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,12,reference_content,"38. Madhusudanan, P.; Raju, G.; Shankarappa, S. Hydrogel systems and their role in neural tissue engineering. J. R. Soc. Interface 2020, 17, 20190505. [CrossRef] [PubMed]","[67, 707, 1123, 750]",reference_item,0.85,"[""reference content label: 38. Madhusudanan, P.; Raju, G.; Shankarappa, S. Hydrogel sys""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,13,reference_content,"39. Mu, X.; Sun, X.; Yang, S.; Pan, S.; Sun, J.; Niu, Y.; He, L.; Wang, X. Chitosan Tubes Prefilled with Aligned Fibrin Nanofiber Hydrogel Enhance Facial Nerve Regeneration in Rabbits. ACS Omega 2021,","[66, 752, 1123, 796]",reference_item,0.85,"[""reference content label: 39. Mu, X.; Sun, X.; Yang, S.; Pan, S.; Sun, J.; Niu, Y.; He""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,14,reference_content,"40. Zheng, L.; Ao, Q.; Han, H.; Zhang, X.; Gong, Y. Evaluation of the chitosan/glycerol-beta-phosphate disodium salt hydrogel application in peripheral nerve regeneration. Biomed. Mater. 2010, 5, 3500","[67, 799, 1123, 843]",reference_item,0.85,"[""reference content label: 40. Zheng, L.; Ao, Q.; Han, H.; Zhang, X.; Gong, Y. Evaluati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,15,reference_content,"41. Zhang, L.; Chen, Y.; Xu, H.; Bao, Y.; Yan, X.; Li, Y.; Li, Y.; Yin, Y.; Wang, X.; Qiu, T.; et al. Preparation and evaluation of an injectable chitosan-hyaluronic acid hydrogel for peripheral nerve","[67, 845, 1123, 910]",reference_item,0.85,"[""reference content label: 41. Zhang, L.; Chen, Y.; Xu, H.; Bao, Y.; Yan, X.; Li, Y.; L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,16,reference_content,"42. Kocman, A.E.; Dag, I.; Sengel, T.; Soztutar, E.; Canbek, M. The effect of lithium and lithium-loaded hyaluronic acid hydrogel applications on nerve regeneration and recovery of motor functions in ","[67, 914, 1122, 980]",reference_item,0.85,"[""reference content label: 42. Kocman, A.E.; Dag, I.; Sengel, T.; Soztutar, E.; Canbek,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,17,reference_content,"43. Choe, S.; Bond, C.W.; Harrington, D.A.; Stupp, S.I.; McVary, K.T.; Podlasek, C.A. Peptide amphiphile nanofiber hydrogel delivery of sonic hedgehog protein to the cavernous nerve to promote regener","[67, 983, 1123, 1049]",reference_item,0.85,"[""reference content label: 43. Choe, S.; Bond, C.W.; Harrington, D.A.; Stupp, S.I.; McV""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,18,reference_content,"44. Lu, J.; Sun, X.; Yin, H.; Shen, X.; Yang, S.; Wang, Y.; Jiang, W.; Sun, Y.; Zhao, L.; Sun, X.; et al. A neurotrophic peptide-functionalized self-assembling peptide nanofiber hydrogel enhances rat ","[66, 1052, 1122, 1096]",reference_item,0.85,"[""reference content label: 44. Lu, J.; Sun, X.; Yin, H.; Shen, X.; Yang, S.; Wang, Y.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,19,reference_content,"45. Bagher, Z.; Ehterami, A.; Nasrolahi, M.; Azimi, M.; Salehi, M. Hesperidin promotes peripheral nerve regeneration based on tissue engineering strategy using alginate/chitosan hydrogel: In vitro and","[66, 1099, 1124, 1164]",reference_item,0.85,"[""reference content label: 45. Bagher, Z.; Ehterami, A.; Nasrolahi, M.; Azimi, M.; Sale""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,20,reference_content,"46. Meyer, C.; Wrobel, S.; Raimondo, S.; Rochkind, S.; Heimann, C.; Shahar, A.; Ziv-Polat, O.; Geuna, S.; Grothe, C.; Haastert-Talini, K. Peripheral Nerve Regeneration Through Hydrogel-Enriched Chitos","[66, 1167, 1123, 1234]",reference_item,0.85,"[""reference content label: 46. Meyer, C.; Wrobel, S.; Raimondo, S.; Rochkind, S.; Heima""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,21,reference_content,"47. Midha, R.; Munro, C.A.; Dalton, P.D.; Tator, C.H.; Shoichet, M.S. Growth factor enhancement of peripheral nerve regeneration through a novel synthetic hydrogel tube. J. Neurosurg. 2003, 99, 55556","[66, 1237, 1122, 1281]",reference_item,0.85,"[""reference content label: 47. Midha, R.; Munro, C.A.; Dalton, P.D.; Tator, C.H.; Shoic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,22,reference_content,"48. Park, J.; Lim, E.; Back, S.; Na, H.; Park, Y.; Sun, K. Nerve regeneration following spinal cord injury using matrix metalloproteinases-sensitive, hyaluronic acid-based biomimetic hydrogel scaffold","[68, 1283, 1123, 1349]",reference_item,0.85,"[""reference content label: 48. Park, J.; Lim, E.; Back, S.; Na, H.; Park, Y.; Sun, K. N""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,23,reference_content,"49. Chao, X.; Xu, L.; Li, J.; Han, Y.; Li, X.; Mao, Y.; Shang, H.; Fan, Z.; Wang, H. Facilitation of facial nerve regeneration using chitosan-beta-glycerophosphate-nerve growth factor hydrogel. Acta O","[67, 1352, 1122, 1396]",reference_item,0.85,"[""reference content label: 49. Chao, X.; Xu, L.; Li, J.; Han, Y.; Li, X.; Mao, Y.; Shan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,24,reference_content,"50. Yao, S.; He, F.; Cao, Z.; Sun, Z.; Chen, Y.; Zhao, H.; Yu, X.; Wang, X.; Yang, Y.; Rosei, F.; et al. Mesenchymal Stem Cell-Laden Hydrogel Microfibers for Promoting Nerve Fiber Regeneration in Long","[67, 1398, 1123, 1464]",reference_item,0.85,"[""reference content label: 50. Yao, S.; He, F.; Cao, Z.; Sun, Z.; Chen, Y.; Zhao, H.; Y""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
36,25,reference_content,"51. Zheng, F.; Li, R.; He, Q.; Koral, K.; Tao, J.; Fan, L.; Xiang, R.; Ma, J.; Wang, N.; Yin, Y.; et al. The electrostimulation and scar inhibition effect of chitosan/oxidized hydroxyethyl cellulose/r","[66, 1467, 1123, 1537]",reference_item,0.85,"[""reference content label: 51. Zheng, F.; Li, R.; He, Q.; Koral, K.; Tao, J.; Fan, L.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
37,1,number,37 of 39,"[1060, 103, 1122, 123]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
37,2,reference_content,"52. Kang, X.; Li, X.; Liu, C.; Cai, M.; Guan, P.; Luo, Y.; Guan, Y.; Tian, Y.; Ren, K.; Ning, C.; et al. A shape-persistent plasticine-like conductive hydrogel with self-healing properties for periphe","[66, 177, 1122, 244]",reference_item,0.85,"[""reference content label: 52. Kang, X.; Li, X.; Liu, C.; Cai, M.; Guan, P.; Luo, Y.; G""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,3,reference_content,"53. Park, J.; Jeon, J.; Kim, B.; Lee, M.S.; Park, S.; Lim, J.; Yi, J.; Lee, H.; Yang, H.S.; Lee, J.Y. Electrically Conductive Hydrogel Nerve Guidance Conduits for Peripheral Nerve Regeneration. Adv. F","[66, 246, 1120, 291]",reference_item,0.85,"[""reference content label: 53. Park, J.; Jeon, J.; Kim, B.; Lee, M.S.; Park, S.; Lim, J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,4,reference_content,"54. Gao, Y.; Dai, C.; Zhang, M.; Zhang, J.; Yin, L.; Li, W.; Zhang, K.; Yang, Y.; Zhao, Y. Biomimetic Silk Fibroin Hydrogel for Enhanced Peripheral Nerve Regeneration: Synergistic Effects of Graphene ","[67, 293, 1122, 359]",reference_item,0.85,"[""reference content label: 54. Gao, Y.; Dai, C.; Zhang, M.; Zhang, J.; Yin, L.; Li, W.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,5,reference_content,"55. Mozhdebhakhsh Mofrad, Y.; Shamloo, A. The effect of conductive aligned fibers in an injectable hydrogel on nerve tissue regeneration. Int. J. Pharm. 2023, 645, 123419. [CrossRef]","[67, 362, 1122, 406]",reference_item,0.85,"[""reference content label: 55. Mozhdebhakhsh Mofrad, Y.; Shamloo, A. The effect of cond""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,6,reference_content,"56. Savari Kouzehkonan, G.; Motakef Kazemi, N.; Adabi, M.; Mosavi, S.E.; Rezayat Sorkhabadi, S.M. Regeneration of sciatic nerve injury through nanofiber neural guidance channels containing collagen hy","[68, 409, 1123, 474]",reference_item,0.85,"[""reference content label: 56. Savari Kouzehkonan, G.; Motakef Kazemi, N.; Adabi, M.; M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,7,reference_content,"57. Yoo, J.; Park, J.H.; Kwon, Y.W.; Chung, J.J.; Choi, I.C.; Nam, J.J.; Lee, H.S.; Jeon, E.Y.; Lee, K.; Kim, S.H.; et al. Augmented peripheral nerve regeneration through elastic nerve guidance condui","[67, 477, 1123, 544]",reference_item,0.85,"[""reference content label: 57. Yoo, J.; Park, J.H.; Kwon, Y.W.; Chung, J.J.; Choi, I.C.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,8,reference_content,"58. Kong, Y.; Shi, W.; Zhang, D.; Jiang, X.; Kuss, M.; Liu, B.; Li, Y.; Duan, B. Injectable, antioxidative, and neurotrophic factor-deliverable hydrogel for peripheral nerve regeneration and neuropath","[67, 546, 1124, 590]",reference_item,0.85,"[""reference content label: 58. Kong, Y.; Shi, W.; Zhang, D.; Jiang, X.; Kuss, M.; Liu, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,9,reference_content,"59. Yang, J.; Hsu, C.C.; Cao, T.T.; Ye, H.; Chen, J.; Li, Y.Q. A hyaluronic acid granular hydrogel nerve guidance conduit promotes regeneration and functional recovery of injured sciatic nerves in rat","[68, 592, 1121, 636]",reference_item,0.85,"[""reference content label: 59. Yang, J.; Hsu, C.C.; Cao, T.T.; Ye, H.; Chen, J.; Li, Y.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,10,reference_content,"60. Black, K.A.; Lin, B.F.; Wonder, E.A.; Desai, S.S.; Chung, E.J.; Ulery, B.D.; Katari, R.S.; Tirrell, M.V. Biocompatibility and characterization of a peptide amphiphile hydrogel for applications in ","[67, 638, 1123, 703]",reference_item,0.85,"[""reference content label: 60. Black, K.A.; Lin, B.F.; Wonder, E.A.; Desai, S.S.; Chung""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,11,reference_content,"61. Meng, H.; Chen, R.Y.; Xu, L.N.; Li, W.C.; Chen, L.Y.; Zhao, X.J. Peripheral Nerve Regeneration in Response to Synthesized Nanofiber Scaffold Hydrogel. Life Sci. J. 2012, 9, 4246.","[66, 707, 1122, 751]",reference_item,0.85,"[""reference content label: 61. Meng, H.; Chen, R.Y.; Xu, L.N.; Li, W.C.; Chen, L.Y.; Zh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,12,reference_content,"62. Wu, X.; He, L.; Li, W.; Li, H.; Wong, W.M.; Ramakrishna, S.; Wu, W. Functional self-assembling peptide nanofiber hydrogel for peripheral nerve regeneration. Regen. Biomater. 2017, 4, 2130. [Cross","[66, 752, 1123, 797]",reference_item,0.85,"[""reference content label: 62. Wu, X.; He, L.; Li, W.; Li, H.; Wong, W.M.; Ramakrishna,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,13,reference_content,"63. Yoshimatsu, M.; Nakamura, R.; Kishimoto, Y.; Yurie, H.; Hayashi, Y.; Kaba, S.; Ohnishi, H.; Yamashita, M.; Tateya, I.; Omori, K. Recurrent laryngeal nerve regeneration using a self-assembling pept","[68, 799, 1123, 843]",reference_item,0.85,"[""reference content label: 63. Yoshimatsu, M.; Nakamura, R.; Kishimoto, Y.; Yurie, H.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,14,reference_content,"64. McGrath, A.M.; Novikova, L.N.; Novikov, L.N.; Wiberg, M. BD PuraMatrix peptide hydrogel seeded with Schwann cells for peripheral nerve regeneration. Brain Res. Bull. 2010, 83, 207213. [CrossRef]","[68, 845, 1122, 889]",reference_item,0.85,"[""reference content label: 64. McGrath, A.M.; Novikova, L.N.; Novikov, L.N.; Wiberg, M.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,15,reference_content,"65. Lai, C.S.E.; Leyva-Aranda, V.; Kong, V.H.; Lopez-Silva, T.L.; Farsheed, A.C.; Cristobal, C.D.; Swain, J.W.R.; Lee, H.K.; Hartgerink, J.D. A Combined Conduit-Bioactive Hydrogel Approach for Regener","[67, 891, 1123, 957]",reference_item,0.85,"[""reference content label: 65. Lai, C.S.E.; Leyva-Aranda, V.; Kong, V.H.; Lopez-Silva, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,16,reference_content,"66. Wei, G.J.; Yao, M.; Wang, Y.S.; Zhou, C.W.; Wan, D.Y.; Lei, P.Z.; Wen, J.; Lei, H.W.; Dong, D.M. Promotion of peripheral nerve regeneration of a peptide compound hydrogel scaffold. Int. J. Nanomed","[67, 960, 1122, 1005]",reference_item,0.85,"[""reference content label: 66. Wei, G.J.; Yao, M.; Wang, Y.S.; Zhou, C.W.; Wan, D.Y.; L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,17,reference_content,"67. Pace, L.A.; Plate, J.F.; Mannava, S.; Barnwell, J.C.; Koman, L.A.; Li, Z.; Smith, T.L.; Van Dyke, M. A human hair keratin hydrogel scaffold enhances median nerve regeneration in nonhuman primates:","[66, 1006, 1123, 1072]",reference_item,0.85,"[""reference content label: 67. Pace, L.A.; Plate, J.F.; Mannava, S.; Barnwell, J.C.; Ko""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,18,reference_content,"68. Alizadeh, A.; Moradi, L.; Katebi, M.; Ai, J.; Azami, M.; Moradveisi, B.; Ostad, S.N. Delivery of injectable thermo-sensitive hydrogel releasing nerve growth factor for spinal cord regeneration in ","[66, 1075, 1122, 1119]",reference_item,0.85,"[""reference content label: 68. Alizadeh, A.; Moradi, L.; Katebi, M.; Ai, J.; Azami, M.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,19,reference_content,"69. Shao, J.; Nie, P.; Yang, W.; Guo, R.; Ding, D.; Liang, R.; Wei, B.; Wei, H. An EPO-loaded multifunctional hydrogel synergizing with adipose-derived stem cells restores neurogenic erectile function","[66, 1121, 1123, 1187]",reference_item,0.85,"[""reference content label: 69. Shao, J.; Nie, P.; Yang, W.; Guo, R.; Ding, D.; Liang, R""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,20,reference_content,"70. Allbright, K.O.; Bliley, J.M.; Havis, E.; Kim, D.Y.; Dibernardo, G.A.; Grybowski, D.; Waldner, M.; James, I.B.; Sivak, W.N.; Rubin, J.P.; et al. Delivery of adipose-derived stem cells in poloxamer","[66, 1190, 1122, 1257]",reference_item,0.85,"[""reference content label: 70. Allbright, K.O.; Bliley, J.M.; Havis, E.; Kim, D.Y.; Dib""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,21,reference_content,"71. Li, R.; Li, Y.; Wu, Y.; Zhao, Y.; Chen, H.; Yuan, Y.; Xu, K.; Zhang, H.; Lu, Y.; Wang, J.; et al. Heparin-Poloxamer Thermosensitive Hydrogel Loaded with bFGF and NGF Enhances Peripheral Nerve Rege","[67, 1260, 1123, 1325]",reference_item,0.85,"[""reference content label: 71. Li, R.; Li, Y.; Wu, Y.; Zhao, Y.; Chen, H.; Yuan, Y.; Xu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,22,reference_content,"72. Meder, T.; Prest, T.; Skillen, C.; Marchal, L.; Yupanqui, V.T.; Soletti, L.; Gardner, P.; Cheetham, J.; Brown, B.N. Nerve-specific extracellular matrix hydrogel promotes functional regeneration fo","[66, 1329, 1122, 1373]",reference_item,0.85,"[""reference content label: 72. Meder, T.; Prest, T.; Skillen, C.; Marchal, L.; Yupanqui""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,23,reference_content,"73. Rao, Z.; Lin, T.; Qiu, S.; Zhou, J.; Liu, S.; Chen, S.; Wang, T.; Liu, X.; Zhu, Q.; Bai, Y.; et al. Decellularized nerve matrix hydrogel scaffolds with longitudinally oriented and size-tunable mic","[65, 1375, 1122, 1441]",reference_item,0.85,"[""reference content label: 73. Rao, Z.; Lin, T.; Qiu, S.; Zhou, J.; Liu, S.; Chen, S.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
37,24,reference_content,"74. Saffari, T.M.; Chan, K.; Saffari, S.; Zuo, K.J.; McGovern, R.M.; Reid, J.M.; Borschel, G.H.; Shin, A.Y. Combined local delivery of tacrolimus and stem cells in hydrogel for enhancing peripheral ne","[66, 1443, 1124, 1510]",reference_item,0.85,"[""reference content label: 74. Saffari, T.M.; Chan, K.; Saffari, S.; Zuo, K.J.; McGover""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 119]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
38,1,number,38 of 39,"[1061, 103, 1121, 122]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
38,2,reference_content,"75. Esaki, S.; Katsumi, S.; Hamajima, Y.; Nakamura, Y.; Murakami, S. Transplantation of Olfactory Stem Cells with Biodegradable Hydrogel Accelerates Facial Nerve Regeneration After Crush Injury. Stem ","[65, 177, 1121, 223]",reference_item,0.85,"[""reference content label: 75. Esaki, S.; Katsumi, S.; Hamajima, Y.; Nakamura, Y.; Mura""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,3,reference_content,"76. Miao, D.; Li, Y.; Huang, Z.; Wang, Y.; Deng, M.; Li, X. Electroactive chitosan-aniline pentamer hydrogel for peripheral nerve regeneration. Front. Mater. Sci. 2022, 16, 11. [CrossRef]","[67, 224, 1123, 268]",reference_item,0.85,"[""reference content label: 76. Miao, D.; Li, Y.; Huang, Z.; Wang, Y.; Deng, M.; Li, X. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,4,reference_content,"77. Bu, Y.; Xu, H.X.; Li, X.; Xu, W.J.; Yin, Y.X.; Dai, H.L.; Wang, X.B.; Huang, Z.J.; Xu, P.H. A conductive sodium alginate and carboxymethyl chitosan hydrogel doped with polypyrrole for peripheral n","[67, 270, 1123, 335]",reference_item,0.85,"[""reference content label: 77. Bu, Y.; Xu, H.X.; Li, X.; Xu, W.J.; Yin, Y.X.; Dai, H.L.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,5,reference_content,"78. Lu, L.C.; Liu, X.F.; Yaszemski, M.J. Conductive Graphene Oxide Hydrogel Composites with Functionalized Surface for Nerve Regeneration. FASEB J. 2016, 30, 2. [CrossRef]","[67, 339, 1122, 383]",reference_item,0.85,"[""reference content label: 78. Lu, L.C.; Liu, X.F.; Yaszemski, M.J. Conductive Graphene""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,6,reference_content,"79. Xu, Y.; Liu, J.; Zhang, P.; Ao, X.; Li, Y.; Tian, Y.; Qiu, X.; Guo, J.; Hu, X. Zwitterionic Conductive Hydrogel-Based Nerve Guidance Conduit Promotes Peripheral Nerve Regeneration in Rats. ACS Bio","[67, 385, 1122, 429]",reference_item,0.85,"[""reference content label: 79. Xu, Y.; Liu, J.; Zhang, P.; Ao, X.; Li, Y.; Tian, Y.; Qi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,7,reference_content,"80. Wu, P.; Xu, C.; Zou, X.; Yang, K.; Xu, Y.; Li, X.; Li, X.; Wang, Z.; Luo, Z. Capacitive-Coupling-Responsive Hydrogel Scaffolds Offering Wireless In Situ Electrical Stimulation Promotes Nerve Regen","[66, 430, 1121, 474]",reference_item,0.85,"[""reference content label: 80. Wu, P.; Xu, C.; Zou, X.; Yang, K.; Xu, Y.; Li, X.; Li, X""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,8,reference_content,"81. Hui, T.; Wang, C.; Yu, L.; Zhou, C.; Qiu, M. Phosphorene hydrogel conduits as “neurotrophin reservoirs” for promoting regeneration of peripheral nerves. J. Mat. Chem. B 2023, 11, 38083815. [Cross","[67, 477, 1123, 521]",reference_item,0.85,"[""reference content label: 81. Hui, T.; Wang, C.; Yu, L.; Zhou, C.; Qiu, M. Phosphorene""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,9,reference_content,"82. Aghajanian, S.; Taghi Doulabi, A.; Akhbari, M.; Shams, A. Facial nerve regeneration using silicone conduits filled with ammonia-functionalized graphene oxide and frankincense-embedded hydrogel. In","[68, 523, 1124, 566]",reference_item,0.85,"[""reference content label: 82. Aghajanian, S.; Taghi Doulabi, A.; Akhbari, M.; Shams, A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,10,reference_content,"83. Liu, F.; Xu, J.; Liu, A.; Wu, L.; Wang, D.; Han, Q.; Zheng, T.; Wang, F.; Kong, Y.; Li, G.; et al. Development of a polyacrylamide/chitosan composite hydrogel conduit containing synergistic cues o","[67, 569, 1124, 635]",reference_item,0.85,"[""reference content label: 83. Liu, F.; Xu, J.; Liu, A.; Wu, L.; Wang, D.; Han, Q.; Zhe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,11,reference_content,"84. Newman, K.D.; McLaughlin, C.R.; Carlsson, D.; Li, F.; Liu, Y.; Griffith, M. Bioactive hydrogel-filament scaffolds for nerve repair and regeneration. Int. J. Artif. Organs 2006, 29, 10821091. [Cro","[67, 638, 1123, 682]",reference_item,0.85,"[""reference content label: 84. Newman, K.D.; McLaughlin, C.R.; Carlsson, D.; Li, F.; Li""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,12,reference_content,"85. Hoveizi, E. Enhancement of nerve regeneration through schwann cell-mediated healing in a 3D printed polyacrylonitrile conduit incorporating hydrogel and graphene quantum dots: A study on rat sciat","[67, 684, 1124, 750]",reference_item,0.85,"[""reference content label: 85. Hoveizi, E. Enhancement of nerve regeneration through sc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,13,reference_content,"86. Berkovitch, Y.; Cohen, T.; Peled, E.; Schmidhammer, R.; Florian, H.; Teuschl, A.H.; Wolbank, S.; Yelin, D.; Redl, H.; Seliktar, D. Hydrogel composition and laser micropatterning to regulate sciati","[66, 752, 1122, 819]",reference_item,0.85,"[""reference content label: 86. Berkovitch, Y.; Cohen, T.; Peled, E.; Schmidhammer, R.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,14,reference_content,"87. Belkas, J.S.; Munro, C.A.; Shoichet, M.S.; Midha, R. Peripheral nerve regeneration through a synthetic hydrogel nerve tube. Restor. Neurol. Neuros 2005, 23, 1929.","[67, 822, 1123, 865]",reference_item,0.85,"[""reference content label: 87. Belkas, J.S.; Munro, C.A.; Shoichet, M.S.; Midha, R. Per""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,15,reference_content,"88. Nemati Mahand, S.; Jahanmardi, R.; Kruppke, B.; Khonakdar, H.A. Sciatic nerve injury regeneration in adult male rats using gelatin methacrylate (GelMA)/poly(2-ethyl-2-oxazoline) (PEtOx) hydrogel c","[66, 868, 1123, 934]",reference_item,0.85,"[""reference content label: 88. Nemati Mahand, S.; Jahanmardi, R.; Kruppke, B.; Khonakda""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,16,reference_content,"89. Li, G.; Li, S.; Zhang, L.; Chen, S.; Sun, Z.; Li, S.; Zhang, L.; Yang, Y. Construction of Biofunctionalized Anisotropic Hydrogel Micropatterns and Their Effect on Schwann Cell Behavior in Peripher","[66, 937, 1123, 1003]",reference_item,0.85,"[""reference content label: 89. Li, G.; Li, S.; Zhang, L.; Chen, S.; Sun, Z.; Li, S.; Zh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,17,reference_content,"90. Li, G.; Zhang, L.; Han, Q.; Zheng, T.; Wu, L.; Guan, W.; Sun, S.; Yang, Y. Photothermal responsive cell-laden PNIPAM self-rolling hydrogel containing dopamine enhanced MWCNTs for peripheral nerve ","[65, 1006, 1123, 1051]",reference_item,0.85,"[""reference content label: 90. Li, G.; Zhang, L.; Han, Q.; Zheng, T.; Wu, L.; Guan, W.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,18,reference_content,"91. Magnaghi, V.; Conte, V.; Procacci, P.; Pivato, G.; Cortese, P.; Cavalli, E.; Pajardi, G.; Ranucci, E.; Fenili, F.; Manfredi, A.; et al. Biological performance of a novel biodegradable polyamidoami","[66, 1052, 1123, 1118]",reference_item,0.85,"[""reference content label: 91. Magnaghi, V.; Conte, V.; Procacci, P.; Pivato, G.; Corte""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,19,reference_content,"92. Kong, Y.; Zhao, Y.; Ji, B.; Shi, B.; Wei, S.; Chen, G.; Zhang, L.; Li, G.; Yang, Y. Preparation and Characterization of Polyacrylamide/Silk Fibroin/Graphene Oxide Composite Hydrogel for Peripheral","[66, 1121, 1123, 1187]",reference_item,0.85,"[""reference content label: 92. Kong, Y.; Zhao, Y.; Ji, B.; Shi, B.; Wei, S.; Chen, G.; ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,20,reference_content,"93. Yao, Z.; Yuan, W.; Xu, J.; Tong, W.; Mi, J.; Ho, P.C.; Chow, D.H.K.; Li, Y.; Yao, H.; Li, X.; et al. Magnesium-Encapsulated Injectable Hydrogel and 3D-Engineered Polycaprolactone Conduit Facilitat","[66, 1189, 1123, 1257]",reference_item,0.85,"[""reference content label: 93. Yao, Z.; Yuan, W.; Xu, J.; Tong, W.; Mi, J.; Ho, P.C.; C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,21,reference_content,"94. Cheong, H.; Jun, Y.-J.; Jeon, E.Y.; Lee, J.I.; Jo, H.J.; Park, H.Y.; Kim, E.; Rhie, J.W.; Joo, K.I.; Cha, H.J. Sutureless neurorrhaphy system using a macrophage-polarizing in situ visible light-cr","[66, 1260, 1123, 1326]",reference_item,0.85,"[""reference content label: 94. Cheong, H.; Jun, Y.-J.; Jeon, E.Y.; Lee, J.I.; Jo, H.J.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,22,reference_content,"95. Du, J.; Liu, J.; Yao, S.; Mao, H.; Peng, J.; Sun, X.; Cao, Z.; Yang, Y.; Xiao, B.; Wang, Y.; et al. Prompt peripheral nerve regeneration induced by a hierarchically aligned fibrin nanofiber hydrog","[66, 1329, 1122, 1373]",reference_item,0.85,"[""reference content label: 95. Du, J.; Liu, J.; Yao, S.; Mao, H.; Peng, J.; Sun, X.; Ca""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,23,reference_content,"96. Huang, Q.; Cai, Y.; Yang, X.; Li, W.; Pu, H.; Liu, Z.; Liu, H.; Tamtaji, M.; Xu, F.; Sheng, L.; et al. Graphene foam/hydrogel scaffolds for regeneration of peripheral nerve using ADSCs in a diabet","[66, 1375, 1120, 1420]",reference_item,0.85,"[""reference content label: 96. Huang, Q.; Cai, Y.; Yang, X.; Li, W.; Pu, H.; Liu, Z.; L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,24,reference_content,"97. Huang, Q.; Cai, Y.; Zhang, X.; Liu, J.; Liu, Z.; Li, B.; Wong, H.; Xu, F.; Sheng, L.; Sun, D.; et al. Aligned Graphene Mesh-Supported Double Network Natural Hydrogel Conduit Loaded with Netrin-1 f","[67, 1421, 1120, 1487]",reference_item,0.85,"[""reference content label: 97. Huang, Q.; Cai, Y.; Zhang, X.; Liu, J.; Liu, Z.; Li, B.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
38,25,reference_content,"98. Katayama, Y.; Montenegro, R.; Freier, T.; Midha, R.; Belkas, J.S.; Shoichet, M.S. Coil-reinforced hydrogel tubes promote nerve regeneration equivalent to that of nerve autografts. Biomaterials 200","[67, 1490, 1120, 1535]",reference_item,0.85,"[""reference content label: 98. Katayama, Y.; Montenegro, R.; Freier, T.; Midha, R.; Bel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,0,header,"Materials 2024, 17, 3472","[68, 99, 237, 118]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
39,1,number,39 of 39,"[1061, 104, 1121, 122]",reference_item,0.9,"[""page number label""]",noise,0.9,reference_zone,reference_like,reference_numeric_dot,True,True
39,2,reference_content,"99. Zhang, H.; Xu, J. The effects of GelMA hydrogel on nerve repair and regeneration in mice with spinal cord injury. Ann. Transl. Med. 2021, 9, 1147. [CrossRef]","[66, 178, 1122, 221]",reference_item,0.85,"[""reference content label: 99. Zhang, H.; Xu, J. The effects of GelMA hydrogel on nerve""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,3,reference_content,"100. Maiti, B.; Diaz Diaz, D. 3D Printed Polymeric Hydrogels for Nerve Regeneration. Polymers 2018, 10, 1041. [CrossRef]","[69, 224, 1039, 246]",reference_item,0.85,"[""reference content label: 100. Maiti, B.; Diaz Diaz, D. 3D Printed Polymeric Hydrogels""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,4,reference_content,"101. Politron-Zepeda, G.A.; Fletes-Vargas, G.; Rodriguez-Rodriguez, R. Injectable Hydrogels for Nervous Tissue Repair—A Brief Review. Gels 2024, 10, 190. [CrossRef] [PubMed]","[70, 248, 1122, 290]",reference_item,0.85,"[""reference content label: 101. Politron-Zepeda, G.A.; Fletes-Vargas, G.; Rodriguez-Rod""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,5,reference_content,"102. Song, J.; Lv, B.; Chen, W.; Shen, C.; Ding, P. Advances of GelMA-Based Hydrogel in Nerve Repair and Regeneration. Nano Life 2024, 14, 22. [CrossRef]","[68, 293, 1121, 336]",reference_item,0.85,"[""reference content label: 102. Song, J.; Lv, B.; Chen, W.; Shen, C.; Ding, P. Advances""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,6,reference_content,"103. Xu, W.; Wu, Y.; Lu, H.; Zhu, Y.; Ye, J.; Yang, W. Sustained delivery of vascular endothelial growth factor mediated by bioactive methacrylic anhydride hydrogel accelerates peripheral nerve regene","[68, 339, 1122, 405]",reference_item,0.85,"[""reference content label: 103. Xu, W.; Wu, Y.; Lu, H.; Zhu, Y.; Ye, J.; Yang, W. Susta""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,7,reference_content,"104. Chen, S.H.; Kao, H.K.; Wun, J.R.; Chou, P.Y.; Chen, Z.Y.; Chen, S.H.; Hsieh, S.T.; Fang, H.W.; Lin, F.H. Thermosensitive hydrogel carrying extracellular vesicles from adipose-derived stem cells p","[68, 408, 1122, 474]",reference_item,0.85,"[""reference content label: 104. Chen, S.H.; Kao, H.K.; Wun, J.R.; Chou, P.Y.; Chen, Z.Y""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,8,reference_content,"105. Martin, B.C.; Minner, E.J.; Wiseman, S.L.; Klank, R.L.; Gilbert, R.J. Agarose and methylcellulose hydrogel blends for nerve regeneration applications. J. Neural Eng. 2008, 5, 221231. [CrossRef]","[70, 477, 1121, 520]",reference_item,0.85,"[""reference content label: 105. Martin, B.C.; Minner, E.J.; Wiseman, S.L.; Klank, R.L.;""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,9,reference_content,"106. Conovaloff, A.; Panitch, A. Characterization of a chondroitin sulfate hydrogel for nerve root regeneration. J. Neural Eng. 2011, 8, 056003. [CrossRef]","[70, 523, 1122, 566]",reference_item,0.85,"[""reference content label: 106. Conovaloff, A.; Panitch, A. Characterization of a chond""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
39,10,text,"Disclaimer/Publishers Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI ","[66, 597, 1123, 669]",backmatter_body,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,,support_like,none,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header_image [71, 100, 140, 171] non_body_insert 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False False
3 1 1 header materials [147, 109, 339, 157] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
4 1 2 header_image [1030, 110, 1120, 170] non_body_insert 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False False
5 1 3 text Review [67, 208, 135, 232] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 frontmatter_main_zone support_like short_fragment False False
6 1 4 doc_title Hydrogels for Neural Regeneration: Exploring New Horizons [67, 233, 1082, 276] paper_title 0.8 ["page-1 zone title_zone: Hydrogels for Neural Regeneration: Exploring New Horizons"] paper_title 0.8 frontmatter_main_zone support_like none True True
7 1 5 text Hossein Omidian $ \^{*} $ $ \textcircled{D} $, Sumana Dey Chowdhury $ \textcircled{D} $ and Luigi X. Cubeddu $ \textcircled{D} $ [66, 298, 762, 324] authors 0.8 ["page-1 zone author_zone: Hossein Omidian $ \\^{*} $ $ \\textcircled{D} $, Sumana Dey C"] authors 0.8 frontmatter_main_zone support_like none True True
8 1 6 text Barry and Judy Silverman College of Pharmacy, Nova Southeastern University, Fort Lauderdale, FL 33328, USA; sd2236@mynsu.nova.edu (S.D.C.); lcubeddu@nova.edu (L.X.C.) [327, 367, 1123, 410] affiliation 0.8 ["page-1 zone affiliation_zone: Barry and Judy Silverman College of Pharmacy, Nova Southeast"] affiliation 0.8 frontmatter_main_zone support_like none True True
9 1 7 text * Correspondence: omidian@nova.edu [328, 411, 615, 433] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: * Correspondence: omidian@nova.edu"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
10 1 8 text check for updates [70, 984, 177, 1021] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone unknown_like short_fragment False False
11 1 9 abstract Abstract: Nerve injury can significantly impair motor, sensory, and autonomic functions. Understanding nerve degeneration, particularly Wallerian degeneration, and the mechanisms of nerve regeneration [328, 459, 1124, 771] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
12 1 10 text Academic Editor: Xiao Kuang [68, 1160, 260, 1181] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Academic Editor: Xiao Kuang"] frontmatter_noise 0.8 body_zone body_like none False False
13 1 11 text Citation: Omidian, H.; Chowdhury, S.D.; Cubeddu, L.X. Hydrogels for Neural Regeneration: Exploring New Horizons. Materials 2024, 17, 3472. https://doi.org/10.3390/ma17143472 [66, 1030, 305, 1146] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Citation: Omidian, H.; Chowdhury, S.D.; Cubeddu, L.X. Hydrog"] frontmatter_noise 0.8 body_zone body_like none False False
14 1 12 text Received: 24 June 2024 Revised: 6 July 2024 Accepted: 11 July 2024 Published: 13 July 2024 Copyright: © 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article d [68, 1198, 218, 1290] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Received: 24 June 2024\nRevised: 6 July 2024\nAccepted: 11 Jul"] frontmatter_noise 0.8 body_zone body_like none False False
15 1 13 text [66, 1363, 308, 1551] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
16 1 14 text [328, 796, 1121, 821] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 frontmatter_main_zone support_like empty True True
17 1 15 image [70, 1313, 185, 1353] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
18 1 16 paragraph_title 1. Introduction [329, 895, 473, 918] section_heading 0.85 ["paragraph_title label with numbering: 1. Introduction"] section_heading 0.85 body_zone heading_like heading_numbered True True
19 1 17 paragraph_title 1.1. Neural Degeneration and Regeneration [330, 922, 688, 947] subsection_heading 0.85 ["paragraph_title label with numbering: 1.1. Neural Degeneration and Regeneration"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
20 1 18 text Nerves are vital components of the peripheral nervous system, responsible for transmitting signals between the brain, spinal cord, and various parts of the body. Injury or damage to these nerves can r [325, 953, 1124, 1103] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 1 19 text Nerve degeneration occurs when axons, the long extensions of neurons, are damaged. This damage can be caused by various factors, including trauma, diseases like diabetes, and surgical procedures such [326, 1104, 1124, 1303] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
22 1 20 text Nerve regeneration is a complex process that involves the growth of new axons to replace those that have been damaged. This process is facilitated by Schwann cells, which respond to axonal injury by d [326, 1305, 1124, 1454] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
23 1 21 text Several conventional therapies have been explored to enhance nerve regeneration. These include the following: [323, 1456, 1124, 1506] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
24 1 22 footer Materials 2024, 17, 3472. https://doi.org/10.3390/ma17143472 [67, 1625, 513, 1647] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
25 1 23 footer https://www.mdpi.com/journal/materials [806, 1625, 1121, 1647] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
26 2 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
27 2 1 header 2 of 39 [1069, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone reference_like reference_numeric_dot False False
28 2 2 text - Pharmacological Treatments: Drugs like aldose reductase inhibitors and vasodilators have shown potential in enhancing nerve regeneration, particularly in conditions like diabetic neuropathy [5]. How [328, 175, 1122, 275] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
29 2 3 text - Surgical Interventions: Traditional nerve conduits and nerve grafts are used to bridge gaps in damaged nerves. Studies have shown that the timing of these interventions is crucial, as delayed nerve [328, 277, 1122, 350] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 2 4 text - Electrical Stimulation (ES): Brief low-frequency ES has been demonstrated to accelerate Wallerian degeneration and promote nerve regeneration by enhancing the clearance of axonal and myelin debris a [328, 351, 1122, 427] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
31 2 5 text - Stem Cell Therapy: Stem cells offer a promising alternative for nerve regeneration. They can differentiate into Schwann-like cells and secrete neurotrophic factors, thereby promoting axonal growth a [328, 428, 1124, 526] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
32 2 6 text - Hydrogels and Biomaterials: Innovative materials such as hydrogels are being explored to enhance nerve regeneration. These materials provide a supportive environment for nerve growth and can be used [328, 527, 1125, 629] unknown_structural 0.8 ["page-1 zone author_zone: - Hydrogels and Biomaterials: Innovative materials such as h"] authors 0.8 body_zone body_like none False True
33 2 7 text Despite these advancements, many challenges remain in achieving robust and reliable nerve regeneration. The complexity of the molecular mechanisms involved and the need for precise control over the re [324, 638, 1123, 765] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
34 2 8 paragraph_title 1.2. Hydrogels in Neural Regeneration [329, 783, 650, 808] subsection_heading 0.85 ["paragraph_title label with numbering: 1.2. Hydrogels in Neural Regeneration"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
35 2 9 text Hydrogels, composed of water-swollen polymer networks, have emerged as a promising solution in neural regeneration due to their biocompatibility, structural versatility, and ability to incorporate bio [326, 814, 1123, 915] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
36 2 10 text Polysaccharide hydrogels with internal scaffolds, for instance, show the potential for peripheral nerve regeneration $ [10,21,22] $. Moreover, hydrogels combined with nanoparticles and neurotrophic f [325, 914, 1124, 1115] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
37 2 11 text Injectable hydrogels have demonstrated significant potential in treating central nervous system (CNS) injuries caused by ischemic stroke by providing supportive environments for cell growth and tissue [326, 1115, 1125, 1291] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
38 2 12 text However, the application of hydrogels is not without challenges. Issues such as limited bioactivity, poor mechanical properties, and the need for specific structural configurations to support nerve re [325, 1291, 1124, 1469] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
39 3 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
40 3 1 number 3 of 39 [1069, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
41 3 2 text The versatility of hydrogel polymers, such as chitosan, alginate, collagen, hyaluronic acid, and peptides, is notable in neural applications: [326, 175, 1121, 228] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
42 3 3 text - Chitosan-based Hydrogels: These are valued for their biodegradability and antimicrobial properties. Examples include thiolated chitosan hydrogels with taurine $ [8] $ and chitosan conduits with sim [327, 231, 1125, 381] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
43 3 4 text - Alginate-based Hydrogels: Known for their gel-forming capabilities and biocompatibility, these include formulations like alginate/chitosan hydrogels with 4-methylcatechol (4-MC) [22] and berberine [ [327, 383, 1125, 482] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
44 3 5 text - Collagen-based Hydrogels: Leveraging properties of the natural extracellular matrix, these include chitosan/collagen hydrogel nerve conduits containing Schwann cells [11] and collagen type I hydroge [327, 483, 1123, 558] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
45 3 6 text - Hyaluronic acid-based (HA) Hydrogels: Valued for promoting cell migration and proliferation, examples include injectable chitosan–hyaluronic acid hydrogels for the sustained release of NGF [41] and [327, 558, 1123, 634] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
46 3 7 text - Peptide-based Hydrogels: These self-assembling hydrogels, like peptide amphiphile hydrogels delivering sonic hedgehog (SHH) protein [43] and neurotrophic peptide-functionalized hydrogels [44] provid [328, 635, 1124, 766] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
47 3 8 text • Synthetic Molecules: Hydrogels incorporating simvastatin [9] and taurine [8] deliver targeted therapies promoting neurogenesis and reducing inflammation. [327, 770, 1123, 821] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
48 3 9 text ● Biomolecules: Bioactive molecules like 4-methylcatechol (4-MC) [22] and hesperidin [45] provide neuroprotective effects and support neural regeneration. [327, 821, 1121, 872] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
49 3 10 text - Genes: Gene delivery via hydrogels is an innovative approach, with genetically modified cells overexpressing neurotrophic factors [46] enabling the sustained release of therapeutic genes. [327, 873, 1123, 946] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
50 3 11 text - Growth Factors: The incorporation of nerve growth factor (NGF), brain-derived neurotrophic factor (BDNF), and fibroblast growth factor (FGF) into hydrogels [24,47–49] enhances their regenerative pot [328, 947, 1124, 1048] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 3 12 text In summary, while significant progress has been made in neural regeneration, the limitations of current treatments underscore the necessity for alternative interventions like hydrogels. These advanced [325, 1053, 1124, 1256] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
52 4 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
53 4 1 number 4 of 39 [1069, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
54 4 2 image [125, 182, 1062, 766] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
55 4 3 figure_title Scheme 1. Potential uses and challenges of hydrogel interventions in neural regeneration. [326, 799, 1046, 824] figure_caption 0.85 ["figure_title label: Scheme 1. Potential uses and challenges of hydrogel interven"] figure_caption 0.85 body_zone legend_like none True True
56 4 4 paragraph_title 2. Chitosan-Based Hydrogels [327, 839, 602, 864] section_heading 0.85 ["paragraph_title label with numbering: 2. Chitosan-Based Hydrogels"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
57 4 5 text This section discusses various chitosan-based hydrogels developed for nerve regeneration. The studies focus on different formulations, additives, and methodologies to enhance nerve repair. Evaluations [325, 870, 1125, 1021] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
58 4 6 text Thiolated chitosan hydrogels containing varying concentrations of taurine were evaluated for their efficacy in peripheral nerve regeneration. The study assessed various morphological and biochemical p [325, 1021, 1124, 1222] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
59 4 7 text Chitosan conduits filled with simvastatin in Pluronic F-127 hydrogel were used to bridge 10 mm sciatic nerve defects in rats. The study analyzed the effects of different concentrations of simvastatin [325, 1222, 1126, 1476] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
60 5 0 header Materials 2024, 17, 3472 [69, 99, 236, 118] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
61 5 1 header 5 of 39 [1069, 104, 1121, 122] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
62 5 2 image [125, 172, 1063, 342] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
63 5 3 figure_title Figure 1. Gross views of regenerated sciatic nerves 10 weeks postoperatively. Regenerated sciatic nerves in rats with defects that were bridged by chitosan conduits filled with simvastatin/Pluronic F- [325, 362, 1124, 464] figure_caption 0.92 ["figure_title label: Figure 1. Gross views of regenerated sciatic nerves 10 weeks"] figure_caption 0.92 display_zone legend_like figure_number True True
64 5 4 text Chitosan tubes prefilled with an aligned fibrin nanofiber hydrogel (AFG), assembled via electrospinning and molecular self-assembly, were utilized to treat rabbit facial nerve defects. The study compa [326, 483, 1124, 684] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 5 5 text A chitosan/glycerol-beta-phosphate disodium salt (CS/GP) hydrogel injected with Schwann cells was investigated for its potential in peripheral nerve regeneration. The study evaluated the gelation time [325, 685, 1125, 886] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
66 5 6 text A carboxymethyl chitosan hydrogel manufactured through radiation-induced crosslinking was developed for nerve regeneration guides. The study focused on the degradation and crosslinking properties, phy [325, 886, 1124, 1085] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 5 7 text Conductive black phosphorus nanosheets within a lipoic acid-modified chitosan hydrogel matrix incorporating tannic acid-modified black phosphorus nanosheets (BP@TA) and bicyclodextrin-conjugated tazar [326, 1087, 1124, 1260] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
68 5 8 text Chitosan/beta-glycerophosphate/salt hydrogels with conductive aligned nanofibers composed of polycaprolactone, gelatin, and single-wall carbon nanotubes (SWCNTs) were developed for nerve regeneration. [325, 1262, 1124, 1437] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
69 5 9 text A substance-P-conjugated chitosan hydrochloride hydrogel (CSCI-SP) was evaluated for full-thickness wound healing. The stability of SP, as well as its effects on proliferation, migration, tube formati [326, 1437, 1125, 1539] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
70 6 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
71 6 1 number 6 of 39 [1069, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
72 6 2 text proliferation, migration, and angiogenesis in vitro and enhanced vascularization, ECM deposition, and nerve regeneration in vivo. This led to the efficient recovery of full-thickness skin defects, hig [324, 176, 1125, 251] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
73 6 3 text The research on chitosan-based hydrogels for neural regeneration includes a range of approaches, each exploring different formulations and additives to enhance nerve repair. Despite their varied metho [324, 252, 1126, 477] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
74 6 4 text The comparative analysis of chitosan-based hydrogels for nerve regeneration highlights that the most effective compositions combine chemical additives, physical structural enhancements, and cellular c [324, 477, 1125, 754] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 6 5 text Table 1 outlines different chitosan-based hydrogels researched for neural regeneration, highlighting their specific physical, chemical, and biological characteristics tailored to treat various neural [323, 754, 1125, 881] table_caption 0.9 ["table prefix matched: Table 1 outlines different chitosan-based hydrogels research"] table_caption 0.9 display_zone table_caption_like table_number True True
76 6 6 figure_title Table 1. Chitosan-based hydrogels in neural regeneration. [327, 904, 796, 929] table_caption 0.9 ["table prefix matched: Table 1. Chitosan-based hydrogels in neural regeneration."] table_caption 0.9 display_zone table_caption_like table_number True True
77 6 7 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/ Disorder Targeted</td><td>Ref</td></tr><tr><td>Thiolated chitosan hydrogel [68, 945, 1124, 1486] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
78 7 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
79 7 1 number 7 of 39 [1068, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
80 7 2 paragraph_title 3. Alginate-Based Hydrogels [327, 176, 599, 201] section_heading 0.85 ["paragraph_title label with numbering: 3. Alginate-Based Hydrogels"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
81 7 3 text This section explores alginate-based hydrogels for peripheral nerve and diabetic wound regeneration. Various studies have assessed hydrogels containing bioactive components like 4-MC, berberine, narin [325, 207, 1124, 357] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
82 7 4 text Alginate/chitosan hydrogels containing varying percentages of 4-methylcatechol (4-MC) were investigated for their potential in peripheral nerve regeneration. The study evaluated the pore size, biodegr [325, 358, 1125, 533] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
83 7 5 text Chitosan/alginate hydrogels with berberine (Ber)-loaded chitosan nanoparticles and naringin (Nar)-loaded chitosan nanoparticles were also examined for their effects on peripheral nerve regeneration. T [325, 533, 1124, 733] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
84 7 6 text Another study explored alginate/chitosan hydrogels containing different dosages of hesperidin (0.1%, 1%, and 10% (w/v)) for peripheral nerve regeneration. Key parameters such as morphology, swelling p [325, 735, 1124, 934] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
85 7 7 text Alginate/gum Arabic hydrogels enriched with immobilized nerve growth factor (NGF) in mesoporous silica nanoparticles (SiNGF) and carnosine (Car) were developed for diabetic wound regeneration. The stu [325, 935, 1124, 1186] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
86 7 8 text In a study of alginate/chitosan hydrogels containing different concentrations of berberine (0%, 0.1%, 1%, and 10% (w/v)), the effects on sciatic nerve regeneration were investigated. The study assesse [326, 1187, 1125, 1387] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
87 7 9 text An alginate hydrogel scaffold mimicking the extracellular matrix (ECM) and loaded with melatonin was combined with a polycaprolactone outer layer to create a controlled-release microenvironment for pe [326, 1388, 1125, 1538] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
88 8 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
89 8 1 number 8 of 39 [1069, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
90 8 2 text conduction, reduced inflammation and oxidative stress, enhanced angiogenesis, neurite extension, and axonal sprouting, and elevated fast-type myosin in the gastrocnemius muscle, effectively restoring [326, 176, 1126, 253] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
91 8 3 figure_title (a) [336, 279, 368, 304] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
92 8 4 image [339, 279, 1004, 477] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
93 8 5 figure_title (b) [338, 516, 373, 546] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
94 8 6 image [335, 534, 785, 942] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
95 8 7 figure_title (c) [804, 541, 836, 567] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
96 8 8 chart [805, 631, 1069, 930] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
97 8 9 figure_title Figure 2. The evaluation of the wound-healing effects of hydrogels in STZ-induced diabetic rats. (a) A schematic illustration of the experiments. (b) The morphology of wounds treated with the hydrogel [325, 963, 1125, 1144] figure_caption 0.92 ["figure_title label: Figure 2. The evaluation of the wound-healing effects of hyd"] figure_caption 0.92 display_zone legend_like figure_number True True
98 8 10 text Alginate hydrogels incorporating magnetic short nanofibers (M.SNFs) made of wet-electrospun gelatin and superparamagnetic iron oxide nanoparticles (SPIONs) were used to encapsulate human olfactory muc [325, 1160, 1125, 1361] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
99 8 11 text Studies on alginate-based hydrogels, much like those on their chitosan counterparts, share a common focus on biocompatibility, biodegradability, and the ability to support cell proliferation and nerve [325, 1361, 1127, 1541] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
100 9 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
101 9 1 number 9 of 39 [1069, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
102 9 2 text in promoting peripheral nerve regeneration, assessing parameters like cell proliferation, functional recovery, and histological improvements [23,24,28,32,45]. [326, 176, 1125, 226] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
103 9 3 text When comparing these studies, the most effective alginate-based hydrogel compositions are those that integrate bioactive components, structural modifications, and suitable physical properties. The add [324, 227, 1126, 552] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 9 4 text Table 2 describes various alginate-based hydrogels designed for neural regeneration, highlighting their specific structural and functional characteristics tailored to treat neural diseases. These hydr [324, 552, 1125, 680] table_caption 0.9 ["table prefix matched: Table 2 describes various alginate-based hydrogels designed "] table_caption 0.9 display_zone table_caption_like table_number True True
105 9 5 figure_title Table 2. Alginate-based hydrogels in neural regeneration. [326, 703, 793, 728] table_caption 0.9 ["table prefix matched: Table 2. Alginate-based hydrogels in neural regeneration."] table_caption 0.9 display_zone table_caption_like table_number True True
106 9 6 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Alginate/chitosan hydrogel c [67, 744, 1120, 1328] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
107 9 7 paragraph_title 4. Collagen-Based Hydrogels [328, 1358, 602, 1383] section_heading 0.85 ["paragraph_title label with numbering: 4. Collagen-Based Hydrogels"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
108 9 8 text This section discusses various studies on hydrogels used for nerve regeneration, highlighting alginate-based and collagen-based hydrogels. It focuses on their biocompatibility, bioabsorbability, mecha [325, 1389, 1126, 1542] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
109 10 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
110 10 1 header 10 of 39 [1062, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
111 10 2 text A chitosan/collagen hydrogel nerve guidance conduit containing Schwann cells was developed for peripheral nerve regeneration. The study focused on the biocompatibility, mechanical strength, scaffold s [324, 175, 1125, 452] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
112 10 3 text A collagen type I hydrogel containing chitosan nanoparticles loaded with insulin was examined for sciatic nerve regeneration. The study evaluated the proliferation rate of Schwann cells, sciatic funct [324, 453, 1125, 754] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
113 10 4 text In another study, a collagen type I hydrogel containing naringin was used for sciatic nerve regeneration. The study focused on the microstructure, swelling behavior, biodegradation, cyto/hemocompatibi [325, 754, 1126, 979] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
114 10 5 text Nanofiber neural guidance channels (NGCs) containing a collagen hydrogel and 5% acetyl L-carnitine (ALC) were developed for nerve regeneration. The study assessed surface hydrophilicity, porosity, ten [325, 980, 1126, 1281] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
115 10 6 text The research on collagen-based hydrogels for neural regeneration consistently shares several key similarities. Across different studies, collagen serves as the primary scaffold material due to its bio [325, 1282, 1125, 1480] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
116 10 7 text The comparative analysis of collagen-based hydrogels for nerve regeneration suggests that the most effective compositions integrate bioactive molecules, advanced structural [327, 1482, 1124, 1533] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
117 11 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
118 11 1 number 11 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
119 11 2 text designs, and suitable physical properties. The incorporation of Schwann cells [11,12] has shown significant enhancements in motor functional recovery and axonal regrowth. Hydrogels with insulin-loaded [324, 175, 1125, 502] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
120 11 3 text Table 3 presents various collagen-based hydrogels engineered for neural regeneration, highlighting their structural and functional characteristics. These hydrogels are designed to support nerve repair [325, 503, 1125, 630] table_caption 0.9 ["table prefix matched: Table 3 presents various collagen-based hydrogels engineered"] table_caption 0.9 display_zone table_caption_like table_number True True
121 11 4 figure_title Table 3. Collagen-based hydrogels in neural regeneration. [327, 653, 796, 677] table_caption 0.9 ["table prefix matched: Table 3. Collagen-based hydrogels in neural regeneration."] table_caption 0.9 display_zone table_caption_like table_number True True
122 11 5 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Chitosan/collagen hydrogel h [67, 694, 1124, 1254] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
123 11 6 paragraph_title 5. Hyaluronic Acid-Based Hydrogels [328, 1287, 671, 1311] section_heading 0.85 ["paragraph_title label with numbering: 5. Hyaluronic Acid-Based Hydrogels"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
124 11 7 text This section discusses various hyaluronic acid-based hydrogels developed for neural regeneration. These hydrogels are enhanced with bioactive molecules like NGF, BDNF, and anti-inflammatory agents to [325, 1317, 1125, 1467] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
125 11 8 text An injectable chitosan/hyaluronic acid (CS-HA) hydrogel was designed for the sustained release of nerve growth factor (NGF) to aid in nerve regeneration. The study assessed the gelation time, intercon [326, 1468, 1126, 1545] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
126 12 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
127 12 1 header 12 of 39 [1061, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
128 12 2 text behavior, degradation rate, NGF release profiles, biocompatibility, and the adhesion and proliferation of bone marrow-derived mesenchymal stem cells (BMMSCs). The CS-HA hydrogel gelled rapidly at pH 7 [324, 175, 1124, 351] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
129 12 3 text In another study, a hyaluronic acid hydrogel loaded with lithium chloride (LiCl) at a dose of 15 mEq and different doses of LiCl itself (2.5, 5, and 15 mEq) were investigated for nerve regeneration an [323, 352, 1125, 527] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
130 12 4 text A hyaluronan/methylcellulose hydrogel modified with the anti-inflammatory peptide KAFAKLAARLYRKALARQLGVAA (KAFAK) and brain-derived neurotrophic factor (BDNF) was developed for spinal cord injury (SCI [324, 528, 1126, 728] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
131 12 5 text An injectable hyaluronic acid/phenylboronic acid/poly(vinyl alcohol)/heparin hydrogel modified with cysteamine and phenylboronic acid and loaded with glial cell-derived neurotrophic factor (GDNF) was [324, 728, 1126, 954] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
132 12 6 text A hyaluronic acid-based hydrogel scaffold containing a matrix metalloproteinase-sensitive peptide, IKVAV (Ile- Lys-Val-Ala-Val) peptide, and brain-derived neurotrophic factor (BDNF) was explored for s [323, 955, 1126, 1230] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
133 12 7 text A hyaluronic acid hydrogel functionalized with 2,2,6,6-tetramethylpiperidinyloxy (TEMPO) was studied for spinal cord transection recovery and bladder tissue protection. The hydrogel exhibited antioxid [324, 1230, 1125, 1406] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
134 12 8 text In another study, a hyaluronic acid granular hydrogel nerve guidance conduit was evaluated for 10 mm long sciatic nerve gap regeneration in rats. The study simulated the extracellular matrix, promotin [324, 1407, 1126, 1534] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
135 13 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
136 13 1 number 13 of 39 [1062, 103, 1121, 124] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
137 13 2 text recovery of electrophysiological and motor functions to autologous nerve transplantation, outperforming bulk hydrogel or silicone tube transplants [59]. [326, 176, 1124, 226] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
138 13 3 text The research on hyaluronic acid-based hydrogels for neural regeneration shares several key similarities. These hydrogels leverage hyaluronic acid's natural properties, including its biocompatibility, [324, 227, 1125, 403] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
139 13 4 text The comparative analysis of hyaluronic acid-based hydrogels for neural regeneration suggests that the most effective compositions integrate bioactive molecules, anti-inflammatory agents, and advanced [324, 402, 1125, 753] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
140 13 5 text Table 4 outlines various hyaluronic acid-based hydrogels designed for neural regeneration, detailing their structural and functional characteristics. These hydrogels enhance nerve repair through prope [325, 753, 1126, 881] table_caption 0.9 ["table prefix matched: Table 4 outlines various hyaluronic acid-based hydrogels des"] table_caption 0.9 display_zone table_caption_like table_number True True
141 13 6 figure_title Table 4. Hyaluronate-based hydrogels in neural regeneration. [327, 904, 826, 929] table_caption 0.9 ["table prefix matched: Table 4. Hyaluronate-based hydrogels in neural regeneration."] table_caption 0.9 display_zone table_caption_like table_number True True
142 13 7 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Hyaluronan/methylcellulose h [67, 946, 1124, 1510] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
143 14 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
144 14 1 number 14 of 39 [1062, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
145 14 2 paragraph_title 6. Peptide-Based Hydrogels [327, 176, 590, 201] section_heading 0.85 ["paragraph_title label with numbering: 6. Peptide-Based Hydrogels"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
146 14 3 text Peptide-based hydrogels are explored for nerve regeneration, mimicking the extracellular matrix and supporting cell growth. Studies on various hydrogels, including C16GSH, RADA16-I, and SF16, have sho [325, 207, 1125, 356] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
147 14 4 text A peptide amphiphile hydrogel composed of C16GSH was evaluated for peripheral nerve regeneration compared to traditional collagen gels. It was able to promote Schwann cell proliferation and migration [325, 357, 1125, 507] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
148 14 5 text Peptide amphiphile nanofiber hydrogels delivering the sonic hedgehog (SHH) protein were studied for cavernous nerve regeneration. This approach aimed to maintain neuronal integrity and prevent degener [325, 508, 1124, 683] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
149 14 6 text A synthesized nanofiber scaffold hydrogel, the peptide RADA16-I, was used for peripheral nerve regeneration in rats. This self-assembling peptide hydrogel demonstrated faster healing rates for sciatic [325, 685, 1125, 809] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
150 14 7 text Another study explored a neurotrophic peptide-functionalized self-assembling peptide nanofiber hydrogel (RAD/RGI) prefilled inside a hollow chitosan tube (hCST) to promote sciatic nerve regeneration. [325, 810, 1124, 984] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 14 8 text The RADA16-Mix hydrogel, a self-assembling peptide nanofiber hydrogel modified with IKVAV and RGD, was developed for sciatic nerve regeneration in rats. This hydrogel, designed to remain pH-neutral, i [324, 986, 1124, 1111] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
152 14 9 text For recurrent laryngeal nerve regeneration, the RADA16-I self-assembling peptide hydrogel was utilized in a rat model. The study evaluated neurite outgrowth, functional synapse formation, nerve regene [325, 1112, 1125, 1286] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
153 14 10 text A BD PuraMatrix peptide hydrogel seeded with Schwann cells was investigated for sciatic nerve regeneration in rats. The hydrogel significantly increased the axonal regeneration distance and promoted t [326, 1287, 1125, 1412] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
154 14 11 text Multidomain peptide (MDP) hydrogels, both anionic and cationic, were used as intraluminal fillers in electrospun poly(epsilon-caprolactone) (PCL) conduits for sciatic nerve regeneration in rats. The s [326, 1412, 1126, 1539] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
155 15 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
156 15 1 header 15 of 39 [1062, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
157 15 2 text higher muscle action potential, greater muscle weight retention, and superior myelination compared to the cationic MDP, suggesting that the anionic MDP is a promising strategy for treating transected [325, 176, 1123, 251] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
158 15 3 text A silk fibroin peptide (SF16) hydrogel scaffold was developed for peripheral nerve regeneration. In vitro tests on PC12 cells showed that the hydrogel supported cell viability and growth, and in vivo [324, 252, 1123, 451] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
159 15 4 text Moreover, a human hair keratin hydrogel scaffold was studied for median nerve regeneration in nonhuman primates. A 1 cm nerve gap was grafted with a NeuraGen(R) collagen conduit and filled with a kera [324, 453, 1124, 653] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
160 15 5 text Peptide-based hydrogels for neural regeneration share several common features across the various studies. These hydrogels leverage the self-assembling properties of peptides to create a supportive ext [325, 653, 1124, 855] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
161 15 6 text The comparative analysis of peptide-based hydrogels for nerve regeneration suggests that the most effective compositions integrate neurotrophic factors, cell adhesion molecules, and advanced structura [324, 855, 1126, 1206] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
162 15 7 text Table 5 summarizes various peptide-based hydrogels designed for neural regeneration, detailing their physical, chemical, and biological properties. These hydrogels are engineered to support nerve repa [326, 1206, 1124, 1334] table_caption 0.9 ["table prefix matched: Table 5 summarizes various peptide-based hydrogels designed "] table_caption 0.9 display_zone table_caption_like table_number True True
163 16 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
164 16 1 number 16 of 39 [1062, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
165 16 2 figure_title Table 5. Peptide-based hydrogels in neural regeneration. [326, 174, 786, 199] table_caption 0.9 ["table prefix matched: Table 5. Peptide-based hydrogels in neural regeneration."] table_caption 0.9 display_zone table_caption_like table_number True True
166 16 3 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Peptide amphiphile nanofiber [67, 214, 1123, 956] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
167 16 4 paragraph_title 7. Hydrogels with Specific Growth Factors and Cells [327, 990, 813, 1015] section_heading 0.85 ["paragraph_title label with numbering: 7. Hydrogels with Specific Growth Factors and Cells"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
168 16 5 text This section details various studies on hydrogels containing specific growth factors and cells for neural regeneration. It highlights different formulations and objectives aimed at promoting spinal co [325, 1021, 1123, 1172] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
169 16 6 text An injectable thermosensitive hydrogel composed of chitosan/beta-glycerophosphate/hydroxyethyl cellulose (CS/beta-GP/HEC) encapsulating nerve growth factor (NGF)-overexpressing human adipose-derived m [325, 1172, 1125, 1347] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
170 16 7 text A chitosan/beta-glycerophosphate (C/GP) hydrogel containing nerve growth factor (NGF) was developed for facial nerve regeneration in rats. The study examined drug delivery, scaffold properties, electr [325, 1348, 1125, 1550] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
171 17 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
172 17 1 number 17 of 39 [1062, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
173 17 2 text A hydrogel composed of hyaluronic acid and laminin (NVR-Gel) filled with Schwann cells (SCs) genetically modified to overexpress glial cell line-derived neurotrophic factor (GDNF) or fibroblast growth [324, 176, 1125, 375] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
174 17 3 text Poly(D,L-lactic acid) (PDLLA)/β-tricalcium phosphate (β-TCP) nerve conduits filled with injectable chitosan/hyaluronic acid hydrogel featuring the sustained release of nerve growth factor (NGF) were e [325, 378, 1125, 631] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
175 17 4 table <table><tr><td>A</td><td>Autograft</td><td>PT</td><td>PT/CHN</td></tr><tr><td>1 month</td><td>[1[F6]]</td><td>[1[F5]]</td><td><img src="imgs/img_in_image_box_630_660_741_765.jpg" alt="Image"" /></td>< [329, 642, 851, 1221] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone unknown_like none True False
176 17 5 image [745, 655, 852, 763] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
177 17 6 figure_title Figure 3. Walking track analyses in vivo. (A): Footprint collected on the walking track at different time points (1, 2, and 3 months after implantation): first column: autograft group; second column: [326, 1233, 1125, 1336] figure_caption 0.92 ["figure_title label: Figure 3. Walking track analyses in vivo. (A): Footprint col"] figure_caption 0.92 display_zone legend_like figure_number True True
178 17 7 text Poly(2-hydroxyethyl methacrylate-co-methyl methacrylate) (PHEMA-MMA) tubes filled with collagen gel impregnated with neurotropin-3, brain-derived neurotrophic factor (BDNF), or acidic fibroblast growt [325, 1352, 1126, 1556] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
179 18 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
180 18 1 header 18 of 39 [1062, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
181 18 2 text Hierarchically aligned fibrin hydrogel microfibers laden with mesenchymal stem cells (MSCs) were used for spinal cord transection injury repair. This study examined MSC neural differentiation, nerve f [324, 176, 1125, 351] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
182 18 3 text An erythropoietin (EPO)-loaded multifunctional hydrogel combined with adipose-derived stem cells (ADSCs) was evaluated for neurogenic erectile function recovery. The hydrogel significantly improved er [324, 352, 1125, 501] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
183 18 4 text A Poloxamer hydrogel delivering adipose-derived stem cells (ASCs) was investigated for peripheral nerve regeneration in rats. The study focused on ASC viability, axonal regrowth, reinnervation of musc [325, 502, 1124, 653] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
184 18 5 text A heparin/Poloxamer thermosensitive hydrogel co-delivered with basic fibroblast growth factor (bFGF) and nerve growth factor (NGF) was evaluated for peripheral nerve regeneration in diabetic rats. The [325, 653, 1125, 828] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
185 18 6 text A decellularized porcine nerve-derived hydrogel filler peripheral nerve matrix (PNM) was used within conduits for nerve gap repair in rats. The study focused on nerve-specific matrix components, nerve [324, 829, 1125, 980] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
186 18 7 text A decellularized nerve matrix hydrogel was derived from a porcine sciatic nerve (pDNM-G) with longitudinally oriented microchannels through unidirectional freeze-drying, creating A-pDNM-G scaffolds fo [325, 981, 1125, 1130] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
187 18 8 text A fibrin hydrogel combined with poly(lactic-co-glycolic) acid (PLGA) microspheres encapsulating tacrolimus, along with rat adipose-derived mesenchymal stem cells (MSCs), was examined for peripheral ne [325, 1131, 1125, 1306] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
188 18 9 text Moreover, a biodegradable gelatin hydrogel (Medgel) containing olfactory stem cells (OSCs) harvested from newborn mice was studied for facial nerve regeneration in mice. The research assessed OSC isol [326, 1306, 1125, 1481] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
189 18 10 text Hydrogels incorporating specific growth factors and cells for neural regeneration share several common features. They utilize biocompatible and biodegradable materials [326, 1481, 1124, 1533] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
190 19 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
191 19 1 number 19 of 39 [1062, 102, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
192 19 2 text like chitosan, hyaluronic acid, and various synthetic polymers to create scaffolds that support cell proliferation and tissue integration. These hydrogels often encapsulate growth factors such as nerv [326, 176, 1125, 376] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
193 19 3 text The comparative analysis of hydrogels with specific growth factors and cells for neural regeneration suggests that the most effective compositions integrate neurotrophic factors, stem cells, and advan [324, 378, 1125, 629] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
194 19 4 text Table 6 outlines various hydrogels loaded with specific growth factors and cells, designed for neural regeneration. These hydrogels enhance nerve repair through the sustained release of growth factors [324, 628, 1126, 757] table_caption 0.9 ["table prefix matched: Table 6 outlines various hydrogels loaded with specific grow"] table_caption 0.9 display_zone table_caption_like table_number True True
195 19 5 figure_title Table 6. Hydrogels loaded with specific growth factors and cells in nerve regeneration. [326, 779, 1025, 804] table_caption 0.9 ["table prefix matched: Table 6. Hydrogels loaded with specific growth factors and c"] table_caption 0.9 display_zone table_caption_like table_number True True
196 19 6 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Poly(D, l-lactic acid) (PDLL [67, 819, 1124, 1470] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
197 20 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
198 20 1 number 20 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
199 20 2 figure_title Table 6. Cont. [328, 175, 443, 198] table_caption 0.9 ["table prefix matched: Table 6. Cont."] table_caption 0.9 display_zone table_caption_like table_number True True
200 20 3 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Poloxamer hydrogel with adip [68, 214, 1124, 831] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
201 20 4 paragraph_title 8. Hydrogels with Conductive Properties [327, 864, 709, 889] section_heading 0.85 ["paragraph_title label with numbering: 8. Hydrogels with Conductive Properties"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
202 20 5 text This section discusses the development of conductive hydrogels for peripheral nerve regeneration. Various formulations, including a chitosan/aniline pentamer, graphene oxide composites, and polypyrrol [324, 896, 1123, 1046] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
203 20 6 text An electroactive chitosan/aniline pentamer hydrogel (CS-AP) was developed for peripheral nerve regeneration. This hydrogel was characterized by its electroactivity, degradation, gelation time, tensile [325, 1048, 1125, 1222] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
204 20 7 text A chitosan/oxidized hydroxyethyl cellulose/reduced graphene oxide/asiaticoside liposome hydrogel was created for nerve regeneration. The hydrogel was nontoxic, and its conductivity was $ 5.27 \pm 0.4 [324, 1223, 1125, 1372] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
205 20 8 text A conductive sodium alginate/carboxymethyl chitosan hydrogel doped with polypyrrole (SA/CMCS/PPy) was investigated for peripheral nerve regeneration. The SA/CMCS/PPy hydrogel showed good biocompatibil [326, 1373, 1126, 1525] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
206 21 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
207 21 1 header 21 of 39 [1061, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
208 21 2 text A plasticine-like conductive hydrogel consisting of gelatin, polypyrrole, and tannic acid (GPT) was studied for peripheral nerve regeneration. The GPT hydrogel exhibited self-healing properties, elect [325, 176, 1124, 327] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
209 21 3 text Conductive graphene oxide/oligo(polyethylene glycol fumarate) (GO-OPF) hydrogel composites with a functionalized surface were evaluated for nerve regeneration. The study examined the hydrogels' electr [325, 327, 1126, 503] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
210 21 4 text Reduced graphene oxide/gelatin-methacrylate (r(GO/GelMA)) hydrogel nerve guidance conduits (NGCs) were assessed for peripheral nerve regeneration. The study focused on the hydrogels' electrical conduc [326, 503, 1125, 703] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
211 21 5 text A zwitterionic conductive hydrogel fabricated by the copolymerization of sulfobetain methacrylate and hydroxyethyl methacrylate was developed as a nerve guidance conduit for peripheral nerve regenerat [325, 703, 1125, 929] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
212 21 6 text A self-healing electroconductive hydrogel (HASPy) made from hyaluronic acid (HA), cystamine (Cys), and pyrrole-1-propionic acid (Py-COOH) was investigated for promoting peripheral nerve regeneration. [325, 929, 1125, 1156] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
213 21 7 text An injectable, self-healing, conductive hydrogel (ACCP) was created by grafting polyaniline (PANI) onto carboxymethyl chitosan (CMCS) and crosslinking with aldehyde-based hyaluronic acid (ALHA). This [324, 1155, 1125, 1357] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
214 21 8 text Adhesive conductive immunomodulatory nerve hydrogel bandages were prepared from extracellular matrix (ECM), oxidized polysaccharides, and poly(3,4-ethylenedioxythio phene)/poly(styrenesulfonate) (PEDO [325, 1356, 1123, 1534] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
215 22 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
216 22 1 number 22 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
217 22 2 figure_title A [343, 181, 363, 201] figure_inner_text 0.9 ["panel label / figure inner text: A"] figure_inner_text 0.9 display_zone legend_like panel_label True True
218 22 3 image [335, 179, 977, 1130] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
219 22 4 figure_title Figure 4. (A) A schematic diagram of the preparation of an injectable self-healing conductive hydrogel. (B) A schematic of the self-healing and electrical conductivity of the hydrogel and its regulati [326, 1157, 1125, 1285] figure_caption 0.92 ["figure_title label: Figure 4. (A) A schematic diagram of the preparation of an i"] figure_caption 0.92 display_zone legend_like figure_number True True
220 22 5 text Conductive hydrogel scaffolds with in situ electrical generation capability, combining conductive hydrogel and wireless power transmitter, were developed for nerve regeneration. This innovative approa [325, 1302, 1126, 1502] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
221 22 6 text A black phosphorus (BP) hydrogel loaded with neuregulin 1 (Nrg1) was studied for peripheral nerve regeneration. The BP hydrogel nerve guidance conduits (NGCs) were [326, 1503, 1125, 1556] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
222 23 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
223 23 1 number 23 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
224 23 2 text characterized by flexibility, nerve regeneration-related cell induction, Schwann cell proliferation, neuron-branch elongation, and axon remyelination. In vivo immunofluorescence studies showed that BP [324, 175, 1126, 300] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
225 23 3 text A biomimetic silk fibroin hydrogel incorporating graphene oxide and fibroblast exosomes was developed for nerve regeneration. This conductive hydrogel was assessed for its conductivity, electron trans [324, 302, 1126, 476] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
226 23 4 text Synthetic hydrogels with conductive properties for neural regeneration exhibit several common characteristics. These hydrogels are designed to be biocompatible and biodegradable, providing a supportiv [325, 478, 1126, 678] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
227 23 5 text The comparative analysis of conductive hydrogels for neural regeneration suggests that the most effective compositions integrate conductive materials, bioactive molecules, and advanced structural desi [325, 678, 1125, 928] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
228 23 6 text Table 7 describes various synthetic hydrogels with conductive properties engineered for neural regeneration. These hydrogels support nerve repair through features like biocompatibility, electrical con [325, 929, 1125, 1032] table_caption 0.9 ["table prefix matched: Table 7 describes various synthetic hydrogels with conductiv"] table_caption 0.9 display_zone table_caption_like table_number True True
229 23 7 figure_title Table 7. Conductive hydrogels in neural regeneration. [327, 1055, 765, 1079] table_caption 0.9 ["table prefix matched: Table 7. Conductive hydrogels in neural regeneration."] table_caption 0.9 display_zone table_caption_like table_number True True
230 23 8 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>HA-modified polypyrrole self [67, 1094, 1118, 1487] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
231 24 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
232 24 1 number 24 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
233 24 2 figure_title Table 7. Cont. [328, 175, 443, 198] table_caption 0.9 ["table prefix matched: Table 7. Cont."] table_caption 0.9 display_zone table_caption_like table_number True True
234 24 3 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Chitosan/oxidized hydroxyeth [68, 213, 1124, 1047] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
235 24 4 paragraph_title 9. Various Synthetic and Composite Hydrogels [327, 1079, 763, 1103] section_heading 0.85 ["paragraph_title label with numbering: 9. Various Synthetic and Composite Hydrogels"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
236 24 5 text This section explores various synthetic and composite hydrogels designed for nerve regeneration. It covers different hydrogel compositions, including graphene oxide, collagen/chitosan, polyacrylamide/ [324, 1109, 1125, 1259] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
237 24 6 text Silicone conduits filled with ammonia-functionalized graphene oxide (NH₂-GO) and frankincense (Fr) embedded in collagen/chitosan hydrogel were evaluated for nerve regeneration. This study investigated [326, 1260, 1124, 1436] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
238 24 7 text Polyacrylamide/chitosan (PAM/CS) composite hydrogels with elasticity and topographical guidance were designed for nerve regeneration. These hydrogels were created using in situ free-radical polymeriza [326, 1435, 1126, 1539] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
239 25 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
240 25 1 header 25 of 39 [1061, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
241 25 2 text composite hydrogel with an elastic modulus of 5.822 kPa/8.41 kPa and groove width of 30 $ \mu $m promoted strong neurite growth, better-oriented status, and effective peripheral nerve regeneration in [325, 176, 1123, 275] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
242 25 3 text Collagen crosslinked with poly(N-isopropylacrylamide) (PNiPAAm) terpolymer scaffolds grafted with laminin pentapeptide YIGSR was studied for nerve regeneration. These bioactive hydrogel-filament scaff [325, 277, 1125, 452] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
243 25 4 text A polyacrylonitrile (PAN) conduit filled with a fibrin hydrogel and graphene quantum dots (GQDs), incorporating Wharton's jelly-derived mesenchymal stem cells (WJMSCs) differentiated into Schwann cell [325, 453, 1124, 677] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
244 25 5 text Fibrin or synthetic poly(ethylene glycol) and fibrinogen/gelatin hydrogels with laser-ablated microchannels were utilized for sciatic nerve regeneration. The hydrogels were evaluated for shear modulus [325, 679, 1124, 854] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
245 25 6 text Poly(2-hydroxyethyl methacrylate-co-methyl methacrylate) (PHEMA-MMA) porous tubes were developed for sciatic nerve repair. These tubes were characterized by their biocompatibility, pore structure, mec [325, 854, 1124, 1005] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
246 25 7 text Gelatin methacrylate (GelMA)/poly(2-ethyl-2-oxazoline) (PEtOx) hydrogel containing 4-aminopyridine (4-AP) was investigated for sciatic nerve injury. The hydrogel was assessed for porosity, swelling ra [325, 1005, 1123, 1180] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
247 25 8 text Anisotropic polyacrylamide (PAM) hydrogel micropatterns with aligned ridge/groove structures, biofunctionalized using YIGSR peptide, were created to guide Schwann cell behavior. These hydrogels were d [325, 1180, 1124, 1382] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
248 25 9 text A pure silk fibroin hydrogel with an aligned microgrooved topographic structure was designed for peripheral nerve regeneration. The hydrogels exhibited excellent mechanical properties and biocompatibi [326, 1382, 1125, 1508] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
249 26 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
250 26 1 header 26 of 39 [1061, 103, 1122, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
251 26 2 text A photothermal-responsive cell-laden poly-N-isopropylacrylamide (PNIPAM) hydrogel containing dopamine hydrochloride-modified multi-walled carbon nanotubes (MWCNTs) was developed for nerve regeneration [324, 175, 1125, 352] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
252 26 3 text A polyamidoamine (PAA) hydrogel scaffold shaped as a small tube was obtained by radical polymerization of a soluble functional oligomeric precursor and was investigated as a conduit for nerve regenera [324, 352, 1124, 552] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
253 26 4 text A polyacrylamide/silk fibroin/graphene oxide composite hydrogel was designed for Schwann cell culture and nerve regeneration. This composite hydrogel featured a three-dimensional network structure, hy [324, 552, 1125, 704] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
254 26 5 text Magnesium-encapsulated injectable hydrogel combined with a polycaprolactone (PCL) conduit was investigated for nerve regeneration. The study focused on sustained $ Mg^{2+} $ delivery, the activation [324, 704, 1123, 855] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
255 26 6 text An in situ visible photo-crosslinkable protein-based bioadhesive hydrogel containing a functional neurotransmitter peptide was developed for sutureless neurorrhaphy. This system utilized a macrophage- [325, 855, 1125, 1029] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
256 26 7 text A hierarchically aligned fibrin nanofiber hydrogel (AFG) was prepared through electrospinning and molecular self-assembly for peripheral nerve regeneration. This hydrogel featured hierarchically align [325, 1030, 1125, 1206] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
257 26 8 text Graphene foam/hydrogel scaffolds combined with adipose-derived stem cells (ADSCs) were investigated for peripheral nerve regeneration in a diabetic mouse model. These scaffolds provided mechanical str [324, 1206, 1125, 1407] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
258 26 9 text A graphene mesh-supported double-network (DN) hydrogel scaffold loaded with netrin-1 was engineered for nerve regeneration. Composed of natural alginate, gelatin-methacryloyl, and graphene mesh, this [324, 1406, 1127, 1534] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
259 27 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
260 27 1 number 27 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
261 27 2 text significantly promoted peripheral nerve regeneration, demonstrating superiority to autografts [97]. [325, 176, 1125, 226] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
262 27 3 text Poly(2-hydroxyethyl methacrylate-co-methyl methacrylate) (PHEMA-MMA) coil-reinforced hydrogel tubes were synthesized and compared with autografts for nerve regeneration. Three designs—plain, corrugate [324, 226, 1126, 402] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
263 27 4 text A gelatin methacryloyl (GelMA) hydrogel photocrosslinked under a blue-light source (405 nm) was studied for nerve repair and regeneration in mice with spinal cord injury. The hydrogel's biocompatibili [324, 403, 1126, 552] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
264 27 5 text The various synthetic and composite hydrogels for neural regeneration exhibit several common features. Many studies incorporate conductive materials such as graphene oxide, polypyrrole, or carbon nano [324, 552, 1125, 753] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
265 27 6 text The comparative analysis of various synthetic and composite hydrogels for nerve regeneration suggests that the most effective compositions integrate conductive materials, bioactive molecules, and adva [324, 753, 1125, 1029] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
266 27 7 text Table 8 outlines various miscellaneous synthetic and composite hydrogels designed for neural regeneration, highlighting their physical, chemical, and biological properties. These hydrogels support ner [324, 1029, 1125, 1182] table_caption 0.9 ["table prefix matched: Table 8 outlines various miscellaneous synthetic and composi"] table_caption 0.9 display_zone table_caption_like table_number True True
267 27 8 figure_title Table 8. Miscellaneous synthetic and composite hydrogels in neural regeneration. [326, 1205, 983, 1230] table_caption 0.9 ["table prefix matched: Table 8. Miscellaneous synthetic and composite hydrogels in "] table_caption 0.9 display_zone table_caption_like table_number True True
268 27 9 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Pure silk fibroin hydrogel w [67, 1247, 1119, 1484] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
269 28 0 header Materials 2024, 17, 3472 [68, 98, 238, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
270 28 1 number 28 of 39 [1061, 102, 1122, 124] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
271 28 2 figure_title Table 8. Cont. [327, 174, 444, 198] table_caption 0.9 ["table prefix matched: Table 8. Cont."] table_caption 0.9 display_zone table_caption_like table_number True True
272 28 3 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/ Disorder Targeted</td><td>Ref</td></tr><tr><td>Collagen/terpolymer hydroge [66, 206, 1124, 1554] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
273 29 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
274 29 1 header 29 of 39 [1061, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
275 29 2 paragraph_title 10. Specialized Hydrogels for Specific Applications [327, 176, 804, 201] section_heading 0.85 ["paragraph_title label with numbering: 10. Specialized Hydrogels for Specific Applications"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
276 29 3 text This section discusses the development and application of specialized hydrogels for nerve tissue engineering. It highlights various formulations, like GelMA, thermosensitive, agarose-methylcellulose b [324, 207, 1124, 333] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
277 29 4 text A gelatin methacrylate (GelMA) hydrogel, a gelatin modified by methacrylamide, has been extensively reviewed for its applications in nerve tissue engineering. This hydrogel possesses adjustable mechan [325, 333, 1124, 483] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
278 29 5 text Further advancements in GelMA hydrogels include their modification with methacrylic anhydride and loading with vascular endothelial growth factor (VEGF). This formulation exhibits good physical and ch [326, 483, 1125, 635] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
279 29 6 text A thermosensitive hydrogel (PALDE) carrying extracellular vesicles (EVs) from adipose-derived stem cells was studied for peripheral nerve regeneration after microsurgical repair. This hydrogel promote [325, 635, 1128, 810] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
280 29 7 text Agarose and methylcellulose hydrogel blends have been created for nerve regeneration applications. These thermoreversible hydrogels combine methylcellulose with agarose to create injectable materials [325, 810, 1124, 985] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
281 29 8 text Chondroitin sulfate hydrogel has been designed as a scaffold for regenerating root neurons and delivering neurotrophic signals. This hydrogel shows a strong affinity with common neurotrophins and prov [324, 986, 1124, 1136] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
282 29 9 text Specialized hydrogels for specific applications in nerve regeneration share several common features. These hydrogels are designed to be biocompatible, biodegradable, and possess tunable mechanical pro [325, 1137, 1126, 1312] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
283 29 10 text The comparative analysis of specialized hydrogels for specific applications in nerve tissue engineering suggests that the most effective compositions integrate bioactive molecules, exhibit tunable mec [325, 1313, 1126, 1540] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
284 30 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
285 30 1 number 30 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
286 30 2 text offer advantageous thermoreversible properties and structural stability at physiological temperatures, supporting nerve regeneration and therapeutic delivery [105]. Chondroitin sulfate hydrogels excel [325, 175, 1124, 276] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
287 30 3 text Table 9 highlights specialized hydrogels designed for specific neural regeneration applications, detailing their physical, chemical, and biological properties. These hydrogels support nerve repair by [324, 277, 1125, 430] table_caption 0.9 ["table prefix matched: Table 9 highlights specialized hydrogels designed for specif"] table_caption 0.9 display_zone table_caption_like table_number True True
288 30 4 figure_title Table 9. Hydrogels designed for special neural regeneration applications. [326, 452, 917, 476] table_caption 0.9 ["table prefix matched: Table 9. Hydrogels designed for special neural regeneration "] table_caption 0.9 display_zone table_caption_like table_number True True
289 30 5 table <table><tr><td>Hydrogel Structure</td><td>Hydrogel Physical, Chemical, and Biological Characteristics</td><td>Neural Disease/Disorder Targeted</td><td>Ref</td></tr><tr><td>Gelatin methacrylate (GelMA) [67, 492, 1119, 904] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
290 30 6 paragraph_title 11. Factors Affecting the Selection of Hydrogels for Neural Regeneration [327, 935, 998, 960] section_heading 0.85 ["paragraph_title label with numbering: 11. Factors Affecting the Selection of Hydrogels for Neural "] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
291 30 7 text The selection of hydrogels for neural regeneration is influenced by several key factors that help tailor these materials to address specific neural injuries and regeneration challenges. These factors [324, 967, 1125, 1066] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
292 30 8 text Different neural injuries require hydrogels with specific properties. For instance, spinal cord injuries often benefit from hydrogels that support electrical signal transmission and promote axonal gro [324, 1066, 1125, 1241] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
293 30 9 text The physical properties of hydrogels, such as porosity, biodegradability, and mechanical strength, are critical for creating an environment conducive to nerve regeneration. Tailoring these properties [325, 1242, 1125, 1419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
294 30 10 text Incorporating growth factors, drugs, conductive materials, and bioactive molecules into hydrogels significantly enhances their regenerative capabilities. Growth factors like NGF and BDNF improve neuro [324, 1419, 1127, 1546] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
295 31 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
296 31 1 header 31 of 39 [1061, 103, 1121, 123] noise 0.9 ["header label"] noise 0.9 reference_like reference_numeric_dot False False
297 31 2 text including neurotrophic peptides, antioxidants, and anti-inflammatory agents, support cell proliferation, reduce inflammation, and enhance neuroprotection [14,15,58]. The choice of additives, such as 4 [325, 176, 1125, 300] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
298 31 3 text Effective delivery methods and sustained release profiles are crucial for the therapeutic success of hydrogels. Injectable hydrogels offer minimally invasive delivery and better tissue integration, wh [325, 302, 1124, 527] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
299 31 4 text Ensuring the biocompatibility and safety of hydrogels is paramount. Rigorous in vitro and in vivo testing confirms the cytocompatibility and hemocompatibility of the hydrogels, ensuring they are nonto [326, 527, 1125, 678] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
300 31 5 text By carefully considering these factors—the type of nerve injury, hydrogel properties, additive components, delivery methods, and biocompatibility—researchers can optimize hydrogels to meet the specifi [325, 678, 1126, 805] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
301 31 6 paragraph_title 12. Testing Hydrogels for Neural Regeneration and Repair [327, 823, 868, 849] section_heading 0.85 ["paragraph_title label with numbering: 12. Testing Hydrogels for Neural Regeneration and Repair"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
302 31 7 text Hydrogels have emerged as promising materials for neural regeneration and repair due to their biocompatibility, tunable mechanical properties, and ability to mimic the natural extracellular matrix. Co [325, 854, 1123, 983] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
303 31 8 paragraph_title 12.1. In Vitro Tests [329, 1000, 493, 1024] subsection_heading 0.85 ["paragraph_title label with numbering: 12.1. In Vitro Tests"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
304 31 9 text In vitro tests focus on the morphological, mechanical, and biological properties of hydrogels. Morphological analysis using scanning electron microscopy (SEM) is essential to ensuring the appropriate [325, 1031, 1123, 1182] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
305 31 10 text Mechanical and degradation properties are also critical. Mechanical properties such as the tensile strength, compressive modulus, and Young's modulus are measured to ensure that the hydrogel can withs [325, 1182, 1124, 1332] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
306 31 11 text Cell viability and proliferation are assessed using various assays. Viability assays like MTT and resazurin analyses help determine the hydrogel's ability to support cell survival and proliferation, w [326, 1332, 1123, 1482] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
307 31 12 text The electrophysiological and conductivity properties of hydrogels are evaluated to ensure their suitability for neural applications. Electrophysiological recordings, such as [326, 1483, 1124, 1535] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
308 32 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
309 32 1 number 32 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
310 32 2 text compound muscle action potential (CMAP) latency and nerve conduction velocity (NCV), assess the hydrogel's ability to support and transmit electrical signals [61,67]. Conductivity measurements are als [326, 175, 1123, 277] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
311 32 3 paragraph_title 12.2. In Vivo Tests [329, 296, 489, 319] subsection_heading 0.85 ["paragraph_title label with numbering: 12.2. In Vivo Tests"] subsection_heading 0.85 body_zone heading_like heading_numbered True True
312 32 4 text In vivo tests provide insights into the functional recovery and integration of hydrogels in living organisms. Functional recovery is often assessed using the sciatic functional index (SFI), which meas [325, 327, 1124, 452] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
313 32 5 text Histological and biochemical analyses are conducted to observe tissue integration, axonal regeneration, and inflammatory responses. Techniques such as immunohistochemistry and Masson's trichrome stain [326, 453, 1125, 602] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
314 32 6 text Muscle mass and function, such as gastrocnemius muscle mass measurements, serve as indicators of successful nerve regeneration and functional recovery $ [9,26] $. [326, 604, 1122, 654] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
315 32 7 paragraph_title 13. Collective Outcomes [329, 673, 557, 697] section_heading 0.85 ["paragraph_title label with numbering: 13. Collective Outcomes"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
316 32 8 text Hydrogels have demonstrated significant advancements in nerve regeneration through enhanced biocompatibility, structural integrity, and functional recovery. Studies report high biocompatibility, minim [325, 704, 1124, 905] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
317 32 9 text Hydrogels possess favorable structural and mechanical properties, such as matching the Young's modulus of nerve tissues and supporting cell regrowth, exemplified by a chitosan/beta-glycerophosphate/sa [324, 906, 1123, 1031] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
318 32 10 text Functional recovery and nerve regeneration have significantly improved with various hydrogels. Examples include AFG-prefilled chitosan tubes and a Schwann cell-encapsulated chitosan/collagen hydrogel [325, 1031, 1126, 1231] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
319 32 11 text Incorporating advanced materials like BP nanosheets, peptide amphiphile nanofibers, and graphene oxide composites significantly improves hydrogel properties, enhancing conductivity, mechanical stabili [325, 1232, 1124, 1381] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
320 32 12 text Hydrogels with controlled release mechanisms and antimicrobial properties show promising results in promoting nerve regeneration while preventing infections. Examples include an AG-Car/SiNGF hydrogel [325, 1383, 1125, 1534] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
321 33 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
322 33 1 number 33 of 39 [1061, 103, 1121, 123] noise 0.9 ["page number label"] noise 0.9 reference_like reference_numeric_dot False False
323 33 2 text Innovative structural designs, such as microchannel guidance patterns and hierarchically aligned fibrin nanofiber hydrogels, improve tissue propagation and directional cell migration, further enhancin [326, 175, 1124, 254] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
324 33 3 paragraph_title 14. Collective Limitations [328, 271, 571, 294] section_heading 0.85 ["paragraph_title label with numbering: 14. Collective Limitations"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
325 33 4 text Hydrogels face significant challenges in nerve regeneration applications. There is notable variability in outcomes, with some hydrogels like the CS/GP hydrogel showing positive in vitro results but in [325, 302, 1124, 606] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
326 33 5 paragraph_title 15. Future Directions [328, 623, 529, 647] section_heading 0.85 ["paragraph_title label with numbering: 15. Future Directions"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
327 33 6 text Future research in hydrogel-based nerve regeneration should focus on optimizing physical and chemical properties to better mimic natural nerve tissue by fine-tuning pore sizes, degradation rates, and [325, 653, 1125, 1007] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
328 33 7 paragraph_title 16. Conclusions [328, 1025, 482, 1049] section_heading 0.85 ["paragraph_title label with numbering: 16. Conclusions"] section_heading 0.85 body_zone heading_like heading_numbered True True
329 33 8 text Hydrogels such as chitosan, alginate, collagen, hyaluronic acid, and peptide amphiphiles exhibit high biocompatibility and biodegradability, which are essential for nerve repair. These materials suppo [324, 1056, 1125, 1335] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
330 33 9 text Author Contributions: The authors confirm contributions to the paper as follows: conceptualization, writing, review, and editing, H.O.; investigation, review, and editing S.D.C. and L.X.C. All authors [326, 1356, 1124, 1428] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 support_like none True True
331 33 10 text Funding: This review article received no external funding. [328, 1438, 807, 1463] body_paragraph 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 unknown_like none True True
332 33 11 text Institutional Review Board Statement: Not applicable. [327, 1473, 778, 1497] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
333 33 12 text Informed Consent Statement: Not applicable. [328, 1509, 704, 1533] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
334 34 0 header Materials 2024, 17, 3472 [68, 98, 237, 119] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
335 34 1 number 34 of 39 [1061, 103, 1121, 123] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
336 34 2 text Data Availability Statement: No new data were created or analyzed in this study. Data sharing is not applicable to this article. [327, 178, 1122, 225] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
337 34 3 text Conflicts of Interest: Authors partly used the OpenAI Large-Scale Language Model to maximize accuracy, clarity, and organization. [327, 236, 1122, 284] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
338 34 4 paragraph_title Abbreviations [328, 308, 466, 330] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Abbreviations"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
339 34 5 table <table><tr><td>4-MC</td><td>4-Methylcatechol</td></tr><tr><td>ADSCs</td><td>Adipose-derived stem cells</td></tr><tr><td>AFG</td><td>Aligned fibrin nanofiber hydrogels</td></tr><tr><td>ASC</td><td>Adip [324, 351, 957, 1271] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
340 34 6 paragraph_title References [67, 1293, 175, 1316] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone heading_like short_fragment True True
341 34 7 reference_content 1. Navarro, X.; Vivo, M.; Valero-Cabre, A. Neural plasticity after peripheral nerve injury and regeneration. Prog. Neurobiol. 2007, 82, 163–201. [CrossRef] [66, 1323, 1123, 1366] reference_item 0.85 ["reference content label: 1. Navarro, X.; Vivo, M.; Valero-Cabre, A. Neural plasticity"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
342 34 8 reference_content 2. Stoll, G.; Muller, H.W. Nerve injury, axonal degeneration and neural regeneration: Basic insights. Brain Pathol. 1999, 9, 313–325. [CrossRef] [PubMed] [66, 1369, 1123, 1412] reference_item 0.85 ["reference content label: 2. Stoll, G.; Muller, H.W. Nerve injury, axonal degeneration"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
343 34 9 reference_content 3. Gazdar, A.F.; Dammin, G.J. Neural degeneration and regeneration in human renal transplants. N. Engl. J. Med. 1970, 283, 222–224. [CrossRef] [PubMed] [66, 1415, 1122, 1459] reference_item 0.85 ["reference content label: 3. Gazdar, A.F.; Dammin, G.J. Neural degeneration and regene"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
344 34 10 reference_content 4. Gulati, A.K. Peripheral nerve regeneration through short- and long-term degenerated nerve transplants. Brain Res. 1996, 742, 265–270. [CrossRef] [66, 1462, 1124, 1505] reference_item 0.85 ["reference content label: 4. Gulati, A.K. Peripheral nerve regeneration through short-"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
345 35 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
346 35 1 number 35 of 39 [1061, 103, 1121, 123] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
347 35 2 reference_content 5. Yasuda, H.; Terada, M.; Maeda, K.; Kogawa, S.; Sanada, M.; Haneda, M.; Kashiwagi, A.; Kikkawa, R. Diabetic neuropathy and nerve regeneration. Prog. Neurobiol. 2003, 69, 229–285. [CrossRef] [65, 177, 1122, 222] reference_item 0.85 ["reference content label: 5. Yasuda, H.; Terada, M.; Maeda, K.; Kogawa, S.; Sanada, M."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
348 35 3 reference_content 6. Li, X.; Zhang, T.; Li, C.; Xu, W.; Guan, Y.; Li, X.; Cheng, H.; Chen, S.; Yang, B.; Liu, Y.; et al. Electrical stimulation accelerates Wallerian degeneration and promotes nerve regeneration after s [66, 224, 1122, 268] reference_item 0.85 ["reference content label: 6. Li, X.; Zhang, T.; Li, C.; Xu, W.; Guan, Y.; Li, X.; Chen"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
349 35 4 reference_content 7. Jiang, L.; Jones, S.; Jia, X. Stem Cell Transplantation for Peripheral Nerve Regeneration: Current Options and Opportunities. Int. J. Mol. Sci. 2017, 18, 94. [CrossRef] [PubMed] [67, 270, 1122, 313] reference_item 0.85 ["reference content label: 7. Jiang, L.; Jones, S.; Jia, X. Stem Cell Transplantation f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
350 35 5 reference_content 8. Ehterami, A.; Rezaei Kolarijani, N.; Nazarnezhad, S.; Alizadeh, M.; Masoudi, A.; Salehi, M. Peripheral nerve regeneration by thiolated chitosan hydrogel containing Taurine: In vitro and in vivo stu [66, 316, 1122, 360] reference_item 0.85 ["reference content label: 8. Ehterami, A.; Rezaei Kolarijani, N.; Nazarnezhad, S.; Ali"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
351 35 6 reference_content 9. Guo, Q.; Liu, C.; Hai, B.; Ma, T.; Zhang, W.; Tan, J.; Fu, X.; Wang, H.; Xu, Y.; Song, C. Chitosan conduits filled with simvastatin/Pluronic F-127 hydrogel promote peripheral nerve regeneration in [66, 363, 1124, 428] reference_item 0.85 ["reference content label: 9. Guo, Q.; Liu, C.; Hai, B.; Ma, T.; Zhang, W.; Tan, J.; Fu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
352 35 7 reference_content 10. Wach, R.A.; Adamus-Wlodarczyk, A.; Olejnik, A.K.; Matusiak, M.; Tranquilan-Aranilla, C.; Ulanski, P. Carboxymethylchitosan hydrogel manufactured by radiation-induced crosslinking as potential nerv [67, 431, 1123, 497] reference_item 0.85 ["reference content label: 10. Wach, R.A.; Adamus-Wlodarczyk, A.; Olejnik, A.K.; Matusi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
353 35 8 reference_content 11. Itai, S.; Suzuki, K.; Kurashina, Y.; Kimura, H.; Amemiya, T.; Sato, K.; Nakamura, M.; Onoe, H. Cell-encapsulated chitosan-collagen hydrogel hybrid nerve guidance conduit for peripheral nerve regen [68, 500, 1121, 544] reference_item 0.85 ["reference content label: 11. Itai, S.; Suzuki, K.; Kurashina, Y.; Kimura, H.; Amemiya"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
354 35 9 reference_content 12. Takeya, H.; Itai, S.; Kimura, H.; Kurashina, Y.; Amemiya, T.; Nagoshi, N.; Iwamoto, T.; Sato, K.; Shibata, S.; Matsumoto, M.; et al. Schwann cell-encapsulated chitosan-collagen hydrogel nerve cond [68, 547, 1124, 612] reference_item 0.85 ["reference content label: 12. Takeya, H.; Itai, S.; Kimura, H.; Kurashina, Y.; Amemiya"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
355 35 10 reference_content 13. Liu, K.; Wang, Y.; Dong, X.; Xu, C.; Yuan, M.; Wei, W.; Pang, Z.; Wu, X.; Dai, H. Injectable Hydrogel System Incorporating Black Phosphorus Nanosheets and Tazarotene Drug for Enhanced Vascular and [67, 615, 1123, 681] reference_item 0.85 ["reference content label: 13. Liu, K.; Wang, Y.; Dong, X.; Xu, C.; Yuan, M.; Wei, W.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
356 35 11 reference_content 14. He, Z.; Zang, H.; Zhu, L.; Huang, K.; Yi, T.; Zhang, S.; Cheng, S. An anti-inflammatory peptide and brain-derived neurotrophic factor-modified hyaluronan-methylcellulose hydrogel promotes nerve re [66, 684, 1123, 751] reference_item 0.85 ["reference content label: 14. He, Z.; Zang, H.; Zhu, L.; Huang, K.; Yi, T.; Zhang, S.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
357 35 12 reference_content 15. Zhang, Y.; Li, L.; Mu, J.; Chen, J.; Feng, S.; Gao, J. Implantation of a functional TEMPO-hydrogel induces recovery from rat spinal cord transection through promoting nerve regeneration and protec [67, 752, 1123, 819] reference_item 0.85 ["reference content label: 15. Zhang, Y.; Li, L.; Mu, J.; Chen, J.; Feng, S.; Gao, J. I"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
358 35 13 reference_content 16. Lanier, S.T.; Hill, J.R.; Dy, C.J.; Brogan, D.M. Evolving Techniques in Peripheral Nerve Regeneration. J. Hand Surg. Am. 2021, 46, 695–701. [CrossRef] [67, 822, 1124, 865] reference_item 0.85 ["reference content label: 16. Lanier, S.T.; Hill, J.R.; Dy, C.J.; Brogan, D.M. Evolvin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
359 35 14 reference_content 17. Omidian, H.; Chowdhury, S.D. Advancements and Applications of Injectable Hydrogel Composites in Biomedical Research and Therapy. Gels 2023, 9, 533. [CrossRef] [PubMed] [67, 867, 1123, 912] reference_item 0.85 ["reference content label: 17. Omidian, H.; Chowdhury, S.D. Advancements and Applicatio"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
360 35 15 reference_content 18. Omidian, H.; Chowdhury, S.D.; Wilson, R.L. Advancements and Challenges in Hydrogel Engineering for Regenerative Medicine. Gels 2024, 10, 238. [CrossRef] [PubMed] [67, 915, 1124, 958] reference_item 0.85 ["reference content label: 18. Omidian, H.; Chowdhury, S.D.; Wilson, R.L. Advancements "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
361 35 16 reference_content 19. Omidian, H.; Dey Chowdhury, S.; Babanejad, N. Cryogels: Advancing Biomaterials for Transformative Biomedical Applications. Pharmaceutics 2023, 15, 1836. [CrossRef] [67, 960, 1123, 1003] reference_item 0.85 ["reference content label: 19. Omidian, H.; Dey Chowdhury, S.; Babanejad, N. Cryogels: "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
362 35 17 reference_content 20. Shokrollahi, P.; Omidi, Y.; Cubeddu, L.X.; Omidian, H. Conductive polymers for cardiac tissue engineering and regeneration. J. Biomed. Mater. Res. Part B 2023, 111, 1979–1995. [CrossRef] [66, 1006, 1123, 1050] reference_item 0.85 ["reference content label: 20. Shokrollahi, P.; Omidi, Y.; Cubeddu, L.X.; Omidian, H. C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
363 35 18 reference_content 21. Li, H.; Li, M.; Liu, P.; Wang, K.; Fang, H.; Yin, J.; Zhu, D.; Yang, Q.; Gao, J.; Ke, Q.; et al. A multifunctional substance P-conjugated chitosan hydrochloride hydrogel accelerates full-thickness [66, 1052, 1124, 1119] reference_item 0.85 ["reference content label: 21. Li, H.; Li, M.; Liu, P.; Wang, K.; Fang, H.; Yin, J.; Zh"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
364 35 19 reference_content 22. Abbaszadeh-Goudarzi, G.; Haghi-Daredeh, S.; Ehterami, A.; Rahmati, M.; Nazarnezhad, S.; Hashemi, S.F.; Niyakan, M.; Vaez, A.; Salehi, M. Evaluating effect of alginate/chitosan hydrogel containing [67, 1120, 1124, 1188] reference_item 0.85 ["reference content label: 22. Abbaszadeh-Goudarzi, G.; Haghi-Daredeh, S.; Ehterami, A."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
365 35 20 reference_content 23. Ebrahimi, M.H.; Samadian, H.; Davani, S.T.; Kolarijani, N.R.; Mogharabian, N.; Salami, M.S.; Salehi, M. Peripheral nerve regeneration in rats by chitosan/alginate hydrogel composited with Berberin [66, 1190, 1123, 1257] reference_item 0.85 ["reference content label: 23. Ebrahimi, M.H.; Samadian, H.; Davani, S.T.; Kolarijani, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
366 35 21 reference_content 24. Keykhaee, M.; Rahimifard, M.; Najafi, A.; Baeeri, M.; Abdollahi, M.; Mottaghitalab, F.; Farokhi, M.; Khoobi, M. Alginate/gum arabic-based biomimetic hydrogel enriched with immobilized nerve growth [66, 1260, 1122, 1327] reference_item 0.85 ["reference content label: 24. Keykhaee, M.; Rahimifard, M.; Najafi, A.; Baeeri, M.; Ab"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
367 35 22 reference_content 25. Ai, A.; Behforouz, A.; Ehterami, A.; Sadeghvaziri, N.; Jalali, S.; Farzamfar, S.; Yousefbeigi, A.; Ai, A.; Goodarzi, A.; Salehi, M.; et al. Sciatic nerve regeneration with collagen type I hydrogel [67, 1329, 1124, 1395] reference_item 0.85 ["reference content label: 25. Ai, A.; Behforouz, A.; Ehterami, A.; Sadeghvaziri, N.; J"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
368 35 23 reference_content 26. Xu, H.; Yu, Y.; Zhang, L.; Zheng, F.; Yin, Y.; Gao, Y.; Li, K.; Xu, J.; Wen, J.; Chen, H.; et al. Sustainable release of nerve growth factor for peripheral nerve regeneration using nerve conduits [67, 1398, 1122, 1464] reference_item 0.85 ["reference content label: 26. Xu, H.; Yu, Y.; Zhang, L.; Zheng, F.; Yin, Y.; Gao, Y.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
369 35 24 reference_content 27. Gao, Y.; Zhang, T.L.; Zhang, H.J.; Gao, J.; Yang, P.F. A Promising Application of Injectable Hydrogels in Nerve Repair and Regeneration for Ischemic Stroke. Int. J. Nanomed. 2024, 19, 327–345. [Cr [67, 1467, 1120, 1512] reference_item 0.85 ["reference content label: 27. Gao, Y.; Zhang, T.L.; Zhang, H.J.; Gao, J.; Yang, P.F. A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
370 36 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
371 36 1 number 36 of 39 [1061, 103, 1122, 123] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
372 36 2 reference_content 28. Wang, X.; Yao, X.; Sun, Z.; Jin, Y.; Yan, Z.; Jiang, H.; Ouyang, Y.; Yuan, W.E.; Wang, C.; Fan, C. An extracellular matrix mimicking alginate hydrogel scaffold manipulates an inflammatory microenv [65, 178, 1122, 245] reference_item 0.85 ["reference content label: 28. Wang, X.; Yao, X.; Sun, Z.; Jin, Y.; Yan, Z.; Jiang, H.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
373 36 3 reference_content 29. Karimi, S.; Bagher, Z.; Najmoddin, N.; Simorgh, S.; Pezeshki-Modaress, M. Alginate-magnetic short nanofibers 3D composite hydrogel enhances the encapsulated human olfactory mucosa stem cells bioac [66, 247, 1123, 314] reference_item 0.85 ["reference content label: 29. Karimi, S.; Bagher, Z.; Najmoddin, N.; Simorgh, S.; Peze"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
374 36 4 reference_content 30. Samadian, H.; Vaez, A.; Ehterami, A.; Salehi, M.; Farzamfar, S.; Sahrapeyma, H.; Norouzi, P. Sciatic nerve regeneration by using collagen type I hydrogel containing naringin. J. Mater. Sci.-Mater. [66, 316, 1123, 360] reference_item 0.85 ["reference content label: 30. Samadian, H.; Vaez, A.; Ehterami, A.; Salehi, M.; Farzam"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
375 36 5 reference_content 31. Ardhani, R.; Ana, I.D.; Tabata, Y. Gelatin hydrogel membrane containing carbonate hydroxyapatite for nerve regeneration scaffold. J. Biomed. Mater. Res. Part A 2020, 108, 2491–2503. [CrossRef] [Pu [67, 363, 1124, 406] reference_item 0.85 ["reference content label: 31. Ardhani, R.; Ana, I.D.; Tabata, Y. Gelatin hydrogel memb"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
376 36 6 reference_content 32. Rahmati, M.; Ehterami, A.; Saberani, R.; Abbaszadeh-Goudarzi, G.; Rezaei Kolarijani, N.; Khastar, H.; Garmabi, B.; Salehi, M. Improving sciatic nerve regeneration by using alginate/chitosan hydrog [67, 408, 1124, 473] reference_item 0.85 ["reference content label: 32. Rahmati, M.; Ehterami, A.; Saberani, R.; Abbaszadeh-Goud"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
377 36 7 reference_content 33. Salehi, M.; Naseri-Nosar, M.; Ebrahimi-Barough, S.; Nourani, M.; Vaez, A.; Farzamfar, S.; Ai, J. Regeneration of sciatic nerve crush injury by a hydroxyapatite nanoparticle-containing collagen typ [66, 477, 1122, 521] reference_item 0.85 ["reference content label: 33. Salehi, M.; Naseri-Nosar, M.; Ebrahimi-Barough, S.; Nour"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
378 36 8 reference_content 34. Gu, X.; Chen, X.; Tang, X.; Zhou, Z.; Huang, T.; Yang, Y.; Ling, J. Pure-silk fibroin hydrogel with stable aligned micropattern toward peripheral nerve regeneration. Nanotechnol. Rev. 2021, 10, 10 [68, 523, 1120, 567] reference_item 0.85 ["reference content label: 34. Gu, X.; Chen, X.; Tang, X.; Zhou, Z.; Huang, T.; Yang, Y"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
379 36 9 reference_content 35. Xuan, H.; Wu, S.; Jin, Y.; Wei, S.; Xiong, F.; Xue, Y.; Li, B.; Yang, Y.; Yuan, H. A Bioinspired Self-Healing Conductive Hydrogel Promoting Peripheral Nerve Regeneration. Adv. Sci. 2023, 10, e2302 [67, 569, 1123, 613] reference_item 0.85 ["reference content label: 35. Xuan, H.; Wu, S.; Jin, Y.; Wei, S.; Xiong, F.; Xue, Y.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
380 36 10 reference_content 36. Yi, Z.; Zhan, F.; Chen, Y.; Zhang, R.; Lin, H.; Zhao, L. An electroconductive hydrogel with injectable and self-healing properties accelerates peripheral nerve regeneration and motor functional re [67, 615, 1121, 659] reference_item 0.85 ["reference content label: 36. Yi, Z.; Zhan, F.; Chen, Y.; Zhang, R.; Lin, H.; Zhao, L."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
381 36 11 reference_content 37. Wang, S.; Lu, H.; Kang, X.; Wang, Z.; Yan, S.; Zhang, X.; Shi, X. Electroconductive and Immunomodulatory Natural Polymer-Based Hydrogel Bandages Designed for Peripheral Nerve Regeneration. Adv. Fu [67, 662, 1120, 704] reference_item 0.85 ["reference content label: 37. Wang, S.; Lu, H.; Kang, X.; Wang, Z.; Yan, S.; Zhang, X."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
382 36 12 reference_content 38. Madhusudanan, P.; Raju, G.; Shankarappa, S. Hydrogel systems and their role in neural tissue engineering. J. R. Soc. Interface 2020, 17, 20190505. [CrossRef] [PubMed] [67, 707, 1123, 750] reference_item 0.85 ["reference content label: 38. Madhusudanan, P.; Raju, G.; Shankarappa, S. Hydrogel sys"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
383 36 13 reference_content 39. Mu, X.; Sun, X.; Yang, S.; Pan, S.; Sun, J.; Niu, Y.; He, L.; Wang, X. Chitosan Tubes Prefilled with Aligned Fibrin Nanofiber Hydrogel Enhance Facial Nerve Regeneration in Rabbits. ACS Omega 2021, [66, 752, 1123, 796] reference_item 0.85 ["reference content label: 39. Mu, X.; Sun, X.; Yang, S.; Pan, S.; Sun, J.; Niu, Y.; He"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
384 36 14 reference_content 40. Zheng, L.; Ao, Q.; Han, H.; Zhang, X.; Gong, Y. Evaluation of the chitosan/glycerol-beta-phosphate disodium salt hydrogel application in peripheral nerve regeneration. Biomed. Mater. 2010, 5, 3500 [67, 799, 1123, 843] reference_item 0.85 ["reference content label: 40. Zheng, L.; Ao, Q.; Han, H.; Zhang, X.; Gong, Y. Evaluati"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
385 36 15 reference_content 41. Zhang, L.; Chen, Y.; Xu, H.; Bao, Y.; Yan, X.; Li, Y.; Li, Y.; Yin, Y.; Wang, X.; Qiu, T.; et al. Preparation and evaluation of an injectable chitosan-hyaluronic acid hydrogel for peripheral nerve [67, 845, 1123, 910] reference_item 0.85 ["reference content label: 41. Zhang, L.; Chen, Y.; Xu, H.; Bao, Y.; Yan, X.; Li, Y.; L"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
386 36 16 reference_content 42. Kocman, A.E.; Dag, I.; Sengel, T.; Soztutar, E.; Canbek, M. The effect of lithium and lithium-loaded hyaluronic acid hydrogel applications on nerve regeneration and recovery of motor functions in [67, 914, 1122, 980] reference_item 0.85 ["reference content label: 42. Kocman, A.E.; Dag, I.; Sengel, T.; Soztutar, E.; Canbek,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
387 36 17 reference_content 43. Choe, S.; Bond, C.W.; Harrington, D.A.; Stupp, S.I.; McVary, K.T.; Podlasek, C.A. Peptide amphiphile nanofiber hydrogel delivery of sonic hedgehog protein to the cavernous nerve to promote regener [67, 983, 1123, 1049] reference_item 0.85 ["reference content label: 43. Choe, S.; Bond, C.W.; Harrington, D.A.; Stupp, S.I.; McV"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
388 36 18 reference_content 44. Lu, J.; Sun, X.; Yin, H.; Shen, X.; Yang, S.; Wang, Y.; Jiang, W.; Sun, Y.; Zhao, L.; Sun, X.; et al. A neurotrophic peptide-functionalized self-assembling peptide nanofiber hydrogel enhances rat [66, 1052, 1122, 1096] reference_item 0.85 ["reference content label: 44. Lu, J.; Sun, X.; Yin, H.; Shen, X.; Yang, S.; Wang, Y.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
389 36 19 reference_content 45. Bagher, Z.; Ehterami, A.; Nasrolahi, M.; Azimi, M.; Salehi, M. Hesperidin promotes peripheral nerve regeneration based on tissue engineering strategy using alginate/chitosan hydrogel: In vitro and [66, 1099, 1124, 1164] reference_item 0.85 ["reference content label: 45. Bagher, Z.; Ehterami, A.; Nasrolahi, M.; Azimi, M.; Sale"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
390 36 20 reference_content 46. Meyer, C.; Wrobel, S.; Raimondo, S.; Rochkind, S.; Heimann, C.; Shahar, A.; Ziv-Polat, O.; Geuna, S.; Grothe, C.; Haastert-Talini, K. Peripheral Nerve Regeneration Through Hydrogel-Enriched Chitos [66, 1167, 1123, 1234] reference_item 0.85 ["reference content label: 46. Meyer, C.; Wrobel, S.; Raimondo, S.; Rochkind, S.; Heima"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
391 36 21 reference_content 47. Midha, R.; Munro, C.A.; Dalton, P.D.; Tator, C.H.; Shoichet, M.S. Growth factor enhancement of peripheral nerve regeneration through a novel synthetic hydrogel tube. J. Neurosurg. 2003, 99, 555–56 [66, 1237, 1122, 1281] reference_item 0.85 ["reference content label: 47. Midha, R.; Munro, C.A.; Dalton, P.D.; Tator, C.H.; Shoic"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
392 36 22 reference_content 48. Park, J.; Lim, E.; Back, S.; Na, H.; Park, Y.; Sun, K. Nerve regeneration following spinal cord injury using matrix metalloproteinases-sensitive, hyaluronic acid-based biomimetic hydrogel scaffold [68, 1283, 1123, 1349] reference_item 0.85 ["reference content label: 48. Park, J.; Lim, E.; Back, S.; Na, H.; Park, Y.; Sun, K. N"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
393 36 23 reference_content 49. Chao, X.; Xu, L.; Li, J.; Han, Y.; Li, X.; Mao, Y.; Shang, H.; Fan, Z.; Wang, H. Facilitation of facial nerve regeneration using chitosan-beta-glycerophosphate-nerve growth factor hydrogel. Acta O [67, 1352, 1122, 1396] reference_item 0.85 ["reference content label: 49. Chao, X.; Xu, L.; Li, J.; Han, Y.; Li, X.; Mao, Y.; Shan"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
394 36 24 reference_content 50. Yao, S.; He, F.; Cao, Z.; Sun, Z.; Chen, Y.; Zhao, H.; Yu, X.; Wang, X.; Yang, Y.; Rosei, F.; et al. Mesenchymal Stem Cell-Laden Hydrogel Microfibers for Promoting Nerve Fiber Regeneration in Long [67, 1398, 1123, 1464] reference_item 0.85 ["reference content label: 50. Yao, S.; He, F.; Cao, Z.; Sun, Z.; Chen, Y.; Zhao, H.; Y"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
395 36 25 reference_content 51. Zheng, F.; Li, R.; He, Q.; Koral, K.; Tao, J.; Fan, L.; Xiang, R.; Ma, J.; Wang, N.; Yin, Y.; et al. The electrostimulation and scar inhibition effect of chitosan/oxidized hydroxyethyl cellulose/r [66, 1467, 1123, 1537] reference_item 0.85 ["reference content label: 51. Zheng, F.; Li, R.; He, Q.; Koral, K.; Tao, J.; Fan, L.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
396 37 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
397 37 1 number 37 of 39 [1060, 103, 1122, 123] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
398 37 2 reference_content 52. Kang, X.; Li, X.; Liu, C.; Cai, M.; Guan, P.; Luo, Y.; Guan, Y.; Tian, Y.; Ren, K.; Ning, C.; et al. A shape-persistent plasticine-like conductive hydrogel with self-healing properties for periphe [66, 177, 1122, 244] reference_item 0.85 ["reference content label: 52. Kang, X.; Li, X.; Liu, C.; Cai, M.; Guan, P.; Luo, Y.; G"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
399 37 3 reference_content 53. Park, J.; Jeon, J.; Kim, B.; Lee, M.S.; Park, S.; Lim, J.; Yi, J.; Lee, H.; Yang, H.S.; Lee, J.Y. Electrically Conductive Hydrogel Nerve Guidance Conduits for Peripheral Nerve Regeneration. Adv. F [66, 246, 1120, 291] reference_item 0.85 ["reference content label: 53. Park, J.; Jeon, J.; Kim, B.; Lee, M.S.; Park, S.; Lim, J"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
400 37 4 reference_content 54. Gao, Y.; Dai, C.; Zhang, M.; Zhang, J.; Yin, L.; Li, W.; Zhang, K.; Yang, Y.; Zhao, Y. Biomimetic Silk Fibroin Hydrogel for Enhanced Peripheral Nerve Regeneration: Synergistic Effects of Graphene [67, 293, 1122, 359] reference_item 0.85 ["reference content label: 54. Gao, Y.; Dai, C.; Zhang, M.; Zhang, J.; Yin, L.; Li, W.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
401 37 5 reference_content 55. Mozhdebhakhsh Mofrad, Y.; Shamloo, A. The effect of conductive aligned fibers in an injectable hydrogel on nerve tissue regeneration. Int. J. Pharm. 2023, 645, 123419. [CrossRef] [67, 362, 1122, 406] reference_item 0.85 ["reference content label: 55. Mozhdebhakhsh Mofrad, Y.; Shamloo, A. The effect of cond"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
402 37 6 reference_content 56. Savari Kouzehkonan, G.; Motakef Kazemi, N.; Adabi, M.; Mosavi, S.E.; Rezayat Sorkhabadi, S.M. Regeneration of sciatic nerve injury through nanofiber neural guidance channels containing collagen hy [68, 409, 1123, 474] reference_item 0.85 ["reference content label: 56. Savari Kouzehkonan, G.; Motakef Kazemi, N.; Adabi, M.; M"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
403 37 7 reference_content 57. Yoo, J.; Park, J.H.; Kwon, Y.W.; Chung, J.J.; Choi, I.C.; Nam, J.J.; Lee, H.S.; Jeon, E.Y.; Lee, K.; Kim, S.H.; et al. Augmented peripheral nerve regeneration through elastic nerve guidance condui [67, 477, 1123, 544] reference_item 0.85 ["reference content label: 57. Yoo, J.; Park, J.H.; Kwon, Y.W.; Chung, J.J.; Choi, I.C."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
404 37 8 reference_content 58. Kong, Y.; Shi, W.; Zhang, D.; Jiang, X.; Kuss, M.; Liu, B.; Li, Y.; Duan, B. Injectable, antioxidative, and neurotrophic factor-deliverable hydrogel for peripheral nerve regeneration and neuropath [67, 546, 1124, 590] reference_item 0.85 ["reference content label: 58. Kong, Y.; Shi, W.; Zhang, D.; Jiang, X.; Kuss, M.; Liu, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
405 37 9 reference_content 59. Yang, J.; Hsu, C.C.; Cao, T.T.; Ye, H.; Chen, J.; Li, Y.Q. A hyaluronic acid granular hydrogel nerve guidance conduit promotes regeneration and functional recovery of injured sciatic nerves in rat [68, 592, 1121, 636] reference_item 0.85 ["reference content label: 59. Yang, J.; Hsu, C.C.; Cao, T.T.; Ye, H.; Chen, J.; Li, Y."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
406 37 10 reference_content 60. Black, K.A.; Lin, B.F.; Wonder, E.A.; Desai, S.S.; Chung, E.J.; Ulery, B.D.; Katari, R.S.; Tirrell, M.V. Biocompatibility and characterization of a peptide amphiphile hydrogel for applications in [67, 638, 1123, 703] reference_item 0.85 ["reference content label: 60. Black, K.A.; Lin, B.F.; Wonder, E.A.; Desai, S.S.; Chung"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
407 37 11 reference_content 61. Meng, H.; Chen, R.Y.; Xu, L.N.; Li, W.C.; Chen, L.Y.; Zhao, X.J. Peripheral Nerve Regeneration in Response to Synthesized Nanofiber Scaffold Hydrogel. Life Sci. J. 2012, 9, 42–46. [66, 707, 1122, 751] reference_item 0.85 ["reference content label: 61. Meng, H.; Chen, R.Y.; Xu, L.N.; Li, W.C.; Chen, L.Y.; Zh"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
408 37 12 reference_content 62. Wu, X.; He, L.; Li, W.; Li, H.; Wong, W.M.; Ramakrishna, S.; Wu, W. Functional self-assembling peptide nanofiber hydrogel for peripheral nerve regeneration. Regen. Biomater. 2017, 4, 21–30. [Cross [66, 752, 1123, 797] reference_item 0.85 ["reference content label: 62. Wu, X.; He, L.; Li, W.; Li, H.; Wong, W.M.; Ramakrishna,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
409 37 13 reference_content 63. Yoshimatsu, M.; Nakamura, R.; Kishimoto, Y.; Yurie, H.; Hayashi, Y.; Kaba, S.; Ohnishi, H.; Yamashita, M.; Tateya, I.; Omori, K. Recurrent laryngeal nerve regeneration using a self-assembling pept [68, 799, 1123, 843] reference_item 0.85 ["reference content label: 63. Yoshimatsu, M.; Nakamura, R.; Kishimoto, Y.; Yurie, H.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
410 37 14 reference_content 64. McGrath, A.M.; Novikova, L.N.; Novikov, L.N.; Wiberg, M. BD PuraMatrix peptide hydrogel seeded with Schwann cells for peripheral nerve regeneration. Brain Res. Bull. 2010, 83, 207–213. [CrossRef] [68, 845, 1122, 889] reference_item 0.85 ["reference content label: 64. McGrath, A.M.; Novikova, L.N.; Novikov, L.N.; Wiberg, M."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
411 37 15 reference_content 65. Lai, C.S.E.; Leyva-Aranda, V.; Kong, V.H.; Lopez-Silva, T.L.; Farsheed, A.C.; Cristobal, C.D.; Swain, J.W.R.; Lee, H.K.; Hartgerink, J.D. A Combined Conduit-Bioactive Hydrogel Approach for Regener [67, 891, 1123, 957] reference_item 0.85 ["reference content label: 65. Lai, C.S.E.; Leyva-Aranda, V.; Kong, V.H.; Lopez-Silva, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
412 37 16 reference_content 66. Wei, G.J.; Yao, M.; Wang, Y.S.; Zhou, C.W.; Wan, D.Y.; Lei, P.Z.; Wen, J.; Lei, H.W.; Dong, D.M. Promotion of peripheral nerve regeneration of a peptide compound hydrogel scaffold. Int. J. Nanomed [67, 960, 1122, 1005] reference_item 0.85 ["reference content label: 66. Wei, G.J.; Yao, M.; Wang, Y.S.; Zhou, C.W.; Wan, D.Y.; L"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
413 37 17 reference_content 67. Pace, L.A.; Plate, J.F.; Mannava, S.; Barnwell, J.C.; Koman, L.A.; Li, Z.; Smith, T.L.; Van Dyke, M. A human hair keratin hydrogel scaffold enhances median nerve regeneration in nonhuman primates: [66, 1006, 1123, 1072] reference_item 0.85 ["reference content label: 67. Pace, L.A.; Plate, J.F.; Mannava, S.; Barnwell, J.C.; Ko"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
414 37 18 reference_content 68. Alizadeh, A.; Moradi, L.; Katebi, M.; Ai, J.; Azami, M.; Moradveisi, B.; Ostad, S.N. Delivery of injectable thermo-sensitive hydrogel releasing nerve growth factor for spinal cord regeneration in [66, 1075, 1122, 1119] reference_item 0.85 ["reference content label: 68. Alizadeh, A.; Moradi, L.; Katebi, M.; Ai, J.; Azami, M.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
415 37 19 reference_content 69. Shao, J.; Nie, P.; Yang, W.; Guo, R.; Ding, D.; Liang, R.; Wei, B.; Wei, H. An EPO-loaded multifunctional hydrogel synergizing with adipose-derived stem cells restores neurogenic erectile function [66, 1121, 1123, 1187] reference_item 0.85 ["reference content label: 69. Shao, J.; Nie, P.; Yang, W.; Guo, R.; Ding, D.; Liang, R"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
416 37 20 reference_content 70. Allbright, K.O.; Bliley, J.M.; Havis, E.; Kim, D.Y.; Dibernardo, G.A.; Grybowski, D.; Waldner, M.; James, I.B.; Sivak, W.N.; Rubin, J.P.; et al. Delivery of adipose-derived stem cells in poloxamer [66, 1190, 1122, 1257] reference_item 0.85 ["reference content label: 70. Allbright, K.O.; Bliley, J.M.; Havis, E.; Kim, D.Y.; Dib"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
417 37 21 reference_content 71. Li, R.; Li, Y.; Wu, Y.; Zhao, Y.; Chen, H.; Yuan, Y.; Xu, K.; Zhang, H.; Lu, Y.; Wang, J.; et al. Heparin-Poloxamer Thermosensitive Hydrogel Loaded with bFGF and NGF Enhances Peripheral Nerve Rege [67, 1260, 1123, 1325] reference_item 0.85 ["reference content label: 71. Li, R.; Li, Y.; Wu, Y.; Zhao, Y.; Chen, H.; Yuan, Y.; Xu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
418 37 22 reference_content 72. Meder, T.; Prest, T.; Skillen, C.; Marchal, L.; Yupanqui, V.T.; Soletti, L.; Gardner, P.; Cheetham, J.; Brown, B.N. Nerve-specific extracellular matrix hydrogel promotes functional regeneration fo [66, 1329, 1122, 1373] reference_item 0.85 ["reference content label: 72. Meder, T.; Prest, T.; Skillen, C.; Marchal, L.; Yupanqui"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
419 37 23 reference_content 73. Rao, Z.; Lin, T.; Qiu, S.; Zhou, J.; Liu, S.; Chen, S.; Wang, T.; Liu, X.; Zhu, Q.; Bai, Y.; et al. Decellularized nerve matrix hydrogel scaffolds with longitudinally oriented and size-tunable mic [65, 1375, 1122, 1441] reference_item 0.85 ["reference content label: 73. Rao, Z.; Lin, T.; Qiu, S.; Zhou, J.; Liu, S.; Chen, S.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
420 37 24 reference_content 74. Saffari, T.M.; Chan, K.; Saffari, S.; Zuo, K.J.; McGovern, R.M.; Reid, J.M.; Borschel, G.H.; Shin, A.Y. Combined local delivery of tacrolimus and stem cells in hydrogel for enhancing peripheral ne [66, 1443, 1124, 1510] reference_item 0.85 ["reference content label: 74. Saffari, T.M.; Chan, K.; Saffari, S.; Zuo, K.J.; McGover"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
421 38 0 header Materials 2024, 17, 3472 [68, 99, 237, 119] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
422 38 1 number 38 of 39 [1061, 103, 1121, 122] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
423 38 2 reference_content 75. Esaki, S.; Katsumi, S.; Hamajima, Y.; Nakamura, Y.; Murakami, S. Transplantation of Olfactory Stem Cells with Biodegradable Hydrogel Accelerates Facial Nerve Regeneration After Crush Injury. Stem [65, 177, 1121, 223] reference_item 0.85 ["reference content label: 75. Esaki, S.; Katsumi, S.; Hamajima, Y.; Nakamura, Y.; Mura"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
424 38 3 reference_content 76. Miao, D.; Li, Y.; Huang, Z.; Wang, Y.; Deng, M.; Li, X. Electroactive chitosan-aniline pentamer hydrogel for peripheral nerve regeneration. Front. Mater. Sci. 2022, 16, 11. [CrossRef] [67, 224, 1123, 268] reference_item 0.85 ["reference content label: 76. Miao, D.; Li, Y.; Huang, Z.; Wang, Y.; Deng, M.; Li, X. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
425 38 4 reference_content 77. Bu, Y.; Xu, H.X.; Li, X.; Xu, W.J.; Yin, Y.X.; Dai, H.L.; Wang, X.B.; Huang, Z.J.; Xu, P.H. A conductive sodium alginate and carboxymethyl chitosan hydrogel doped with polypyrrole for peripheral n [67, 270, 1123, 335] reference_item 0.85 ["reference content label: 77. Bu, Y.; Xu, H.X.; Li, X.; Xu, W.J.; Yin, Y.X.; Dai, H.L."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
426 38 5 reference_content 78. Lu, L.C.; Liu, X.F.; Yaszemski, M.J. Conductive Graphene Oxide Hydrogel Composites with Functionalized Surface for Nerve Regeneration. FASEB J. 2016, 30, 2. [CrossRef] [67, 339, 1122, 383] reference_item 0.85 ["reference content label: 78. Lu, L.C.; Liu, X.F.; Yaszemski, M.J. Conductive Graphene"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
427 38 6 reference_content 79. Xu, Y.; Liu, J.; Zhang, P.; Ao, X.; Li, Y.; Tian, Y.; Qiu, X.; Guo, J.; Hu, X. Zwitterionic Conductive Hydrogel-Based Nerve Guidance Conduit Promotes Peripheral Nerve Regeneration in Rats. ACS Bio [67, 385, 1122, 429] reference_item 0.85 ["reference content label: 79. Xu, Y.; Liu, J.; Zhang, P.; Ao, X.; Li, Y.; Tian, Y.; Qi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
428 38 7 reference_content 80. Wu, P.; Xu, C.; Zou, X.; Yang, K.; Xu, Y.; Li, X.; Li, X.; Wang, Z.; Luo, Z. Capacitive-Coupling-Responsive Hydrogel Scaffolds Offering Wireless In Situ Electrical Stimulation Promotes Nerve Regen [66, 430, 1121, 474] reference_item 0.85 ["reference content label: 80. Wu, P.; Xu, C.; Zou, X.; Yang, K.; Xu, Y.; Li, X.; Li, X"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
429 38 8 reference_content 81. Hui, T.; Wang, C.; Yu, L.; Zhou, C.; Qiu, M. Phosphorene hydrogel conduits as “neurotrophin reservoirs” for promoting regeneration of peripheral nerves. J. Mat. Chem. B 2023, 11, 3808–3815. [Cross [67, 477, 1123, 521] reference_item 0.85 ["reference content label: 81. Hui, T.; Wang, C.; Yu, L.; Zhou, C.; Qiu, M. Phosphorene"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
430 38 9 reference_content 82. Aghajanian, S.; Taghi Doulabi, A.; Akhbari, M.; Shams, A. Facial nerve regeneration using silicone conduits filled with ammonia-functionalized graphene oxide and frankincense-embedded hydrogel. In [68, 523, 1124, 566] reference_item 0.85 ["reference content label: 82. Aghajanian, S.; Taghi Doulabi, A.; Akhbari, M.; Shams, A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
431 38 10 reference_content 83. Liu, F.; Xu, J.; Liu, A.; Wu, L.; Wang, D.; Han, Q.; Zheng, T.; Wang, F.; Kong, Y.; Li, G.; et al. Development of a polyacrylamide/chitosan composite hydrogel conduit containing synergistic cues o [67, 569, 1124, 635] reference_item 0.85 ["reference content label: 83. Liu, F.; Xu, J.; Liu, A.; Wu, L.; Wang, D.; Han, Q.; Zhe"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
432 38 11 reference_content 84. Newman, K.D.; McLaughlin, C.R.; Carlsson, D.; Li, F.; Liu, Y.; Griffith, M. Bioactive hydrogel-filament scaffolds for nerve repair and regeneration. Int. J. Artif. Organs 2006, 29, 1082–1091. [Cro [67, 638, 1123, 682] reference_item 0.85 ["reference content label: 84. Newman, K.D.; McLaughlin, C.R.; Carlsson, D.; Li, F.; Li"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
433 38 12 reference_content 85. Hoveizi, E. Enhancement of nerve regeneration through schwann cell-mediated healing in a 3D printed polyacrylonitrile conduit incorporating hydrogel and graphene quantum dots: A study on rat sciat [67, 684, 1124, 750] reference_item 0.85 ["reference content label: 85. Hoveizi, E. Enhancement of nerve regeneration through sc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
434 38 13 reference_content 86. Berkovitch, Y.; Cohen, T.; Peled, E.; Schmidhammer, R.; Florian, H.; Teuschl, A.H.; Wolbank, S.; Yelin, D.; Redl, H.; Seliktar, D. Hydrogel composition and laser micropatterning to regulate sciati [66, 752, 1122, 819] reference_item 0.85 ["reference content label: 86. Berkovitch, Y.; Cohen, T.; Peled, E.; Schmidhammer, R.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
435 38 14 reference_content 87. Belkas, J.S.; Munro, C.A.; Shoichet, M.S.; Midha, R. Peripheral nerve regeneration through a synthetic hydrogel nerve tube. Restor. Neurol. Neuros 2005, 23, 19–29. [67, 822, 1123, 865] reference_item 0.85 ["reference content label: 87. Belkas, J.S.; Munro, C.A.; Shoichet, M.S.; Midha, R. Per"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
436 38 15 reference_content 88. Nemati Mahand, S.; Jahanmardi, R.; Kruppke, B.; Khonakdar, H.A. Sciatic nerve injury regeneration in adult male rats using gelatin methacrylate (GelMA)/poly(2-ethyl-2-oxazoline) (PEtOx) hydrogel c [66, 868, 1123, 934] reference_item 0.85 ["reference content label: 88. Nemati Mahand, S.; Jahanmardi, R.; Kruppke, B.; Khonakda"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
437 38 16 reference_content 89. Li, G.; Li, S.; Zhang, L.; Chen, S.; Sun, Z.; Li, S.; Zhang, L.; Yang, Y. Construction of Biofunctionalized Anisotropic Hydrogel Micropatterns and Their Effect on Schwann Cell Behavior in Peripher [66, 937, 1123, 1003] reference_item 0.85 ["reference content label: 89. Li, G.; Li, S.; Zhang, L.; Chen, S.; Sun, Z.; Li, S.; Zh"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
438 38 17 reference_content 90. Li, G.; Zhang, L.; Han, Q.; Zheng, T.; Wu, L.; Guan, W.; Sun, S.; Yang, Y. Photothermal responsive cell-laden PNIPAM self-rolling hydrogel containing dopamine enhanced MWCNTs for peripheral nerve [65, 1006, 1123, 1051] reference_item 0.85 ["reference content label: 90. Li, G.; Zhang, L.; Han, Q.; Zheng, T.; Wu, L.; Guan, W.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
439 38 18 reference_content 91. Magnaghi, V.; Conte, V.; Procacci, P.; Pivato, G.; Cortese, P.; Cavalli, E.; Pajardi, G.; Ranucci, E.; Fenili, F.; Manfredi, A.; et al. Biological performance of a novel biodegradable polyamidoami [66, 1052, 1123, 1118] reference_item 0.85 ["reference content label: 91. Magnaghi, V.; Conte, V.; Procacci, P.; Pivato, G.; Corte"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
440 38 19 reference_content 92. Kong, Y.; Zhao, Y.; Ji, B.; Shi, B.; Wei, S.; Chen, G.; Zhang, L.; Li, G.; Yang, Y. Preparation and Characterization of Polyacrylamide/Silk Fibroin/Graphene Oxide Composite Hydrogel for Peripheral [66, 1121, 1123, 1187] reference_item 0.85 ["reference content label: 92. Kong, Y.; Zhao, Y.; Ji, B.; Shi, B.; Wei, S.; Chen, G.; "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
441 38 20 reference_content 93. Yao, Z.; Yuan, W.; Xu, J.; Tong, W.; Mi, J.; Ho, P.C.; Chow, D.H.K.; Li, Y.; Yao, H.; Li, X.; et al. Magnesium-Encapsulated Injectable Hydrogel and 3D-Engineered Polycaprolactone Conduit Facilitat [66, 1189, 1123, 1257] reference_item 0.85 ["reference content label: 93. Yao, Z.; Yuan, W.; Xu, J.; Tong, W.; Mi, J.; Ho, P.C.; C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
442 38 21 reference_content 94. Cheong, H.; Jun, Y.-J.; Jeon, E.Y.; Lee, J.I.; Jo, H.J.; Park, H.Y.; Kim, E.; Rhie, J.W.; Joo, K.I.; Cha, H.J. Sutureless neurorrhaphy system using a macrophage-polarizing in situ visible light-cr [66, 1260, 1123, 1326] reference_item 0.85 ["reference content label: 94. Cheong, H.; Jun, Y.-J.; Jeon, E.Y.; Lee, J.I.; Jo, H.J.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
443 38 22 reference_content 95. Du, J.; Liu, J.; Yao, S.; Mao, H.; Peng, J.; Sun, X.; Cao, Z.; Yang, Y.; Xiao, B.; Wang, Y.; et al. Prompt peripheral nerve regeneration induced by a hierarchically aligned fibrin nanofiber hydrog [66, 1329, 1122, 1373] reference_item 0.85 ["reference content label: 95. Du, J.; Liu, J.; Yao, S.; Mao, H.; Peng, J.; Sun, X.; Ca"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
444 38 23 reference_content 96. Huang, Q.; Cai, Y.; Yang, X.; Li, W.; Pu, H.; Liu, Z.; Liu, H.; Tamtaji, M.; Xu, F.; Sheng, L.; et al. Graphene foam/hydrogel scaffolds for regeneration of peripheral nerve using ADSCs in a diabet [66, 1375, 1120, 1420] reference_item 0.85 ["reference content label: 96. Huang, Q.; Cai, Y.; Yang, X.; Li, W.; Pu, H.; Liu, Z.; L"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
445 38 24 reference_content 97. Huang, Q.; Cai, Y.; Zhang, X.; Liu, J.; Liu, Z.; Li, B.; Wong, H.; Xu, F.; Sheng, L.; Sun, D.; et al. Aligned Graphene Mesh-Supported Double Network Natural Hydrogel Conduit Loaded with Netrin-1 f [67, 1421, 1120, 1487] reference_item 0.85 ["reference content label: 97. Huang, Q.; Cai, Y.; Zhang, X.; Liu, J.; Liu, Z.; Li, B.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
446 38 25 reference_content 98. Katayama, Y.; Montenegro, R.; Freier, T.; Midha, R.; Belkas, J.S.; Shoichet, M.S. Coil-reinforced hydrogel tubes promote nerve regeneration equivalent to that of nerve autografts. Biomaterials 200 [67, 1490, 1120, 1535] reference_item 0.85 ["reference content label: 98. Katayama, Y.; Montenegro, R.; Freier, T.; Midha, R.; Bel"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
447 39 0 header Materials 2024, 17, 3472 [68, 99, 237, 118] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
448 39 1 number 39 of 39 [1061, 104, 1121, 122] reference_item 0.9 ["page number label"] noise 0.9 reference_zone reference_like reference_numeric_dot True True
449 39 2 reference_content 99. Zhang, H.; Xu, J. The effects of GelMA hydrogel on nerve repair and regeneration in mice with spinal cord injury. Ann. Transl. Med. 2021, 9, 1147. [CrossRef] [66, 178, 1122, 221] reference_item 0.85 ["reference content label: 99. Zhang, H.; Xu, J. The effects of GelMA hydrogel on nerve"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
450 39 3 reference_content 100. Maiti, B.; Diaz Diaz, D. 3D Printed Polymeric Hydrogels for Nerve Regeneration. Polymers 2018, 10, 1041. [CrossRef] [69, 224, 1039, 246] reference_item 0.85 ["reference content label: 100. Maiti, B.; Diaz Diaz, D. 3D Printed Polymeric Hydrogels"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
451 39 4 reference_content 101. Politron-Zepeda, G.A.; Fletes-Vargas, G.; Rodriguez-Rodriguez, R. Injectable Hydrogels for Nervous Tissue Repair—A Brief Review. Gels 2024, 10, 190. [CrossRef] [PubMed] [70, 248, 1122, 290] reference_item 0.85 ["reference content label: 101. Politron-Zepeda, G.A.; Fletes-Vargas, G.; Rodriguez-Rod"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
452 39 5 reference_content 102. Song, J.; Lv, B.; Chen, W.; Shen, C.; Ding, P. Advances of GelMA-Based Hydrogel in Nerve Repair and Regeneration. Nano Life 2024, 14, 22. [CrossRef] [68, 293, 1121, 336] reference_item 0.85 ["reference content label: 102. Song, J.; Lv, B.; Chen, W.; Shen, C.; Ding, P. Advances"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
453 39 6 reference_content 103. Xu, W.; Wu, Y.; Lu, H.; Zhu, Y.; Ye, J.; Yang, W. Sustained delivery of vascular endothelial growth factor mediated by bioactive methacrylic anhydride hydrogel accelerates peripheral nerve regene [68, 339, 1122, 405] reference_item 0.85 ["reference content label: 103. Xu, W.; Wu, Y.; Lu, H.; Zhu, Y.; Ye, J.; Yang, W. Susta"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
454 39 7 reference_content 104. Chen, S.H.; Kao, H.K.; Wun, J.R.; Chou, P.Y.; Chen, Z.Y.; Chen, S.H.; Hsieh, S.T.; Fang, H.W.; Lin, F.H. Thermosensitive hydrogel carrying extracellular vesicles from adipose-derived stem cells p [68, 408, 1122, 474] reference_item 0.85 ["reference content label: 104. Chen, S.H.; Kao, H.K.; Wun, J.R.; Chou, P.Y.; Chen, Z.Y"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
455 39 8 reference_content 105. Martin, B.C.; Minner, E.J.; Wiseman, S.L.; Klank, R.L.; Gilbert, R.J. Agarose and methylcellulose hydrogel blends for nerve regeneration applications. J. Neural Eng. 2008, 5, 221–231. [CrossRef] [70, 477, 1121, 520] reference_item 0.85 ["reference content label: 105. Martin, B.C.; Minner, E.J.; Wiseman, S.L.; Klank, R.L.;"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
456 39 9 reference_content 106. Conovaloff, A.; Panitch, A. Characterization of a chondroitin sulfate hydrogel for nerve root regeneration. J. Neural Eng. 2011, 8, 056003. [CrossRef] [70, 523, 1122, 566] reference_item 0.85 ["reference content label: 106. Conovaloff, A.; Panitch, A. Characterization of a chond"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
457 39 10 text Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI [66, 597, 1123, 669] backmatter_body 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 support_like none True True

View file

@ -0,0 +1,323 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,iScience,"[112, 80, 350, 137]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,header_image,,"[924, 98, 1092, 156]",non_body_insert,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,False
1,2,text,Article,"[110, 199, 232, 239]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,frontmatter_main_zone,support_like,short_fragment,False,False
1,3,doc_title,MSdb: An integrated expression atlas of human musculoskeletal system,"[110, 244, 1049, 346]",paper_title,0.8,"[""page-1 zone title_zone: MSdb: An integrated expression atlas of human musculoskeleta""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,4,paragraph_title,MSdb An integrated expression atlas of human musculoskeletal system ① Data collection,"[157, 436, 779, 553]",section_heading,0.5,"[""unnumbered paragraph_title on page 1 outside title zone: MSdb An integrated expression atlas of human musculoskeletal""]",section_heading,0.5,body_zone,unknown_like,none,True,True
1,5,footer,,"[157, 527, 311, 553]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,unknown_like,empty,False,False
1,6,image,,"[169, 563, 459, 770]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,7,image,,"[496, 561, 566, 630]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,8,vision_footnote,Bulk RNA-seq,"[490, 638, 567, 655]",footnote,0.7,"[""vision_footnote label: Bulk RNA-seq""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,9,text,"3
Data Types","[500, 672, 566, 712]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,reference_like,reference_numeric_dot,False,False
1,10,image,,"[608, 561, 679, 629]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,11,text,"6
Tissue Types","[497, 723, 569, 764]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,reference_like,reference_numeric_dot,False,False
1,12,vision_footnote,microRNA-seq,"[602, 638, 680, 655]",footnote,0.7,"[""vision_footnote label: microRNA-seq""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,13,text,"33
Diseases","[622, 670, 672, 712]",figure_inner_text,0.88,"[""short figure-adjacent label; treated as figure_inner_text""]",figure_inner_text,0.88,body_zone,reference_like,reference_numeric_dot,True,True
1,14,image,,"[722, 561, 794, 629]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,15,text,126 Projects,"[621, 721, 669, 764]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,reference_like,reference_numeric_dot,False,False
1,16,vision_footnote,Single-cell RNA-seq,"[699, 638, 806, 655]",footnote,0.7,"[""vision_footnote label: Single-cell RNA-seq""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,17,text,"3,610 Datasets","[730, 669, 786, 711]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,unknown_like,short_fragment,False,False
1,18,text,"2,833,779 Single cells","[710, 720, 806, 764]",frontmatter_noise,0.7,"[""keyword-like block: 2,833,779 Single cells""]",frontmatter_noise,0.7,body_zone,unknown_like,none,False,False
1,19,paragraph_title,② Database construction,"[157, 801, 375, 826]",section_heading,0.5,"[""unnumbered paragraph_title on page 1 outside title zone: \u2461 Database construction""]",section_heading,0.5,body_zone,unknown_like,none,True,True
1,20,image,,"[152, 841, 485, 1112]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,21,vision_footnote,Database,"[399, 945, 459, 964]",footnote,0.7,"[""vision_footnote label: Database""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,22,vision_footnote,Bioinfomatician,"[164, 1092, 256, 1111]",footnote,0.7,"[""vision_footnote label: Bioinfomatician""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,23,vision_footnote,Online access,"[391, 1094, 476, 1110]",footnote,0.7,"[""vision_footnote label: Online access""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,24,paragraph_title,③ Database functions,"[505, 802, 694, 826]",section_heading,0.5,"[""unnumbered paragraph_title on page 1 outside title zone: \u2462 Database functions""]",section_heading,0.5,body_zone,unknown_like,none,True,True
1,25,image,,"[540, 851, 641, 937]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,26,vision_footnote,Browsing,"[563, 946, 620, 965]",footnote,0.7,"[""vision_footnote label: Browsing""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,27,image,,"[700, 849, 806, 941]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,28,image,,"[531, 988, 648, 1086]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,29,vision_footnote,Visualization,"[715, 946, 792, 964]",footnote,0.7,"[""vision_footnote label: Visualization""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,30,vision_footnote,Analysis,"[565, 1093, 618, 1111]",footnote,0.7,"[""vision_footnote label: Analysis""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,31,image,,"[695, 988, 811, 1083]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
1,32,vision_footnote,Integration,"[722, 1093, 786, 1111]",footnote,0.7,"[""vision_footnote label: Integration""]",footnote,0.7,body_zone,unknown_like,short_fragment,True,True
1,33,text,"Ruonan Tian, Ziwei Xue, Dengfeng Ruan, ..., Hongwei Ouyang, Wanlu Liu, Junxin Lin","[906, 424, 1080, 556]",authors,0.8,"[""page-1 zone author_zone: Ruonan Tian, Ziwei Xue, Dengfeng Ruan, ..., Hongwei Ouyang, ""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,34,text,"hwoy@zju.edu.cn (H.O.)
wanluliu@intl.zju.edu.cn (W.L.)
linjunxin@zju.edu.cn (J.L.)","[907, 573, 1079, 631]",frontmatter_noise,0.85,"[""contact/email: hwoy@zju.edu.cn (H.O.)\nwanluliu@intl.zju.edu.cn (W.L.)\nlinju""]",frontmatter_noise,0.85,body_zone,body_like,none,False,False
1,35,text,"Highlights
A comprehensive database for human musculoskeletal system gene expression data","[907, 645, 1065, 746]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
1,36,text,Systematically sorted metadata facilitate the reuse of public data,"[907, 767, 1058, 830]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
1,37,text,Various online analysis functionalities improve the data mining efficiency,"[906, 851, 1080, 914]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
1,38,text,"Tian et al., iScience 26, 106933
June 16, 2023 © 2023 The Author(s).
https://doi.org/10.1016/j.isci.2023.106933","[905, 1363, 1080, 1450]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Tian et al., iScience 26, 106933\nJune 16, 2023 \u00a9 2023 The Au""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,39,number,©,"[119, 1502, 144, 1523]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,unknown_like,short_fragment,False,False
2,0,header,iScience,"[110, 90, 294, 135]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,header_image,,"[924, 98, 1092, 155]",non_body_insert,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,body_like,empty,False,False
2,2,text,Article,"[110, 200, 207, 228]",non_body_insert,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,False
2,3,doc_title,"MSdb: An integrated expression
atlas of human musculoskeletal system","[110, 230, 801, 318]",paper_title,0.8,"[""page-1 zone title_zone: MSdb: An integrated expression\natlas of human musculoskeleta""]",paper_title,0.8,body_zone,body_like,none,True,True
2,4,text,"Ruonan Tian, $ ^{1,2,8} $ Ziwei Xue, $ ^{1,2,8} $ Dengfeng Ruan, $ ^{1,3,8} $ Pengwei Chen, $ ^{1} $ Yiwen Xu, $ ^{1,3} $ Chao Dai, $ ^{1} $ Weiliang Shen, $ ^{3,4,5,6} $ Hongwei Ouyang, $ ^{1,3,4,5,6","[109, 340, 1091, 397]",unknown_structural,0.8,"[""page-1 zone author_zone: Ruonan Tian, $ ^{1,2,8} $ Ziwei Xue, $ ^{1,2,8} $ Dengfeng R""]",authors,0.8,body_zone,body_like,none,False,True
2,5,paragraph_title,SUMMARY,"[110, 425, 213, 448]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: SUMMARY""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
2,6,abstract,"The global prevalence and burden of musculoskeletal (MSK) disorders are immense. Advancements in next-generation sequencing (NGS) have generated vast amounts of data, accelerating the research of path","[110, 451, 878, 838]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,body_zone,body_like,none,True,True
2,7,paragraph_title,INTRODUCTION,"[111, 864, 260, 886]",section_heading,0.9,"[""explicit scholarly heading: INTRODUCTION""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
2,8,text,"The rising burden of musculoskeletal (MSK) disorders constitutes one of the major global health challenges. In 2019, over 1600 million adults throughout the world were estimated to have a condition th","[108, 892, 877, 1026]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,9,text,"In the past decades, scientists have been devoted to understand the mechanisms of MSK disorders and development in order to develop effective therapeutic, regenerative or rehabilitative treatments. $ ","[109, 1045, 877, 1377]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,10,text,"Although the majority of these valuable NGS datasets might be easily accessed from public databases (such as GEO and EMBL-EBI), there are a number of obstacles that prevent their use: (1) inconsistent","[109, 1396, 878, 1464]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,11,footnote," $ ^{1} $Zhejiang University-University of Edinburgh Institute, Zhejiang University School of Medicine, Hangzhou, Zhejiang 310058, China","[918, 566, 1089, 665]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{1} $Zhejiang University-University of Edinburgh Institut""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,12,text," $ ^{2} $Future Health Laboratory, Innovation Center of Yangtze River Delta, Zhejiang University, Jiaxing, Zhejiang 314100, China","[918, 670, 1092, 751]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{2} $Future Health Laboratory, Innovation Center of Yangt""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,13,text," $ ^{3} $Dr. Li Dak Sum & Yip Yio Chin Center for Stem Cells and Regenerative Medicine, and Department of Orthopedic Surgery of the Second Affiliated Hospital, Zhejiang University School of Medicine, ","[918, 757, 1092, 903]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{3} $Dr. Li Dak Sum & Yip Yio Chin Center for Stem Cells ""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,14,footnote," $ ^{4} $Department of Sports Medicine, Zhejiang University School of Medicine, Hangzhou, Zhejiang 310058, China","[918, 908, 1093, 990]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{4} $Department of Sports Medicine, Zhejiang University S""]",affiliation,0.8,body_zone,body_like,affiliation_marker,True,True
2,15,footnote," $ ^{5} $Key Laboratory of Tissue Engineering and Regenerative Medicine of Zhejiang Province, Hangzhou, Zhejiang 310058, China","[918, 994, 1088, 1092]",footnote,0.7,"[""footnote label: $ ^{5} $Key Laboratory of Tissue Engineering and Regenerativ""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
2,16,footnote," $ ^{6} $China Orthopedic Regenerative Medicine Group (CORMed), Hangzhou, Zhejiang 310058, China","[918, 1096, 1088, 1178]",footnote,0.7,"[""footnote label: $ ^{6} $China Orthopedic Regenerative Medicine Group (CORMed""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
2,17,text,"7Alibaba-Zhejiang University Joint Research Center of Future Digital Healthcare, Zhejiang University, Hangzhou, Zhejiang 310058, China","[918, 1184, 1089, 1280]",non_body_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
2,18,footnote, $ ^{8} $These authors contributed equally,"[919, 1285, 1083, 1320]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: $ ^{8} $These authors contributed equally""]",frontmatter_noise,0.8,body_zone,body_like,affiliation_marker,False,False
2,19,footnote, $ ^{9} $Lead contact,"[919, 1323, 1006, 1342]",footnote,0.7,"[""footnote label: $ ^{9} $Lead contact""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
2,20,footnote,"*Correspondence:
hwoy@zju.edu.cn (H.O.),
wanluliu@intl.zju.edu.cn (W.L.),
linjunxin@zju.edu.cn (J.L.)
https://doi.org/10.1016/j.isci.2023.106933","[917, 1349, 1085, 1467]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: *Correspondence:\nhwoy@zju.edu.cn (H.O.),\nwanluliu@intl.zju.e""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
2,21,footer_image,,"[113, 1499, 148, 1532]",non_body_insert,0.2,"[""unrecognized label 'footer_image'""]",unknown_structural,0.2,body_zone,unknown_like,empty,False,False
2,22,footer,"iScience 26, 106933, June 16, 2023 © 2023 The Author(s).","[682, 1512, 1049, 1530]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,23,footer,This is an open access article under the CC BY-NC-ND license (http://creativecommons.org/licenses/by-nc-nd/4.0/).,"[324, 1527, 1050, 1545]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,24,number,1,"[1080, 1513, 1090, 1530]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,0,header_image,,"[0, 81, 90, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,unknown_like,empty,False,True
3,1,header_image,,"[114, 99, 281, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,body_like,empty,False,True
3,2,header,"iScience
Article","[963, 101, 1092, 163]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,3,text,"datasets are often in raw data format, which may result in difficulties in data mining and analysis for researchers without sufficient computational powers and bioinformatics skills, (3) even if the p","[109, 204, 877, 291]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,4,text,"Therefore, we propose that a carefully curated NGS database created specifically for the field of orthopedic research will greatly benefit clinical and wet lab researchers. To this end, we developed t","[109, 312, 877, 445]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,paragraph_title,RESULTS,"[111, 469, 195, 489]",section_heading,0.9,"[""explicit scholarly heading: RESULTS""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
3,6,paragraph_title,Overview of MSdb,"[111, 495, 273, 515]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Overview of MSdb""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
3,7,text,"We developed the human musculoskeletal system database (MSdb), an integrated expression atlas specifically for the human MSK system, containing 33 diseases, 126 projects, 3,398 transcriptomes, and mic","[109, 521, 877, 742]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,8,text,MSdb enables users to retrieve sample information via consistent and validated metadata curated by orthopedists and bioinformatics scientists (Table S1). Users can search the database using multiple p,"[109, 762, 877, 917]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,9,paragraph_title,Transcriptome and miRNAome modules of MSdb,"[110, 940, 518, 960]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Transcriptome and miRNAome modules of MSdb""]",subsection_heading,0.6,body_zone,body_like,none,True,True
3,10,text,"At bulk level, MSdb integrates information at two aspects: (i) cross-tissue integration and (ii) cross-omics integration. For cross-tissue integration, samples were initially integrated by projects to","[110, 965, 878, 1471]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,11,number,2,"[113, 1513, 126, 1529]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,12,footer,"iScience 26, 106933, June 16, 2023","[155, 1512, 380, 1531]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,0,header,"iScience
Article","[110, 101, 241, 163]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,header_image,,"[924, 99, 1092, 155]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,body_like,empty,False,True
4,2,figure_title,A,"[199, 206, 217, 225]",figure_inner_text,0.9,"[""panel label / figure inner text: A""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,3,image,,"[244, 220, 451, 332]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,4,vision_footnote,"Data were collected, and manually curated by Orthopedist and Bioinformatics Scientists.","[244, 334, 452, 361]",structured_insert,0.7,"[""vision_footnote label: Data were collected, and manually curated by Orthopedist and""]",footnote,0.7,body_zone,body_like,none,False,False
4,5,paragraph_title,Visualization,"[241, 395, 355, 422]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Visualization""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,False,False
4,6,image,,"[241, 430, 448, 510]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,7,vision_footnote,"mRNA-seq, miRNA-seq, scRNA-seq expression by tissues, diseases, and cell subtypes/clusters","[233, 517, 452, 545]",structured_insert,0.7,"[""vision_footnote label: mRNA-seq, miRNA-seq, scRNA-seq expression by tissues, diseas""]",footnote,0.7,body_zone,body_like,none,False,False
4,8,vision_footnote,MSdb Human musculoskeletal system database,"[531, 226, 716, 256]",structured_insert,0.7,"[""vision_footnote label: MSdb Human musculoskeletal system database""]",footnote,0.7,body_zone,body_like,none,False,False
4,9,image,,"[494, 271, 734, 453]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,False,False
4,10,vision_footnote,"3,610 Datasets","[648, 466, 699, 498]",footnote,0.7,"[""vision_footnote label: 3,610 Datasets""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
4,11,vision_footnote,"2,833,779 Single-cells","[633, 505, 712, 537]",footnote,0.7,"[""vision_footnote label: 2,833,779 Single-cells""]",footnote,0.7,body_zone,body_like,none,True,True
4,12,paragraph_title,Integration,"[787, 217, 880, 240]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Integration""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,False,False
4,13,image,,"[793, 254, 992, 332]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
4,14,vision_footnote,"Cross-samples integration for mRNA-seq, miRNA-seq, and scRNA-seq data.","[797, 334, 987, 360]",footnote,0.7,"[""vision_footnote label: Cross-samples integration for mRNA-seq, miRNA-seq, and scRNA""]",footnote,0.7,body_zone,body_like,none,True,True
4,15,paragraph_title,Analysis,"[788, 396, 868, 422]",structured_insert_candidate,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Analysis""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,False,False
4,16,image,,"[779, 398, 998, 542]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
4,17,vision_footnote,"Gene-gene network analysis for tissues, and diseases and user-defined DEG calling.","[784, 518, 988, 544]",footnote,0.7,"[""vision_footnote label: Gene-gene network analysis for tissues, and diseases and use""]",footnote,0.7,body_zone,body_like,none,True,True
4,18,figure_title,B,"[196, 573, 212, 592]",figure_inner_text,0.9,"[""panel label / figure inner text: B""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,19,paragraph_title,Gene expression atlas,"[244, 579, 393, 596]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Gene expression atlas""]",subsection_heading,0.6,body_zone,body_like,none,False,False
4,20,image,,"[215, 606, 406, 881]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,21,paragraph_title,C microRNA expression atlas,"[426, 577, 634, 596]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: C microRNA expression atlas""]",subsection_heading,0.6,body_zone,body_like,none,False,False
4,22,image,,"[435, 607, 633, 883]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,23,image,,"[217, 888, 406, 1100]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,24,vision_footnote,"Craniosynostosis
Degenerative spine disease
Myotonic dystrophy
Osteoarthritis","[217, 1104, 311, 1164]",structured_insert,0.7,"[""vision_footnote label: Craniosynostosis\nDegenerative spine disease\nMyotonic dystrop""]",footnote,0.7,body_zone,body_like,none,False,False
4,25,vision_footnote,"Osteoporosis
Osteosarcoma
Rheumatoid arthritis
Rotator cuff tear
Others","[325, 1104, 421, 1167]",structured_insert,0.7,"[""vision_footnote label: Osteoporosis\nOsteosarcoma\nRheumatoid arthritis\nRotator cuff ""]",footnote,0.7,body_zone,body_like,none,False,False
4,26,image,,"[458, 921, 566, 1004]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,False,False
4,27,image,,"[438, 1009, 548, 1098]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,28,figure_title,D,"[645, 574, 661, 592]",figure_inner_text,0.9,"[""panel label / figure inner text: D""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
4,29,vision_footnote,"Amyotrophic lateral sclerosis
Chondrosarcoma
Multiple sclerosis
Osteoarthritis
Osteochondroma","[440, 1101, 534, 1176]",structured_insert,0.7,"[""vision_footnote label: Amyotrophic lateral sclerosis\nChondrosarcoma\nMultiple sclero""]",footnote,0.7,body_zone,body_like,none,False,False
4,30,image,,"[216, 1176, 405, 1391]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,31,vision_footnote,"Osteoporosis
Osteosarcoma
Rheumatoid arthritis
Others","[549, 1103, 643, 1151]",structured_insert,0.7,"[""vision_footnote label: Osteoporosis\nOsteosarcoma\nRheumatoid arthritis\nOthers""]",footnote,0.7,body_zone,body_like,none,False,False
4,32,paragraph_title,Differential expression analysis,"[734, 578, 940, 596]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Differential expression analysis""]",subsection_heading,0.6,body_zone,body_like,none,False,False
4,33,image,,"[437, 1199, 633, 1391]",structured_insert,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,False,False
4,34,chart,,"[661, 600, 862, 782]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
4,35,chart,,"[863, 605, 1009, 776]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
4,36,chart,,"[661, 793, 864, 964]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
4,37,chart,,"[863, 789, 1009, 959]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
4,38,paragraph_title,microRNA-gene network analysis,"[727, 976, 947, 993]",structured_insert_candidate,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: microRNA-gene network analysis""]",subsection_heading,0.6,body_zone,body_like,none,False,False
4,39,image,,"[670, 1007, 1002, 1393]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
4,40,footer,"iScience 26, 106933, June 16, 2023","[826, 1511, 1050, 1531]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
4,41,number,3,"[1079, 1512, 1092, 1530]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,0,header_image,,"[0, 81, 90, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,unknown_like,empty,False,True
5,1,header_image,,"[113, 100, 281, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,body_like,empty,False,True
5,2,header,"iScience
Article","[963, 101, 1092, 162]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,3,paragraph_title,Figure 1. MSdb framework and illustrative data analysis,"[110, 203, 504, 222]",figure_caption,0.9,"[""figure prefix matched: Figure 1. MSdb framework and illustrative data analysis""]",figure_caption,0.9,display_zone,legend_like,figure_number,True,True
5,4,text,"(A) Overview of MSdb.MSdb is a comprehensive database of next-generation sequencing data on human musculoskeletal system tissues and cells, enhanced with manually curated patient phenotypes, advanced ","[110, 223, 1059, 262]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,5,text,"(B) UMAP plots showing gene expression atlas in MSdb. All gene expression data in MSdb were used for clustering. Samples are colored by tissue types (top), diseases (middle), and COL3A1 expression lev","[110, 264, 1091, 302]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,6,text,"(C) UMAP plots showing microRNA expression atlas in MSdb. All microRNA expression data in MSdb were used for clustering. Samples are colored by tissue types (top), diseases (middle), and miR-4649-5p e","[111, 303, 1092, 341]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,text,(D) Volcano plots and boxplots showing dysregulated genes (top) or microRNAs (bottom) between healthy (n = 3) and degenerative (n = 3) intervertebral disks. RPKM: reads per kilobase per million mapped,"[111, 343, 1092, 381]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,8,text,(E) microRNA-gene interaction network built with down-regulated microRNAs and up-regulated genes in degenerative intervertebral disks. Red dots represent the microRNAs and gray dots represent the gene,"[110, 384, 1069, 421]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,text,"to counteract disk degeneration. Collectively, MSdb offers users with integrated expression atlas and useful data analysis functionalities to understand gene function and regulation in homeostasis and","[109, 447, 875, 490]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,10,paragraph_title,Single-cell transcriptome module of MSdb,"[110, 515, 461, 536]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Single-cell transcriptome module of MSdb""]",subsection_heading,0.6,body_zone,body_like,none,True,True
5,11,text,"The advent of single-cell technology has enabled researchers to uncover new biological insights compared to bulk RNA-seq. Intriguingly, MSdb contains a wealth of single-cell RNA sequencing (scRNA-seq)","[109, 541, 878, 805]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,12,text,We also implemented an in-house variational autoencoder (VAE)-based deep-learning framework (scVAE) to facilitate the integrative analysis for scRNA-seq datasets from different studies. In line with a,"[110, 825, 878, 1287]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,13,paragraph_title,DISCUSSION,"[111, 1310, 228, 1331]",section_heading,0.9,"[""explicit scholarly heading: DISCUSSION""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
5,14,text,"Musculoskeletal conditions, including RA, osteoarthritis, low back pain, fractures, amputation, and other injuries, affect people of all ages everywhere around the world. $ ^{1} $ In recent years, vas","[109, 1338, 877, 1470]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,15,number,4,"[113, 1514, 125, 1529]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,16,footer,"iScience 26, 106933, June 16, 2023","[155, 1511, 380, 1531]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
6,0,header,"iScience
Article","[110, 101, 241, 163]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,header_image,,"[924, 99, 1092, 155]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,body_like,empty,False,True
6,2,figure_title,A,"[112, 205, 132, 224]",figure_inner_text,0.9,"[""panel label / figure inner text: A""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,3,figure_title,B,"[682, 205, 696, 224]",figure_inner_text,0.9,"[""panel label / figure inner text: B""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,4,image,,"[118, 198, 1093, 1006]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
6,5,figure_title,C,"[114, 589, 129, 608]",figure_inner_text,0.9,"[""panel label / figure inner text: C""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,6,figure_title,D,"[682, 589, 698, 610]",figure_inner_text,0.9,"[""panel label / figure inner text: D""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,7,figure_title,"Figure 2. Integrated analysis of scRNA-seq data of synovial tissues-derived cells from OA, RA, UA and healthy patients","[110, 1026, 933, 1045]",figure_caption,0.92,"[""figure_title label: Figure 2. Integrated analysis of scRNA-seq data of synovial ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,8,vision_footnote,"(A) UMAP plots showing clustering of 101,610 cells from healthy, osteoarthritis, rheumatoid arthritis, and undifferentiated arthritis patients. Cells are colored by cell types.","[110, 1046, 1092, 1085]",footnote,0.7,"[""vision_footnote label: (A) UMAP plots showing clustering of 101,610 cells from heal""]",footnote,0.7,body_zone,body_like,none,True,True
6,9,text,"(B) UMAP plots showing clustering of 101,610 cells from healthy, osteoarthritis, rheumatoid arthritis, and undifferentiated arthritis patients. Cells are colored by diseases.","[109, 1086, 1091, 1125]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,10,text,(C) Violin plots showing marker gene expression of each cell type.,"[112, 1125, 537, 1146]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,11,text,(D) Scatterplot showing the expression level of genes specifically expressed in RA- or OA-derived fibroblasts. Cells are colored by the expression of the indicated genes.,"[110, 1146, 1085, 1185]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,12,text,"containing comprehensive information for public bulk RNA-Seq, microRNA-seq, and single-cell RNA-seq datasets related to human musculoskeletal system development and disease. It provides initial analys","[110, 1229, 877, 1339]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,13,text,"Overall, MSdb is a resource created for the MSK research community and aims to fulfill the findability, accessibility, interoperability, and reusability (FAIR) principles of scholarly data. $ ^{30} $ ","[109, 1359, 877, 1470]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,14,footer,"iScience 26, 106933, June 16, 2023","[825, 1512, 1050, 1531]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
6,15,number,5,"[1080, 1513, 1092, 1529]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,0,header_image,,"[0, 81, 90, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,unknown_like,empty,False,True
7,1,header_image,,"[114, 99, 281, 155]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,body_like,empty,False,True
7,2,header,"iScience
Article","[963, 101, 1092, 163]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,3,paragraph_title,Limitations of the study,"[111, 204, 313, 224]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Limitations of the study""]",subsection_heading,0.6,body_zone,body_like,none,True,True
7,4,text,"The current study presents certain limitations that warrant discussion. Firstly, MSdb contains only the bulk RNA-seq, microRNA-seq and scRNA-Seq datasets, and has not collected other omics, such as ge","[109, 230, 878, 493]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,5,paragraph_title,STAR★METHODS,"[111, 527, 270, 547]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: STAR\u2605METHODS""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
7,6,text,Detailed methods are provided in the online version of this paper and include the following:,"[110, 554, 787, 576]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,7,text,KEY RESOURCES TABLE,"[134, 590, 342, 610]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
7,8,text,● RESOURCE AVAILABILITY,"[137, 614, 352, 633]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,9,text,☐ Lead contact,"[151, 635, 277, 654]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
7,10,text,○ Materials availability,"[154, 658, 329, 676]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,11,text,☐ Data and code availability,"[153, 679, 370, 698]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,12,text,● METHOD DETAILS,"[136, 701, 300, 720]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
7,13,text,☐ Data collection and meta information curation,"[153, 722, 517, 742]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,14,text,○ Bulk RNA-seq and microRNA-seq processing and data analysis,"[153, 744, 637, 765]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,15,text,○ Single cell RNA-seq data processing,"[153, 767, 446, 786]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,16,text,O Integrated scRNA-seq data analysis,"[153, 789, 441, 808]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,17,text,○ Website development,"[154, 811, 343, 830]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,18,paragraph_title,SUPPLEMENTAL INFORMATION,"[111, 865, 398, 886]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: SUPPLEMENTAL INFORMATION""]",backmatter_boundary_candidate,0.5,body_zone,body_like,none,True,True
7,19,text,Supplemental information can be found online at https://doi.org/10.1016/j.isci.2023.106933.,"[110, 893, 783, 915]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,20,paragraph_title,ACKNOWLEDGMENTS,"[111, 949, 316, 970]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: ACKNOWLEDGMENTS""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
7,21,text,"The authors would like to thank all researchers who generated the data sets that are collected, analyzed, and displayed in MSdb. We thank Dr. Xiao Chen, Dr. Zi Yin, Dr. Wenyan Zhou, Dr. Can Zhang, Dr.","[109, 977, 877, 1152]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,22,paragraph_title,AUTHOR CONTRIBUTIONS,"[110, 1186, 349, 1208]",section_heading,0.6,"[""unnumbered paragraph_title, inferred level section_heading: AUTHOR CONTRIBUTIONS""]",section_heading,0.6,body_zone,support_like,none,True,True
7,23,text,"J.L., W.L., H.O., and W.S. conceived the study and designed database. R.T., P.C., C.D., and J.L. collected and processed the data. R.T., D.R., Y.X., and J.L. curated the metadata. R.T. and Z.X. develo","[109, 1214, 878, 1302]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,24,paragraph_title,DECLARATION OF INTERESTS,"[111, 1336, 379, 1357]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: DECLARATION OF INTERESTS""]",backmatter_boundary_candidate,0.5,body_zone,body_like,none,True,True
7,25,text,The authors declare no competing interests.,"[111, 1364, 439, 1386]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,26,paragraph_title,INCLUSION AND DIVERSITY,"[111, 1419, 363, 1440]",section_heading,0.6,"[""unnumbered paragraph_title, inferred level section_heading: INCLUSION AND DIVERSITY""]",section_heading,0.6,body_zone,body_like,none,True,True
7,27,text,"We support inclusive, diverse, and equitable conduct of research.","[110, 1447, 591, 1469]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,28,number,6,"[113, 1514, 125, 1529]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,29,footer,"iScience 26, 106933, June 16, 2023","[156, 1512, 379, 1531]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
8,0,header,"iScience
Article","[111, 102, 241, 163]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,header_image,,"[924, 98, 1091, 155]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,body_zone,body_like,empty,False,True
8,2,text,"Received: December 13, 2022
Revised: April 26, 2023
Accepted: May 16, 2023
Published: May 18, 2023","[111, 203, 352, 298]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,3,paragraph_title,REFERENCES,"[112, 331, 221, 350]",reference_heading,0.9,"[""references heading: REFERENCES""]",reference_heading,0.9,reference_zone,unknown_like,short_fragment,True,True
8,4,reference_content,"1. Cieza, A., Causey, K., Kamenov, K., Hanson, S.W., Chatterji, S., and Vos, T. (2021). Global estimates of the need for rehabilitation based on the global burden of disease study 2019: a systematic a","[121, 354, 419, 481]",reference_item,0.85,"[""reference content label: 1. Cieza, A., Causey, K., Kamenov, K., Hanson, S.W., Chatter""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,5,reference_content,"2. Paskins, Z., Farmer, C.E., Manning, F., Andersson, D.A., Barlow, T., Bishop, F.L., Brown, C.A., Clark, A., Clark, E.M., Dulake, D., et al. (2022). Research priorities to reduce the impact of muscul","[120, 498, 417, 642]",reference_item,0.85,"[""reference content label: 2. Paskins, Z., Farmer, C.E., Manning, F., Andersson, D.A., ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,6,reference_content,"3. Soul, J., Dunn, S.L., Anand, S., Serracino-Inglott, F., Schwartz, J.M., Boot-Handford, R.P., and Hardingham, T.E. (2018). Stratification of knee osteoarthritis: two major patient subgroups identifi","[120, 658, 418, 786]",reference_item,0.85,"[""reference content label: 3. Soul, J., Dunn, S.L., Anand, S., Serracino-Inglott, F., S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,7,reference_content,"4. Yuan, C., Pan, Z., Zhao, K., Li, J., Sheng, Z., Yao, X., Liu, H., Zhang, X., Yang, Y., Yu, D., et al. (2020). Classification of four distinct osteoarthritis subtypes with a knee joint tissue transc","[120, 801, 412, 899]",reference_item,0.85,"[""reference content label: 4. Yuan, C., Pan, Z., Zhao, K., Li, J., Sheng, Z., Yao, X., ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,8,reference_content,"5. Coutinho de Almeida, R., Mahfouz, A., Mei, H., Houtman, E., den Hollander, W., Soul, J., Suchiman, E., Lakenberg, N., Meessen, J., Huetink, K., et al. (2021). Identification and characterization of","[120, 914, 419, 1058]",reference_item,0.85,"[""reference content label: 5. Coutinho de Almeida, R., Mahfouz, A., Mei, H., Houtman, E""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,9,reference_content,"6. Orange, D.E., Agius, P., DiCarlo, E.F., Robine, N., Geiger, H., Szymonifka, J., McNamara, M., Cummings, R., Andersen, K.M., Mirza, S., et al. (2018). Identification of three rheumatoid arthritis di","[119, 1074, 416, 1219]",reference_item,0.85,"[""reference content label: 6. Orange, D.E., Agius, P., DiCarlo, E.F., Robine, N., Geige""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,10,reference_content,"7. Pinal-Fernandez, I., Casal-Dominguez, M., Derfoul, A., Pak, K., Miller, F.W., Milisenda, J.C., Grau-Junyent, J.M., Selva-O'Callaghan, A., Carrion-Ribas, C., Paik, J.J., et al. (2020). Machine learn","[120, 1234, 417, 1379]",reference_item,0.85,"[""reference content label: 7. Pinal-Fernandez, I., Casal-Dominguez, M., Derfoul, A., Pa""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,11,reference_content,"8. Kosela-Paterczyk, H., Paziewska, A., Kulecka, M., Balabas, A., Kluska, A., Dabrowska, M., Piatkowska, M., Zeber-Lubecka, N., Ambrozkiewicz, F., Karczmarski, J., et al.","[120, 1394, 415, 1458]",reference_item,0.85,"[""reference content label: 8. Kosela-Paterczyk, H., Paziewska, A., Kulecka, M., Balabas""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,12,reference_content,"(2020). Signatures of circulating microRNA in four sarcoma subtypes. J. Cancer 11, 874882. https://doi.org/10.7150/jca.34723.","[472, 353, 756, 404]",reference_item,0.85,"[""reference content label: (2020). Signatures of circulating microRNA in four sarcoma s""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
8,13,reference_content,"9. Lietz, C.E., Garbutt, C., Barry, W.T., Deshpande, V., Chen, Y.L., Lozano-Calderon, S.A., Wang, Y., Lawney, B., Ebb, D., Cote, G.M., et al. (2020). MicroRNA-mRNA networks define translatable molecul","[456, 418, 752, 545]",reference_item,0.85,"[""reference content label: 9. Lietz, C.E., Garbutt, C., Barry, W.T., Deshpande, V., Che""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,14,reference_content,"10. Geng, Y., Chen, J., Chang, C., Zhang, Y., Duan, L., Zhu, W., Mou, L., Xiong, J., and Wang, D. (2021). Systematic analysis of mRNAs and ncRNAs in BMSCs of senile osteoporosis patients. Front. Genet","[451, 561, 750, 674]",reference_item,0.85,"[""reference content label: 10. Geng, Y., Chen, J., Chang, C., Zhang, Y., Duan, L., Zhu,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,15,reference_content,"11. Urdinez, J., Boro, A., Mazumdar, A., Arlt, M.J., Muff, R., Botter, S.M., Bode-Lesniewska, B., Fuchs, B., Snedeker, J.G., and Gvozdenovic, A. (2020). The miR-143/145 cluster, a novel diagnostic bio","[451, 690, 756, 819]",reference_item,0.85,"[""reference content label: 11. Urdinez, J., Boro, A., Mazumdar, A., Arlt, M.J., Muff, R""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,16,reference_content,"12. Nicolle, R., Ayadi, M., Gomez-Brouchet, A., Armenoult, L., Banneau, G., Elarouci, N., Tallegas, M., Decouvelaere, A.V., Aubert, S., Rédini, F., et al. (2019). Integrated molecular characterization","[452, 834, 752, 963]",reference_item,0.85,"[""reference content label: 12. Nicolle, R., Ayadi, M., Gomez-Brouchet, A., Armenoult, L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,17,reference_content,"13. Lorenzi, L., Chiu, H.S., Avila Cobos, F., Gross, S., Volders, P.J., Cannoodt, R., Nuytens, J., Vanderheyden, K., Anckaert, J., Lefever, S., et al. (2021). The RNA Atlas expands the catalog of huma","[451, 978, 751, 1090]",reference_item,0.85,"[""reference content label: 13. Lorenzi, L., Chiu, H.S., Avila Cobos, F., Gross, S., Vol""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,18,reference_content,"14. Li, Z., Sun, Y., He, M., and Liu, J. (2021). Differentially-expressed mRNAs, microRNAs and long noncoding RNAs in intervertebral disc degeneration identified by RNA-sequencing. Bioengineered 12, 1","[451, 1106, 751, 1218]",reference_item,0.85,"[""reference content label: 14. Li, Z., Sun, Y., He, M., and Liu, J. (2021). Differentia""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,19,reference_content,"15. Xi, H., Langerman, J., Sabri, S., Chien, P., Young, C.S., Younesi, S., Hicks, M., Gonzalez, K., Fujiwara, W., Marzi, J., et al. (2020). A human skeletal muscle atlas identifies the trajectories of","[450, 1234, 753, 1378]",reference_item,0.85,"[""reference content label: 15. Xi, H., Langerman, J., Sabri, S., Chien, P., Young, C.S.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,20,reference_content,"16. Alivernini, S., MacDonald, L., Elmesmari, A., Finlay, S., Tolusso, B., Gigante, M.R., Petricca, L., Di Mario, C., Bui, L., Perniola, S., et al. (2020). Distinct synovial tissue macrophage","[451, 1394, 755, 1460]",reference_item,0.85,"[""reference content label: 16. Alivernini, S., MacDonald, L., Elmesmari, A., Finlay, S.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,21,reference_content,"subsets regulate inflammation and remission in rheumatoid arthritis. Nat. Med. 26, 12951306. https://doi.org/10.1038/s41591-020-0939-8.","[809, 354, 1092, 418]",reference_item,0.85,"[""reference content label: subsets regulate inflammation and remission in rheumatoid ar""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
8,22,reference_content,"17. He, J., Yan, J., Wang, J., Zhao, L., Xin, Q., Zeng, Y., Sun, Y., Zhang, H., Bai, Z., Li, Z., et al. (2021). Dissecting human embryonic skeletal stem cell ontogeny by single-cell transcriptomic and","[787, 433, 1090, 546]",reference_item,0.85,"[""reference content label: 17. He, J., Yan, J., Wang, J., Zhao, L., Xin, Q., Zeng, Y., ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,23,reference_content,"18. Nakajima, T., Nakahata, A., Yamada, N., Yoshizawa, K., Kato, T.M., Iwasaki, M., Zhao, C., Kuroki, H., and Ikeya, M. (2021). Grafting of iPS cell-derived tenocytes promotes motor function recovery ","[787, 562, 1092, 675]",reference_item,0.85,"[""reference content label: 18. Nakajima, T., Nakahata, A., Yamada, N., Yoshizawa, K., K""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,24,reference_content,"19. Ji, Q., Zheng, Y., Zhang, G., Hu, Y., Fan, X., Hou, Y., Wen, L., Li, L., Xu, Y., Wang, Y., and Tang, F. (2019). Single-cell RNA-seq analysis reveals the progression of human osteoarthritis. Ann. R","[787, 690, 1090, 802]",reference_item,0.85,"[""reference content label: 19. Ji, Q., Zheng, Y., Zhang, G., Hu, Y., Fan, X., Hou, Y., ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,25,reference_content,"20. Han, X., Zhou, Z., Fei, L., Sun, H., Wang, R., Chen, Y., Chen, H., Wang, J., Tang, H., Ge, W., et al. (2020). Construction of a human cell landscape at single-cell level. Nature 581, 303309. http","[787, 817, 1091, 913]",reference_item,0.85,"[""reference content label: 20. Han, X., Zhou, Z., Fei, L., Sun, H., Wang, R., Chen, Y.,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,26,reference_content,"21. Gan, Y., He, J., Zhu, J., Xu, Z., Wang, Z., Yan, J., Hu, O., Bai, Z., Chen, L., Xie, Y., et al. (2021). Spatially defined single-cell transcriptional profiling characterizes diverse chondrocyte su","[786, 930, 1093, 1043]",reference_item,0.85,"[""reference content label: 21. Gan, Y., He, J., Zhu, J., Xu, Z., Wang, Z., Yan, J., Hu,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,27,reference_content,"22. Zhou, Y., Yang, D., Yang, Q., Lv, X., Huang, W., Zhou, Z., Wang, Y., Zhang, Z., Yuan, T., Ding, X., et al. (2020). Single-cell RNA landscape of intratumoral heterogeneity and immunosuppressive mic","[786, 1059, 1091, 1185]",reference_item,0.85,"[""reference content label: 22. Zhou, Y., Yang, D., Yang, Q., Lv, X., Huang, W., Zhou, Z""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,28,reference_content,"23. Takahashi, I., Hama, Y., Matsushima, M., Hirotani, M., Kano, T., Hohzen, H., Yabe, I., Utsumi, J., and Sasaki, H. (2015). Identification of plasma microRNAs as a biomarker of sporadic Amyotrophic ","[786, 1201, 1091, 1315]",reference_item,0.85,"[""reference content label: 23. Takahashi, I., Hama, Y., Matsushima, M., Hirotani, M., K""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,29,reference_content,"24. Marfia, G., Navone, S.E., Di Vito, C., Tabano, S., Giammattei, L., Di Cristofori, A., Gualtierotti, R., Tremolada, C., Zavanone, M., Caroli, M., et al. (2015). Gene expression profile analysis of ","[785, 1330, 1093, 1459]",reference_item,0.85,"[""reference content label: 24. Marfia, G., Navone, S.E., Di Vito, C., Tabano, S., Giamm""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,30,footer,"iScience 26, 106933, June 16, 2023","[825, 1512, 1050, 1530]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
8,31,number,7,"[1079, 1513, 1092, 1529]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,0,header_image,,"[0, 83, 90, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,,unknown_like,empty,False,True
9,1,header_image,,"[114, 100, 281, 155]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,,unknown_like,empty,False,True
9,2,header,"iScience
Article","[964, 102, 1092, 163]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,3,reference_content,"24, 320328. https://doi.org/10.1089/scd.2014.0282.","[136, 204, 395, 237]",reference_item,0.85,"[""reference content label: 24, 320\u2013328. https://doi.org/10.1089/scd.2014.0282.""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
9,4,reference_content,"25. Luecken, M.D., Büttner, M., Chaichoompu, K., Danese, A., Interlandi, M., Mueller, M.F., Strobl, D.C., Zappia, L., Dugas, M., Colomé-Tatché, M., and Theis, F.J. (2022). Benchmarking atlas-level dat","[113, 253, 414, 380]",reference_item,0.85,"[""reference content label: 25. Luecken, M.D., B\u00fcttner, M., Chaichoompu, K., Danese, A.,""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
9,5,reference_content,"26. Zhang, L., Xing, R., Huang, Z., Ding, L., Zhang, L., Li, M., Li, X., Wang, P., and Mao, J. (2021). Synovial fibrosis involvement in osteoarthritis. Front. Med. 8, 684389. https://doi.org/10.3389/f","[114, 397, 416, 478]",reference_item,0.85,"[""reference content label: 26. Zhang, L., Xing, R., Huang, Z., Ding, L., Zhang, L., Li,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,6,reference_content,"27. Filer, A. (2013). The fibroblast as a therapeutic target in rheumatoid arthritis. Curr. Opin. Pharmacol. 13, 413419. https://doi.org/10.1016/j.coph.2013.02.006.","[114, 493, 418, 558]",reference_item,0.85,"[""reference content label: 27. Filer, A. (2013). The fibroblast as a therapeutic target""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,7,reference_content,"28. Zhang, F., Wei, K., Slowikowski, K., Fonseka, C.Y., Rao, D.A., Kelly, S., Goodman, S.M., Tabechian, D., Hughes, L.B., Salomon-Escoto, K., et al. (2019). Defining inflammatory cell states in rheuma","[112, 572, 412, 717]",reference_item,0.85,"[""reference content label: 28. Zhang, F., Wei, K., Slowikowski, K., Fonseka, C.Y., Rao,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,8,reference_content,"29. Shu, H., Zhou, J., Lian, Q., Li, H., Zhao, D., Zeng, J., and Ma, J. (2021). Modeling gene regulatory networks using neural network architectures. Nat. Comput. Sci. 1, 491501. https://doi.org/10.1","[114, 733, 413, 815]",reference_item,0.85,"[""reference content label: 29. Shu, H., Zhou, J., Lian, Q., Li, H., Zhao, D., Zeng, J.,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,9,reference_content,"30. Wilkinson, M.D., Dumontier, M., Aalbersberg, I.J.J., Appleton, G., Axton, M., Baak, A., Blomberg, N., Boiten, J.W., da Silva Santos, L.B., Bourne, P.E., et al. (2016). The FAIR Guiding Principles ","[113, 829, 417, 956]",reference_item,0.85,"[""reference content label: 30. Wilkinson, M.D., Dumontier, M., Aalbersberg, I.J.J., App""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,10,reference_content,"31. Martin, M. (2011). Cutadapt Removes Adapter Sequences from High-Throughput Sequencing Reads, 17, p. 3. https://doi.org/10.14806/ej.17.1.200.","[114, 973, 412, 1038]",reference_item,0.85,"[""reference content label: 31. Martin, M. (2011). Cutadapt Removes Adapter Sequences fr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,11,reference_content,"32. Dobin, A., Davis, C.A., Schlesinger, F., Drenkow, J., Zaleski, C., Jha, S., Batut, P., Chaisson, M., and Gingeras, T.R. (2013). STAR: ultrafast universal RNA-seq aligner. Bioinformatics 29, 1521.","[114, 1053, 411, 1149]",reference_item,0.85,"[""reference content label: 32. Dobin, A., Davis, C.A., Schlesinger, F., Drenkow, J., Za""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,12,reference_content,"33. Liao, Y., Smyth, G.K., and Shi, W. (2014). featureCounts: an efficient general purpose program for assigning sequence reads to genomic features. Bioinformatics 30, 923930. https://doi.org/10.1093","[450, 205, 750, 300]",reference_item,0.85,"[""reference content label: 33. Liao, Y., Smyth, G.K., and Shi, W. (2014). featureCounts""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,13,reference_content,"34. Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J., Homer, N., Marth, G., Abecasis, G., and Durbin, R.; 1000 Genome Project Data Processing Subgroup (2009). The sequence alignment/map forma","[450, 321, 754, 434]",reference_item,0.85,"[""reference content label: 34. Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,14,reference_content,"35. Zhang, Y., Parmigiani, G., and Johnson, W.E. (2020). ComBat-seq: batch effect adjustment for RNA-seq count data. NAR Genom. Bioinform. 2, lqaa078. https://doi.org/10.1093/nargab/lqaa078.","[451, 453, 755, 534]",reference_item,0.85,"[""reference content label: 35. Zhang, Y., Parmigiani, G., and Johnson, W.E. (2020). Com""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,15,reference_content,"36. Wolf, F.A., Angerer, P., and Theis, F.J. (2018). SCANPY: large-scale single-cell gene expression data analysis. Genome Biol. 19, 15. https://doi.org/10.1186/s13059-017-1382-0.","[451, 554, 752, 634]",reference_item,0.85,"[""reference content label: 36. Wolf, F.A., Angerer, P., and Theis, F.J. (2018). SCANPY:""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,16,reference_content,"37. Kutmon, M., Ehrhart, F., Willighagen, E.L., Evelo, C.T., and Coort, S.L. (2018). CyTargetLinker App Update: A Flexible Solution for Network Extension in Cytoscape. F1000Res 7. https://doi.org/10.1","[449, 655, 754, 751]",reference_item,0.85,"[""reference content label: 37. Kutmon, M., Ehrhart, F., Willighagen, E.L., Evelo, C.T.,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,17,reference_content,"38. Shannon, P., Markiel, A., Ozier, O., Baliga, N.S., Wang, J.T., Ramage, D., Amin, N., Schwikowski, B., and Ideker, T. (2003). Cytoscape: a software environment for integrated models of biomolecular","[450, 772, 753, 885]",reference_item,0.85,"[""reference content label: 38. Shannon, P., Markiel, A., Ozier, O., Baliga, N.S., Wang,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,18,reference_content,"39. Zheng, G.X.Y., Terry, J.M., Belgrader, P., Ryvkin, P., Bent, Z.W., Wilson, R., Ziraldo, S.B., Wheeler, T.D., McDermott, G.P., Zhu, J., et al. (2017). Massively parallel digital transcriptional pro","[450, 905, 754, 1017]",reference_item,0.85,"[""reference content label: 39. Zheng, G.X.Y., Terry, J.M., Belgrader, P., Ryvkin, P., B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,19,reference_content,"40. Macosko, E.Z., Basu, A., Satija, R., Nemesh, J., Shekhar, K., Goldman, M., Tirosh, I., Bialas, A.R., Kamitaki, N., Martersteck, E.M., et al. (2015). Highly parallel genome-wide expression profilin","[450, 1037, 753, 1149]",reference_item,0.85,"[""reference content label: 40. Macosko, E.Z., Basu, A., Satija, R., Nemesh, J., Shekhar""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,20,reference_content,"41. Hao, Y., Hao, S., Andersen-Nissen, E., Mauck, W.M., 3rd, Zheng, S., Butler, A., Lee, M.J., Wilk, A.J., Darby, C., Zager, M., et al. (2021). Integrated analysis of multimodal single-cell data. Cell","[786, 205, 1090, 301]",reference_item,0.85,"[""reference content label: 41. Hao, Y., Hao, S., Andersen-Nissen, E., Mauck, W.M., 3rd,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,21,reference_content,"42. Aran, D., Looney, A.P., Liu, L., Wu, E., Fong, V., Hsu, A., Chak, S., Naikawadi, R.P., Wolters, P.J., Abate, A.R., et al. (2019). Reference-based analysis of lung single-cell sequencing reveals a ","[785, 318, 1092, 431]",reference_item,0.85,"[""reference content label: 42. Aran, D., Looney, A.P., Liu, L., Wu, E., Fong, V., Hsu, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,22,reference_content,"43. Barrett, T., Wilhite, S.E., Ledoux, P., Evangelista, C., Kim, I.F., Tomashevsky, M., Marshall, K.A., Phillippy, K.H., Sherman, P.M., Holko, M., et al. (2013). NCBI GEO: archive for functional geno","[785, 449, 1092, 562]",reference_item,0.85,"[""reference content label: 43. Barrett, T., Wilhite, S.E., Ledoux, P., Evangelista, C.,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,23,reference_content,"44. Madeira, F., Pearce, M., Tivey, A.R.N., Basutkar, P., Lee, J., Edbali, O., Madhusoodanan, N., Kolesnikov, A., and Lopez, R. (2022). Search and sequence analysis tools services from EMBL-EBI in 202","[785, 578, 1090, 693]",reference_item,0.85,"[""reference content label: 44. Madeira, F., Pearce, M., Tivey, A.R.N., Basutkar, P., Le""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,24,reference_content,"45. Hsu, S.D., Lin, F.M., Wu, W.Y., Liang, C., Huang, W.C., Chan, W.L., Tsai, W.T., Chen, G.Z., Lee, C.J., Chiu, C.M., et al. (2011). miRTarBase: a database curates experimentally validated microRNA-t","[785, 710, 1084, 823]",reference_item,0.85,"[""reference content label: 45. Hsu, S.D., Lin, F.M., Wu, W.Y., Liang, C., Huang, W.C., ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,25,reference_content,"46. Traag, V.A., Waltman, L., and van Eck, N.J. (2019). From Louvain to Leiden: guaranteeing well-connected communities. Sci. Rep. 9, 5233. https://doi.org/10.1038/s41598-019-41695-z.","[786, 840, 1091, 919]",reference_item,0.85,"[""reference content label: 46. Traag, V.A., Waltman, L., and van Eck, N.J. (2019). From""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
9,26,reference_content,"47. Korsunsky, I., Millard, N., Fan, J., Slowikowski, K., Zhang, F., Wei, K., Baglaenko, Y., Brenner, M., Loh, P.R., and Raychaudhuri, S. (2019). Fast, sensitive and accurate integration of single-cel","[785, 939, 1092, 1050]",reference_item,0.85,"[""reference content label: 47. Korsunsky, I., Millard, N., Fan, J., Slowikowski, K., Zh""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
9,27,reference_content,"48. Büttner, M., Miao, Z., Wolf, F.A., Teichmann, S.A., and Theis, F.J. (2019). A test metric for assessing single-cell RNA-seq batch correction. Nat. Methods 16, 4349. https://doi.org/10.1038/s41592","[786, 1069, 1090, 1149]",reference_item,0.85,"[""reference content label: 48. B\u00fcttner, M., Miao, Z., Wolf, F.A., Teichmann, S.A., and ""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
9,28,number,8,"[113, 1513, 125, 1529]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,29,footer,"iScience 26, 106933, June 16, 2023","[156, 1512, 379, 1531]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
10,0,header,"iScience
Article","[110, 102, 241, 163]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,1,header_image,,"[925, 99, 1091, 155]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,,unknown_like,empty,False,True
10,2,paragraph_title,STAR★METHODS KEY RESOURCES TABLE,"[110, 203, 326, 272]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: STAR\u2605METHODS KEY RESOURCES TABLE""]",section_heading,0.6,,heading_like,none,False,True
10,3,footer,,"[111, 248, 326, 272]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,empty,False,False
10,4,table,"<table><tr><td>REAGENT or RESOURCE</td><td>SOURCE</td><td>IDENTIFIER</td></tr><tr><td colspan=""3"">Software and algorithms</td></tr><tr><td>R (v4.2.0)</td><td>The R Foundation for Statistical Computing","[111, 312, 1091, 871]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
10,5,paragraph_title,RESOURCE AVAILABILITY,"[111, 916, 340, 938]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: RESOURCE AVAILABILITY""]",section_heading,0.6,,unknown_like,none,False,True
10,6,paragraph_title,Lead contact,"[111, 943, 225, 964]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Lead contact""]",subsection_heading,0.6,,unknown_like,short_fragment,False,True
10,7,text,"Further information and requests for data and code resources should be directed to and will be fulfilled by the lead contact, Junxin Lin (linjunxin@zju.edu.cn).","[109, 968, 876, 1014]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
10,8,paragraph_title,Materials availability,"[111, 1045, 289, 1066]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Materials availability""]",subsection_heading,0.6,,unknown_like,none,False,True
10,9,text,This study did not generate any new unique reagents.,"[110, 1071, 508, 1093]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,unknown_like,none,True,True
10,10,paragraph_title,Data and code availability,"[111, 1116, 330, 1137]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Data and code availability""]",subsection_heading,0.6,,unknown_like,none,False,True
10,11,text,All raw data are available on GEO (https://www.ncbi.nlm.nih.gov/geo/) and EMBL-EBI (https://www.ebi.ac.uk/) repositories. All curated sample information and processed bulk RNA-seq and microRNA-seq dat,"[109, 1142, 877, 1274]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
10,12,paragraph_title,Data collection and meta information curation,"[110, 1334, 495, 1356]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Data collection and meta information curation""]",backmatter_boundary_candidate,0.5,,unknown_like,none,True,True
10,13,paragraph_title,METHOD DETAILS,"[111, 1307, 277, 1329]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level section_heading: METHOD DETAILS""]",section_heading,0.6,,unknown_like,short_fragment,False,True
10,14,text,"Bulk RNA-seq, microRNAs-seq and single-cell RNA-seq data of human musculoskeletal system were originated from NCBI Gene Expression Omnibus (GEO) and EMBL's European Bioinformatics Institute (EMBL-EBI)","[110, 1359, 877, 1471]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
10,15,footer,"iScience 26, 106933, June 16, 2023","[825, 1512, 1050, 1531]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
10,16,number,9,"[1080, 1513, 1092, 1529]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
11,0,header_image,,"[0, 81, 90, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,,unknown_like,empty,False,True
11,1,header_image,,"[114, 99, 281, 154]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,,unknown_like,empty,False,True
11,2,header,"iScience
Article","[962, 101, 1092, 163]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
11,3,text,ERS1034560). 'ProjectID' contains the sample's project identification code in GEO (e.g. GSE80072) or EMBL-EBI (e.g. E-MTAB-4304). 'Publication_DOI' contains the digital object identifier of the origin,"[110, 204, 878, 555]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
11,4,paragraph_title,Bulk RNA-seq and microRNA-seq processing and data analysis,"[110, 580, 627, 602]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Bulk RNA-seq and microRNA-seq processing and data analysis""]",subsection_heading,0.6,,unknown_like,none,False,True
11,5,text,"Quality control (QC) of raw sequencing reads for each project was performed by FastQC (v0.11.9, https://www.bioinformatics.babraham.ac.uk/projects/fastqc/). Cutadapt (v3.7) was used to find and remove","[110, 606, 877, 893]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
11,6,text,The MSdb's online differential expression analysis tool (https://www.msdb.org.cn/browse/) was used to obtain differentially expressed mRNAs and miRNAs (FDR <0.01 and fold change >2). Down-regulated mi,"[109, 912, 877, 1045]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
11,7,paragraph_title,Single cell RNA-seq data processing,"[111, 1071, 412, 1092]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Single cell RNA-seq data processing""]",subsection_heading,0.6,,unknown_like,none,False,True
11,8,text,"The genome reference used in scRNA-seq analysis is GRCh38. For droplet-based scRNA-seq, the raw data were processed using Cell Ranger (v7.0.0) or Drop-seq_tools with standard pipeline and default para","[109, 1097, 877, 1471]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
11,9,number,10,"[113, 1513, 133, 1530]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
11,10,footer,"iScience 26, 106933, June 16, 2023","[155, 1511, 380, 1531]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
12,0,header,"iScience
Article","[111, 102, 241, 163]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,1,header_image,,"[925, 99, 1091, 155]",unknown_structural,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,,unknown_like,empty,False,True
12,2,paragraph_title,Integrated scRNA-seq data analysis,"[110, 204, 409, 225]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Integrated scRNA-seq data analysis""]",subsection_heading,0.6,,unknown_like,none,False,True
12,3,text,"We built a single-cell atlas of the synovium containing 101,610 cells from 3 studies and 34 samples. We have implemented a probabilistic model based on a variational autoencoder to integrate single-ce","[110, 229, 878, 516]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
12,4,text,"To assess the effectiveness of scVAE for batch correction, we compared the data integration results of scVAE with Harmony. $ ^{47} $ The k-nearest-neighbor batch-effect test (kBET) metric was employed","[109, 536, 877, 604]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
12,5,paragraph_title,Website development,"[111, 637, 300, 658]",unknown_structural,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Website development""]",subsection_heading,0.6,,unknown_like,short_fragment,False,True
12,6,text,"We developed a user-friendly web interface with advanced functions to present our uniformly curated metadata and NGS data. The front-end interface was developed with HTML5 and CSS3 languages, based on","[109, 664, 878, 841]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,,body_like,none,True,True
12,7,footer,"iScience 26, 106933, June 16, 2023","[825, 1512, 1051, 1531]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
12,8,number,11,"[1073, 1513, 1091, 1530]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header iScience [112, 80, 350, 137] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 header_image [924, 98, 1092, 156] non_body_insert 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False False
4 1 2 text Article [110, 199, 232, 239] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 frontmatter_main_zone support_like short_fragment False False
5 1 3 doc_title MSdb: An integrated expression atlas of human musculoskeletal system [110, 244, 1049, 346] paper_title 0.8 ["page-1 zone title_zone: MSdb: An integrated expression atlas of human musculoskeleta"] paper_title 0.8 frontmatter_main_zone support_like none True True
6 1 4 paragraph_title MSdb An integrated expression atlas of human musculoskeletal system ① Data collection [157, 436, 779, 553] section_heading 0.5 ["unnumbered paragraph_title on page 1 outside title zone: MSdb An integrated expression atlas of human musculoskeletal"] section_heading 0.5 body_zone unknown_like none True True
7 1 5 footer [157, 527, 311, 553] noise 0.9 ["footer label"] noise 0.9 body_zone unknown_like empty False False
8 1 6 image [169, 563, 459, 770] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
9 1 7 image [496, 561, 566, 630] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
10 1 8 vision_footnote Bulk RNA-seq [490, 638, 567, 655] footnote 0.7 ["vision_footnote label: Bulk RNA-seq"] footnote 0.7 body_zone unknown_like short_fragment True True
11 1 9 text 3 Data Types [500, 672, 566, 712] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone reference_like reference_numeric_dot False False
12 1 10 image [608, 561, 679, 629] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
13 1 11 text 6 Tissue Types [497, 723, 569, 764] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone reference_like reference_numeric_dot False False
14 1 12 vision_footnote microRNA-seq [602, 638, 680, 655] footnote 0.7 ["vision_footnote label: microRNA-seq"] footnote 0.7 body_zone unknown_like short_fragment True True
15 1 13 text 33 Diseases [622, 670, 672, 712] figure_inner_text 0.88 ["short figure-adjacent label; treated as figure_inner_text"] figure_inner_text 0.88 body_zone reference_like reference_numeric_dot True True
16 1 14 image [722, 561, 794, 629] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
17 1 15 text 126 Projects [621, 721, 669, 764] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone reference_like reference_numeric_dot False False
18 1 16 vision_footnote Single-cell RNA-seq [699, 638, 806, 655] footnote 0.7 ["vision_footnote label: Single-cell RNA-seq"] footnote 0.7 body_zone unknown_like short_fragment True True
19 1 17 text 3,610 Datasets [730, 669, 786, 711] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone unknown_like short_fragment False False
20 1 18 text 2,833,779 Single cells [710, 720, 806, 764] frontmatter_noise 0.7 ["keyword-like block: 2,833,779 Single cells"] frontmatter_noise 0.7 body_zone unknown_like none False False
21 1 19 paragraph_title ② Database construction [157, 801, 375, 826] section_heading 0.5 ["unnumbered paragraph_title on page 1 outside title zone: \u2461 Database construction"] section_heading 0.5 body_zone unknown_like none True True
22 1 20 image [152, 841, 485, 1112] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
23 1 21 vision_footnote Database [399, 945, 459, 964] footnote 0.7 ["vision_footnote label: Database"] footnote 0.7 body_zone unknown_like short_fragment True True
24 1 22 vision_footnote Bioinfomatician [164, 1092, 256, 1111] footnote 0.7 ["vision_footnote label: Bioinfomatician"] footnote 0.7 body_zone unknown_like short_fragment True True
25 1 23 vision_footnote Online access [391, 1094, 476, 1110] footnote 0.7 ["vision_footnote label: Online access"] footnote 0.7 body_zone unknown_like short_fragment True True
26 1 24 paragraph_title ③ Database functions [505, 802, 694, 826] section_heading 0.5 ["unnumbered paragraph_title on page 1 outside title zone: \u2462 Database functions"] section_heading 0.5 body_zone unknown_like none True True
27 1 25 image [540, 851, 641, 937] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
28 1 26 vision_footnote Browsing [563, 946, 620, 965] footnote 0.7 ["vision_footnote label: Browsing"] footnote 0.7 body_zone unknown_like short_fragment True True
29 1 27 image [700, 849, 806, 941] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
30 1 28 image [531, 988, 648, 1086] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
31 1 29 vision_footnote Visualization [715, 946, 792, 964] footnote 0.7 ["vision_footnote label: Visualization"] footnote 0.7 body_zone unknown_like short_fragment True True
32 1 30 vision_footnote Analysis [565, 1093, 618, 1111] footnote 0.7 ["vision_footnote label: Analysis"] footnote 0.7 body_zone unknown_like short_fragment True True
33 1 31 image [695, 988, 811, 1083] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
34 1 32 vision_footnote Integration [722, 1093, 786, 1111] footnote 0.7 ["vision_footnote label: Integration"] footnote 0.7 body_zone unknown_like short_fragment True True
35 1 33 text Ruonan Tian, Ziwei Xue, Dengfeng Ruan, ..., Hongwei Ouyang, Wanlu Liu, Junxin Lin [906, 424, 1080, 556] authors 0.8 ["page-1 zone author_zone: Ruonan Tian, Ziwei Xue, Dengfeng Ruan, ..., Hongwei Ouyang, "] authors 0.8 frontmatter_main_zone support_like none True True
36 1 34 text hwoy@zju.edu.cn (H.O.) wanluliu@intl.zju.edu.cn (W.L.) linjunxin@zju.edu.cn (J.L.) [907, 573, 1079, 631] frontmatter_noise 0.85 ["contact/email: hwoy@zju.edu.cn (H.O.)\nwanluliu@intl.zju.edu.cn (W.L.)\nlinju"] frontmatter_noise 0.85 body_zone body_like none False False
37 1 35 text Highlights A comprehensive database for human musculoskeletal system gene expression data [907, 645, 1065, 746] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
38 1 36 text Systematically sorted metadata facilitate the reuse of public data [907, 767, 1058, 830] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
39 1 37 text Various online analysis functionalities improve the data mining efficiency [906, 851, 1080, 914] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
40 1 38 text Tian et al., iScience 26, 106933 June 16, 2023 © 2023 The Author(s). https://doi.org/10.1016/j.isci.2023.106933 [905, 1363, 1080, 1450] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Tian et al., iScience 26, 106933\nJune 16, 2023 \u00a9 2023 The Au"] frontmatter_noise 0.8 body_zone body_like none False False
41 1 39 number © [119, 1502, 144, 1523] noise 0.9 ["page number label"] noise 0.9 body_zone unknown_like short_fragment False False
42 2 0 header iScience [110, 90, 294, 135] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
43 2 1 header_image [924, 98, 1092, 155] non_body_insert 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone body_like empty False False
44 2 2 text Article [110, 200, 207, 228] non_body_insert 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False False
45 2 3 doc_title MSdb: An integrated expression atlas of human musculoskeletal system [110, 230, 801, 318] paper_title 0.8 ["page-1 zone title_zone: MSdb: An integrated expression\natlas of human musculoskeleta"] paper_title 0.8 body_zone body_like none True True
46 2 4 text Ruonan Tian, $ ^{1,2,8} $ Ziwei Xue, $ ^{1,2,8} $ Dengfeng Ruan, $ ^{1,3,8} $ Pengwei Chen, $ ^{1} $ Yiwen Xu, $ ^{1,3} $ Chao Dai, $ ^{1} $ Weiliang Shen, $ ^{3,4,5,6} $ Hongwei Ouyang, $ ^{1,3,4,5,6 [109, 340, 1091, 397] unknown_structural 0.8 ["page-1 zone author_zone: Ruonan Tian, $ ^{1,2,8} $ Ziwei Xue, $ ^{1,2,8} $ Dengfeng R"] authors 0.8 body_zone body_like none False True
47 2 5 paragraph_title SUMMARY [110, 425, 213, 448] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: SUMMARY"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
48 2 6 abstract The global prevalence and burden of musculoskeletal (MSK) disorders are immense. Advancements in next-generation sequencing (NGS) have generated vast amounts of data, accelerating the research of path [110, 451, 878, 838] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 body_zone body_like none True True
49 2 7 paragraph_title INTRODUCTION [111, 864, 260, 886] section_heading 0.9 ["explicit scholarly heading: INTRODUCTION"] section_heading 0.9 body_zone heading_like canonical_section_name True True
50 2 8 text The rising burden of musculoskeletal (MSK) disorders constitutes one of the major global health challenges. In 2019, over 1600 million adults throughout the world were estimated to have a condition th [108, 892, 877, 1026] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 2 9 text In the past decades, scientists have been devoted to understand the mechanisms of MSK disorders and development in order to develop effective therapeutic, regenerative or rehabilitative treatments. $ [109, 1045, 877, 1377] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
52 2 10 text Although the majority of these valuable NGS datasets might be easily accessed from public databases (such as GEO and EMBL-EBI), there are a number of obstacles that prevent their use: (1) inconsistent [109, 1396, 878, 1464] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
53 2 11 footnote $ ^{1} $Zhejiang University-University of Edinburgh Institute, Zhejiang University School of Medicine, Hangzhou, Zhejiang 310058, China [918, 566, 1089, 665] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{1} $Zhejiang University-University of Edinburgh Institut"] affiliation 0.8 body_zone body_like affiliation_marker True True
54 2 12 text $ ^{2} $Future Health Laboratory, Innovation Center of Yangtze River Delta, Zhejiang University, Jiaxing, Zhejiang 314100, China [918, 670, 1092, 751] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{2} $Future Health Laboratory, Innovation Center of Yangt"] affiliation 0.8 body_zone body_like affiliation_marker True True
55 2 13 text $ ^{3} $Dr. Li Dak Sum & Yip Yio Chin Center for Stem Cells and Regenerative Medicine, and Department of Orthopedic Surgery of the Second Affiliated Hospital, Zhejiang University School of Medicine, [918, 757, 1092, 903] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{3} $Dr. Li Dak Sum & Yip Yio Chin Center for Stem Cells "] affiliation 0.8 body_zone body_like affiliation_marker True True
56 2 14 footnote $ ^{4} $Department of Sports Medicine, Zhejiang University School of Medicine, Hangzhou, Zhejiang 310058, China [918, 908, 1093, 990] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{4} $Department of Sports Medicine, Zhejiang University S"] affiliation 0.8 body_zone body_like affiliation_marker True True
57 2 15 footnote $ ^{5} $Key Laboratory of Tissue Engineering and Regenerative Medicine of Zhejiang Province, Hangzhou, Zhejiang 310058, China [918, 994, 1088, 1092] footnote 0.7 ["footnote label: $ ^{5} $Key Laboratory of Tissue Engineering and Regenerativ"] footnote 0.7 body_zone body_like affiliation_marker True True
58 2 16 footnote $ ^{6} $China Orthopedic Regenerative Medicine Group (CORMed), Hangzhou, Zhejiang 310058, China [918, 1096, 1088, 1178] footnote 0.7 ["footnote label: $ ^{6} $China Orthopedic Regenerative Medicine Group (CORMed"] footnote 0.7 body_zone body_like affiliation_marker True True
59 2 17 text 7Alibaba-Zhejiang University Joint Research Center of Future Digital Healthcare, Zhejiang University, Hangzhou, Zhejiang 310058, China [918, 1184, 1089, 1280] non_body_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
60 2 18 footnote $ ^{8} $These authors contributed equally [919, 1285, 1083, 1320] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: $ ^{8} $These authors contributed equally"] frontmatter_noise 0.8 body_zone body_like affiliation_marker False False
61 2 19 footnote $ ^{9} $Lead contact [919, 1323, 1006, 1342] footnote 0.7 ["footnote label: $ ^{9} $Lead contact"] footnote 0.7 body_zone body_like affiliation_marker True True
62 2 20 footnote *Correspondence: hwoy@zju.edu.cn (H.O.), wanluliu@intl.zju.edu.cn (W.L.), linjunxin@zju.edu.cn (J.L.) https://doi.org/10.1016/j.isci.2023.106933 [917, 1349, 1085, 1467] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: *Correspondence:\nhwoy@zju.edu.cn (H.O.),\nwanluliu@intl.zju.e"] frontmatter_noise 0.8 body_zone body_like none False False
63 2 21 footer_image [113, 1499, 148, 1532] non_body_insert 0.2 ["unrecognized label 'footer_image'"] unknown_structural 0.2 body_zone unknown_like empty False False
64 2 22 footer iScience 26, 106933, June 16, 2023 © 2023 The Author(s). [682, 1512, 1049, 1530] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
65 2 23 footer This is an open access article under the CC BY-NC-ND license (http://creativecommons.org/licenses/by-nc-nd/4.0/). [324, 1527, 1050, 1545] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
66 2 24 number 1 [1080, 1513, 1090, 1530] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
67 3 0 header_image [0, 81, 90, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone unknown_like empty False True
68 3 1 header_image [114, 99, 281, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone body_like empty False True
69 3 2 header iScience Article [963, 101, 1092, 163] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
70 3 3 text datasets are often in raw data format, which may result in difficulties in data mining and analysis for researchers without sufficient computational powers and bioinformatics skills, (3) even if the p [109, 204, 877, 291] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
71 3 4 text Therefore, we propose that a carefully curated NGS database created specifically for the field of orthopedic research will greatly benefit clinical and wet lab researchers. To this end, we developed t [109, 312, 877, 445] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
72 3 5 paragraph_title RESULTS [111, 469, 195, 489] section_heading 0.9 ["explicit scholarly heading: RESULTS"] section_heading 0.9 body_zone heading_like canonical_section_name True True
73 3 6 paragraph_title Overview of MSdb [111, 495, 273, 515] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Overview of MSdb"] subsection_heading 0.6 body_zone body_like short_fragment True True
74 3 7 text We developed the human musculoskeletal system database (MSdb), an integrated expression atlas specifically for the human MSK system, containing 33 diseases, 126 projects, 3,398 transcriptomes, and mic [109, 521, 877, 742] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 3 8 text MSdb enables users to retrieve sample information via consistent and validated metadata curated by orthopedists and bioinformatics scientists (Table S1). Users can search the database using multiple p [109, 762, 877, 917] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
76 3 9 paragraph_title Transcriptome and miRNAome modules of MSdb [110, 940, 518, 960] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Transcriptome and miRNAome modules of MSdb"] subsection_heading 0.6 body_zone body_like none True True
77 3 10 text At bulk level, MSdb integrates information at two aspects: (i) cross-tissue integration and (ii) cross-omics integration. For cross-tissue integration, samples were initially integrated by projects to [110, 965, 878, 1471] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
78 3 11 number 2 [113, 1513, 126, 1529] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
79 3 12 footer iScience 26, 106933, June 16, 2023 [155, 1512, 380, 1531] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
80 4 0 header iScience Article [110, 101, 241, 163] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
81 4 1 header_image [924, 99, 1092, 155] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone body_like empty False True
82 4 2 figure_title A [199, 206, 217, 225] figure_inner_text 0.9 ["panel label / figure inner text: A"] figure_inner_text 0.9 display_zone legend_like panel_label True True
83 4 3 image [244, 220, 451, 332] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
84 4 4 vision_footnote Data were collected, and manually curated by Orthopedist and Bioinformatics Scientists. [244, 334, 452, 361] structured_insert 0.7 ["vision_footnote label: Data were collected, and manually curated by Orthopedist and"] footnote 0.7 body_zone body_like none False False
85 4 5 paragraph_title Visualization [241, 395, 355, 422] structured_insert 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Visualization"] sub_subsection_heading 0.6 body_zone heading_like short_fragment False False
86 4 6 image [241, 430, 448, 510] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
87 4 7 vision_footnote mRNA-seq, miRNA-seq, scRNA-seq expression by tissues, diseases, and cell subtypes/clusters [233, 517, 452, 545] structured_insert 0.7 ["vision_footnote label: mRNA-seq, miRNA-seq, scRNA-seq expression by tissues, diseas"] footnote 0.7 body_zone body_like none False False
88 4 8 vision_footnote MSdb Human musculoskeletal system database [531, 226, 716, 256] structured_insert 0.7 ["vision_footnote label: MSdb Human musculoskeletal system database"] footnote 0.7 body_zone body_like none False False
89 4 9 image [494, 271, 734, 453] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty False False
90 4 10 vision_footnote 3,610 Datasets [648, 466, 699, 498] footnote 0.7 ["vision_footnote label: 3,610 Datasets"] footnote 0.7 body_zone body_like short_fragment True True
91 4 11 vision_footnote 2,833,779 Single-cells [633, 505, 712, 537] footnote 0.7 ["vision_footnote label: 2,833,779 Single-cells"] footnote 0.7 body_zone body_like none True True
92 4 12 paragraph_title Integration [787, 217, 880, 240] structured_insert 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Integration"] sub_subsection_heading 0.6 body_zone heading_like short_fragment False False
93 4 13 image [793, 254, 992, 332] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
94 4 14 vision_footnote Cross-samples integration for mRNA-seq, miRNA-seq, and scRNA-seq data. [797, 334, 987, 360] footnote 0.7 ["vision_footnote label: Cross-samples integration for mRNA-seq, miRNA-seq, and scRNA"] footnote 0.7 body_zone body_like none True True
95 4 15 paragraph_title Analysis [788, 396, 868, 422] structured_insert_candidate 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Analysis"] sub_subsection_heading 0.6 body_zone heading_like short_fragment False False
96 4 16 image [779, 398, 998, 542] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
97 4 17 vision_footnote Gene-gene network analysis for tissues, and diseases and user-defined DEG calling. [784, 518, 988, 544] footnote 0.7 ["vision_footnote label: Gene-gene network analysis for tissues, and diseases and use"] footnote 0.7 body_zone body_like none True True
98 4 18 figure_title B [196, 573, 212, 592] figure_inner_text 0.9 ["panel label / figure inner text: B"] figure_inner_text 0.9 display_zone legend_like panel_label True True
99 4 19 paragraph_title Gene expression atlas [244, 579, 393, 596] structured_insert 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Gene expression atlas"] subsection_heading 0.6 body_zone body_like none False False
100 4 20 image [215, 606, 406, 881] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
101 4 21 paragraph_title C microRNA expression atlas [426, 577, 634, 596] structured_insert 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: C microRNA expression atlas"] subsection_heading 0.6 body_zone body_like none False False
102 4 22 image [435, 607, 633, 883] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
103 4 23 image [217, 888, 406, 1100] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
104 4 24 vision_footnote Craniosynostosis Degenerative spine disease Myotonic dystrophy Osteoarthritis [217, 1104, 311, 1164] structured_insert 0.7 ["vision_footnote label: Craniosynostosis\nDegenerative spine disease\nMyotonic dystrop"] footnote 0.7 body_zone body_like none False False
105 4 25 vision_footnote Osteoporosis Osteosarcoma Rheumatoid arthritis Rotator cuff tear Others [325, 1104, 421, 1167] structured_insert 0.7 ["vision_footnote label: Osteoporosis\nOsteosarcoma\nRheumatoid arthritis\nRotator cuff "] footnote 0.7 body_zone body_like none False False
106 4 26 image [458, 921, 566, 1004] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty False False
107 4 27 image [438, 1009, 548, 1098] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
108 4 28 figure_title D [645, 574, 661, 592] figure_inner_text 0.9 ["panel label / figure inner text: D"] figure_inner_text 0.9 display_zone legend_like panel_label True True
109 4 29 vision_footnote Amyotrophic lateral sclerosis Chondrosarcoma Multiple sclerosis Osteoarthritis Osteochondroma [440, 1101, 534, 1176] structured_insert 0.7 ["vision_footnote label: Amyotrophic lateral sclerosis\nChondrosarcoma\nMultiple sclero"] footnote 0.7 body_zone body_like none False False
110 4 30 image [216, 1176, 405, 1391] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
111 4 31 vision_footnote Osteoporosis Osteosarcoma Rheumatoid arthritis Others [549, 1103, 643, 1151] structured_insert 0.7 ["vision_footnote label: Osteoporosis\nOsteosarcoma\nRheumatoid arthritis\nOthers"] footnote 0.7 body_zone body_like none False False
112 4 32 paragraph_title Differential expression analysis [734, 578, 940, 596] structured_insert 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Differential expression analysis"] subsection_heading 0.6 body_zone body_like none False False
113 4 33 image [437, 1199, 633, 1391] structured_insert 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty False False
114 4 34 chart [661, 600, 862, 782] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
115 4 35 chart [863, 605, 1009, 776] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
116 4 36 chart [661, 793, 864, 964] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
117 4 37 chart [863, 789, 1009, 959] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
118 4 38 paragraph_title microRNA-gene network analysis [727, 976, 947, 993] structured_insert_candidate 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: microRNA-gene network analysis"] subsection_heading 0.6 body_zone body_like none False False
119 4 39 image [670, 1007, 1002, 1393] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
120 4 40 footer iScience 26, 106933, June 16, 2023 [826, 1511, 1050, 1531] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
121 4 41 number 3 [1079, 1512, 1092, 1530] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
122 5 0 header_image [0, 81, 90, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone unknown_like empty False True
123 5 1 header_image [113, 100, 281, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone body_like empty False True
124 5 2 header iScience Article [963, 101, 1092, 162] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
125 5 3 paragraph_title Figure 1. MSdb framework and illustrative data analysis [110, 203, 504, 222] figure_caption 0.9 ["figure prefix matched: Figure 1. MSdb framework and illustrative data analysis"] figure_caption 0.9 display_zone legend_like figure_number True True
126 5 4 text (A) Overview of MSdb.MSdb is a comprehensive database of next-generation sequencing data on human musculoskeletal system tissues and cells, enhanced with manually curated patient phenotypes, advanced [110, 223, 1059, 262] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
127 5 5 text (B) UMAP plots showing gene expression atlas in MSdb. All gene expression data in MSdb were used for clustering. Samples are colored by tissue types (top), diseases (middle), and COL3A1 expression lev [110, 264, 1091, 302] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
128 5 6 text (C) UMAP plots showing microRNA expression atlas in MSdb. All microRNA expression data in MSdb were used for clustering. Samples are colored by tissue types (top), diseases (middle), and miR-4649-5p e [111, 303, 1092, 341] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
129 5 7 text (D) Volcano plots and boxplots showing dysregulated genes (top) or microRNAs (bottom) between healthy (n = 3) and degenerative (n = 3) intervertebral disks. RPKM: reads per kilobase per million mapped [111, 343, 1092, 381] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
130 5 8 text (E) microRNA-gene interaction network built with down-regulated microRNAs and up-regulated genes in degenerative intervertebral disks. Red dots represent the microRNAs and gray dots represent the gene [110, 384, 1069, 421] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
131 5 9 text to counteract disk degeneration. Collectively, MSdb offers users with integrated expression atlas and useful data analysis functionalities to understand gene function and regulation in homeostasis and [109, 447, 875, 490] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
132 5 10 paragraph_title Single-cell transcriptome module of MSdb [110, 515, 461, 536] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Single-cell transcriptome module of MSdb"] subsection_heading 0.6 body_zone body_like none True True
133 5 11 text The advent of single-cell technology has enabled researchers to uncover new biological insights compared to bulk RNA-seq. Intriguingly, MSdb contains a wealth of single-cell RNA sequencing (scRNA-seq) [109, 541, 878, 805] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
134 5 12 text We also implemented an in-house variational autoencoder (VAE)-based deep-learning framework (scVAE) to facilitate the integrative analysis for scRNA-seq datasets from different studies. In line with a [110, 825, 878, 1287] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
135 5 13 paragraph_title DISCUSSION [111, 1310, 228, 1331] section_heading 0.9 ["explicit scholarly heading: DISCUSSION"] section_heading 0.9 body_zone heading_like canonical_section_name True True
136 5 14 text Musculoskeletal conditions, including RA, osteoarthritis, low back pain, fractures, amputation, and other injuries, affect people of all ages everywhere around the world. $ ^{1} $ In recent years, vas [109, 1338, 877, 1470] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
137 5 15 number 4 [113, 1514, 125, 1529] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
138 5 16 footer iScience 26, 106933, June 16, 2023 [155, 1511, 380, 1531] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
139 6 0 header iScience Article [110, 101, 241, 163] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
140 6 1 header_image [924, 99, 1092, 155] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone body_like empty False True
141 6 2 figure_title A [112, 205, 132, 224] figure_inner_text 0.9 ["panel label / figure inner text: A"] figure_inner_text 0.9 display_zone legend_like panel_label True True
142 6 3 figure_title B [682, 205, 696, 224] figure_inner_text 0.9 ["panel label / figure inner text: B"] figure_inner_text 0.9 display_zone legend_like panel_label True True
143 6 4 image [118, 198, 1093, 1006] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
144 6 5 figure_title C [114, 589, 129, 608] figure_inner_text 0.9 ["panel label / figure inner text: C"] figure_inner_text 0.9 display_zone legend_like panel_label True True
145 6 6 figure_title D [682, 589, 698, 610] figure_inner_text 0.9 ["panel label / figure inner text: D"] figure_inner_text 0.9 display_zone legend_like panel_label True True
146 6 7 figure_title Figure 2. Integrated analysis of scRNA-seq data of synovial tissues-derived cells from OA, RA, UA and healthy patients [110, 1026, 933, 1045] figure_caption 0.92 ["figure_title label: Figure 2. Integrated analysis of scRNA-seq data of synovial "] figure_caption 0.92 display_zone legend_like figure_number True True
147 6 8 vision_footnote (A) UMAP plots showing clustering of 101,610 cells from healthy, osteoarthritis, rheumatoid arthritis, and undifferentiated arthritis patients. Cells are colored by cell types. [110, 1046, 1092, 1085] footnote 0.7 ["vision_footnote label: (A) UMAP plots showing clustering of 101,610 cells from heal"] footnote 0.7 body_zone body_like none True True
148 6 9 text (B) UMAP plots showing clustering of 101,610 cells from healthy, osteoarthritis, rheumatoid arthritis, and undifferentiated arthritis patients. Cells are colored by diseases. [109, 1086, 1091, 1125] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
149 6 10 text (C) Violin plots showing marker gene expression of each cell type. [112, 1125, 537, 1146] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
150 6 11 text (D) Scatterplot showing the expression level of genes specifically expressed in RA- or OA-derived fibroblasts. Cells are colored by the expression of the indicated genes. [110, 1146, 1085, 1185] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 6 12 text containing comprehensive information for public bulk RNA-Seq, microRNA-seq, and single-cell RNA-seq datasets related to human musculoskeletal system development and disease. It provides initial analys [110, 1229, 877, 1339] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
152 6 13 text Overall, MSdb is a resource created for the MSK research community and aims to fulfill the findability, accessibility, interoperability, and reusability (FAIR) principles of scholarly data. $ ^{30} $ [109, 1359, 877, 1470] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
153 6 14 footer iScience 26, 106933, June 16, 2023 [825, 1512, 1050, 1531] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
154 6 15 number 5 [1080, 1513, 1092, 1529] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
155 7 0 header_image [0, 81, 90, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone unknown_like empty False True
156 7 1 header_image [114, 99, 281, 155] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone body_like empty False True
157 7 2 header iScience Article [963, 101, 1092, 163] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
158 7 3 paragraph_title Limitations of the study [111, 204, 313, 224] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Limitations of the study"] subsection_heading 0.6 body_zone body_like none True True
159 7 4 text The current study presents certain limitations that warrant discussion. Firstly, MSdb contains only the bulk RNA-seq, microRNA-seq and scRNA-Seq datasets, and has not collected other omics, such as ge [109, 230, 878, 493] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
160 7 5 paragraph_title STAR★METHODS [111, 527, 270, 547] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: STAR\u2605METHODS"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
161 7 6 text Detailed methods are provided in the online version of this paper and include the following: [110, 554, 787, 576] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
162 7 7 text KEY RESOURCES TABLE [134, 590, 342, 610] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
163 7 8 text ● RESOURCE AVAILABILITY [137, 614, 352, 633] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
164 7 9 text ☐ Lead contact [151, 635, 277, 654] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
165 7 10 text ○ Materials availability [154, 658, 329, 676] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
166 7 11 text ☐ Data and code availability [153, 679, 370, 698] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
167 7 12 text ● METHOD DETAILS [136, 701, 300, 720] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
168 7 13 text ☐ Data collection and meta information curation [153, 722, 517, 742] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
169 7 14 text ○ Bulk RNA-seq and microRNA-seq processing and data analysis [153, 744, 637, 765] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
170 7 15 text ○ Single cell RNA-seq data processing [153, 767, 446, 786] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
171 7 16 text O Integrated scRNA-seq data analysis [153, 789, 441, 808] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
172 7 17 text ○ Website development [154, 811, 343, 830] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
173 7 18 paragraph_title SUPPLEMENTAL INFORMATION [111, 865, 398, 886] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: SUPPLEMENTAL INFORMATION"] backmatter_boundary_candidate 0.5 body_zone body_like none True True
174 7 19 text Supplemental information can be found online at https://doi.org/10.1016/j.isci.2023.106933. [110, 893, 783, 915] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
175 7 20 paragraph_title ACKNOWLEDGMENTS [111, 949, 316, 970] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: ACKNOWLEDGMENTS"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
176 7 21 text The authors would like to thank all researchers who generated the data sets that are collected, analyzed, and displayed in MSdb. We thank Dr. Xiao Chen, Dr. Zi Yin, Dr. Wenyan Zhou, Dr. Can Zhang, Dr. [109, 977, 877, 1152] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
177 7 22 paragraph_title AUTHOR CONTRIBUTIONS [110, 1186, 349, 1208] section_heading 0.6 ["unnumbered paragraph_title, inferred level section_heading: AUTHOR CONTRIBUTIONS"] section_heading 0.6 body_zone support_like none True True
178 7 23 text J.L., W.L., H.O., and W.S. conceived the study and designed database. R.T., P.C., C.D., and J.L. collected and processed the data. R.T., D.R., Y.X., and J.L. curated the metadata. R.T. and Z.X. develo [109, 1214, 878, 1302] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
179 7 24 paragraph_title DECLARATION OF INTERESTS [111, 1336, 379, 1357] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: DECLARATION OF INTERESTS"] backmatter_boundary_candidate 0.5 body_zone body_like none True True
180 7 25 text The authors declare no competing interests. [111, 1364, 439, 1386] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
181 7 26 paragraph_title INCLUSION AND DIVERSITY [111, 1419, 363, 1440] section_heading 0.6 ["unnumbered paragraph_title, inferred level section_heading: INCLUSION AND DIVERSITY"] section_heading 0.6 body_zone body_like none True True
182 7 27 text We support inclusive, diverse, and equitable conduct of research. [110, 1447, 591, 1469] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
183 7 28 number 6 [113, 1514, 125, 1529] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
184 7 29 footer iScience 26, 106933, June 16, 2023 [156, 1512, 379, 1531] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
185 8 0 header iScience Article [111, 102, 241, 163] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
186 8 1 header_image [924, 98, 1091, 155] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 body_zone body_like empty False True
187 8 2 text Received: December 13, 2022 Revised: April 26, 2023 Accepted: May 16, 2023 Published: May 18, 2023 [111, 203, 352, 298] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
188 8 3 paragraph_title REFERENCES [112, 331, 221, 350] reference_heading 0.9 ["references heading: REFERENCES"] reference_heading 0.9 reference_zone unknown_like short_fragment True True
189 8 4 reference_content 1. Cieza, A., Causey, K., Kamenov, K., Hanson, S.W., Chatterji, S., and Vos, T. (2021). Global estimates of the need for rehabilitation based on the global burden of disease study 2019: a systematic a [121, 354, 419, 481] reference_item 0.85 ["reference content label: 1. Cieza, A., Causey, K., Kamenov, K., Hanson, S.W., Chatter"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
190 8 5 reference_content 2. Paskins, Z., Farmer, C.E., Manning, F., Andersson, D.A., Barlow, T., Bishop, F.L., Brown, C.A., Clark, A., Clark, E.M., Dulake, D., et al. (2022). Research priorities to reduce the impact of muscul [120, 498, 417, 642] reference_item 0.85 ["reference content label: 2. Paskins, Z., Farmer, C.E., Manning, F., Andersson, D.A., "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
191 8 6 reference_content 3. Soul, J., Dunn, S.L., Anand, S., Serracino-Inglott, F., Schwartz, J.M., Boot-Handford, R.P., and Hardingham, T.E. (2018). Stratification of knee osteoarthritis: two major patient subgroups identifi [120, 658, 418, 786] reference_item 0.85 ["reference content label: 3. Soul, J., Dunn, S.L., Anand, S., Serracino-Inglott, F., S"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
192 8 7 reference_content 4. Yuan, C., Pan, Z., Zhao, K., Li, J., Sheng, Z., Yao, X., Liu, H., Zhang, X., Yang, Y., Yu, D., et al. (2020). Classification of four distinct osteoarthritis subtypes with a knee joint tissue transc [120, 801, 412, 899] reference_item 0.85 ["reference content label: 4. Yuan, C., Pan, Z., Zhao, K., Li, J., Sheng, Z., Yao, X., "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
193 8 8 reference_content 5. Coutinho de Almeida, R., Mahfouz, A., Mei, H., Houtman, E., den Hollander, W., Soul, J., Suchiman, E., Lakenberg, N., Meessen, J., Huetink, K., et al. (2021). Identification and characterization of [120, 914, 419, 1058] reference_item 0.85 ["reference content label: 5. Coutinho de Almeida, R., Mahfouz, A., Mei, H., Houtman, E"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
194 8 9 reference_content 6. Orange, D.E., Agius, P., DiCarlo, E.F., Robine, N., Geiger, H., Szymonifka, J., McNamara, M., Cummings, R., Andersen, K.M., Mirza, S., et al. (2018). Identification of three rheumatoid arthritis di [119, 1074, 416, 1219] reference_item 0.85 ["reference content label: 6. Orange, D.E., Agius, P., DiCarlo, E.F., Robine, N., Geige"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
195 8 10 reference_content 7. Pinal-Fernandez, I., Casal-Dominguez, M., Derfoul, A., Pak, K., Miller, F.W., Milisenda, J.C., Grau-Junyent, J.M., Selva-O'Callaghan, A., Carrion-Ribas, C., Paik, J.J., et al. (2020). Machine learn [120, 1234, 417, 1379] reference_item 0.85 ["reference content label: 7. Pinal-Fernandez, I., Casal-Dominguez, M., Derfoul, A., Pa"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
196 8 11 reference_content 8. Kosela-Paterczyk, H., Paziewska, A., Kulecka, M., Balabas, A., Kluska, A., Dabrowska, M., Piatkowska, M., Zeber-Lubecka, N., Ambrozkiewicz, F., Karczmarski, J., et al. [120, 1394, 415, 1458] reference_item 0.85 ["reference content label: 8. Kosela-Paterczyk, H., Paziewska, A., Kulecka, M., Balabas"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
197 8 12 reference_content (2020). Signatures of circulating microRNA in four sarcoma subtypes. J. Cancer 11, 874–882. https://doi.org/10.7150/jca.34723. [472, 353, 756, 404] reference_item 0.85 ["reference content label: (2020). Signatures of circulating microRNA in four sarcoma s"] reference_item 0.85 reference_zone unknown_like none True True
198 8 13 reference_content 9. Lietz, C.E., Garbutt, C., Barry, W.T., Deshpande, V., Chen, Y.L., Lozano-Calderon, S.A., Wang, Y., Lawney, B., Ebb, D., Cote, G.M., et al. (2020). MicroRNA-mRNA networks define translatable molecul [456, 418, 752, 545] reference_item 0.85 ["reference content label: 9. Lietz, C.E., Garbutt, C., Barry, W.T., Deshpande, V., Che"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
199 8 14 reference_content 10. Geng, Y., Chen, J., Chang, C., Zhang, Y., Duan, L., Zhu, W., Mou, L., Xiong, J., and Wang, D. (2021). Systematic analysis of mRNAs and ncRNAs in BMSCs of senile osteoporosis patients. Front. Genet [451, 561, 750, 674] reference_item 0.85 ["reference content label: 10. Geng, Y., Chen, J., Chang, C., Zhang, Y., Duan, L., Zhu,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
200 8 15 reference_content 11. Urdinez, J., Boro, A., Mazumdar, A., Arlt, M.J., Muff, R., Botter, S.M., Bode-Lesniewska, B., Fuchs, B., Snedeker, J.G., and Gvozdenovic, A. (2020). The miR-143/145 cluster, a novel diagnostic bio [451, 690, 756, 819] reference_item 0.85 ["reference content label: 11. Urdinez, J., Boro, A., Mazumdar, A., Arlt, M.J., Muff, R"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
201 8 16 reference_content 12. Nicolle, R., Ayadi, M., Gomez-Brouchet, A., Armenoult, L., Banneau, G., Elarouci, N., Tallegas, M., Decouvelaere, A.V., Aubert, S., Rédini, F., et al. (2019). Integrated molecular characterization [452, 834, 752, 963] reference_item 0.85 ["reference content label: 12. Nicolle, R., Ayadi, M., Gomez-Brouchet, A., Armenoult, L"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
202 8 17 reference_content 13. Lorenzi, L., Chiu, H.S., Avila Cobos, F., Gross, S., Volders, P.J., Cannoodt, R., Nuytens, J., Vanderheyden, K., Anckaert, J., Lefever, S., et al. (2021). The RNA Atlas expands the catalog of huma [451, 978, 751, 1090] reference_item 0.85 ["reference content label: 13. Lorenzi, L., Chiu, H.S., Avila Cobos, F., Gross, S., Vol"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
203 8 18 reference_content 14. Li, Z., Sun, Y., He, M., and Liu, J. (2021). Differentially-expressed mRNAs, microRNAs and long noncoding RNAs in intervertebral disc degeneration identified by RNA-sequencing. Bioengineered 12, 1 [451, 1106, 751, 1218] reference_item 0.85 ["reference content label: 14. Li, Z., Sun, Y., He, M., and Liu, J. (2021). Differentia"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
204 8 19 reference_content 15. Xi, H., Langerman, J., Sabri, S., Chien, P., Young, C.S., Younesi, S., Hicks, M., Gonzalez, K., Fujiwara, W., Marzi, J., et al. (2020). A human skeletal muscle atlas identifies the trajectories of [450, 1234, 753, 1378] reference_item 0.85 ["reference content label: 15. Xi, H., Langerman, J., Sabri, S., Chien, P., Young, C.S."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
205 8 20 reference_content 16. Alivernini, S., MacDonald, L., Elmesmari, A., Finlay, S., Tolusso, B., Gigante, M.R., Petricca, L., Di Mario, C., Bui, L., Perniola, S., et al. (2020). Distinct synovial tissue macrophage [451, 1394, 755, 1460] reference_item 0.85 ["reference content label: 16. Alivernini, S., MacDonald, L., Elmesmari, A., Finlay, S."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
206 8 21 reference_content subsets regulate inflammation and remission in rheumatoid arthritis. Nat. Med. 26, 1295–1306. https://doi.org/10.1038/s41591-020-0939-8. [809, 354, 1092, 418] reference_item 0.85 ["reference content label: subsets regulate inflammation and remission in rheumatoid ar"] reference_item 0.85 reference_zone unknown_like none True True
207 8 22 reference_content 17. He, J., Yan, J., Wang, J., Zhao, L., Xin, Q., Zeng, Y., Sun, Y., Zhang, H., Bai, Z., Li, Z., et al. (2021). Dissecting human embryonic skeletal stem cell ontogeny by single-cell transcriptomic and [787, 433, 1090, 546] reference_item 0.85 ["reference content label: 17. He, J., Yan, J., Wang, J., Zhao, L., Xin, Q., Zeng, Y., "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
208 8 23 reference_content 18. Nakajima, T., Nakahata, A., Yamada, N., Yoshizawa, K., Kato, T.M., Iwasaki, M., Zhao, C., Kuroki, H., and Ikeya, M. (2021). Grafting of iPS cell-derived tenocytes promotes motor function recovery [787, 562, 1092, 675] reference_item 0.85 ["reference content label: 18. Nakajima, T., Nakahata, A., Yamada, N., Yoshizawa, K., K"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
209 8 24 reference_content 19. Ji, Q., Zheng, Y., Zhang, G., Hu, Y., Fan, X., Hou, Y., Wen, L., Li, L., Xu, Y., Wang, Y., and Tang, F. (2019). Single-cell RNA-seq analysis reveals the progression of human osteoarthritis. Ann. R [787, 690, 1090, 802] reference_item 0.85 ["reference content label: 19. Ji, Q., Zheng, Y., Zhang, G., Hu, Y., Fan, X., Hou, Y., "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
210 8 25 reference_content 20. Han, X., Zhou, Z., Fei, L., Sun, H., Wang, R., Chen, Y., Chen, H., Wang, J., Tang, H., Ge, W., et al. (2020). Construction of a human cell landscape at single-cell level. Nature 581, 303–309. http [787, 817, 1091, 913] reference_item 0.85 ["reference content label: 20. Han, X., Zhou, Z., Fei, L., Sun, H., Wang, R., Chen, Y.,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
211 8 26 reference_content 21. Gan, Y., He, J., Zhu, J., Xu, Z., Wang, Z., Yan, J., Hu, O., Bai, Z., Chen, L., Xie, Y., et al. (2021). Spatially defined single-cell transcriptional profiling characterizes diverse chondrocyte su [786, 930, 1093, 1043] reference_item 0.85 ["reference content label: 21. Gan, Y., He, J., Zhu, J., Xu, Z., Wang, Z., Yan, J., Hu,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
212 8 27 reference_content 22. Zhou, Y., Yang, D., Yang, Q., Lv, X., Huang, W., Zhou, Z., Wang, Y., Zhang, Z., Yuan, T., Ding, X., et al. (2020). Single-cell RNA landscape of intratumoral heterogeneity and immunosuppressive mic [786, 1059, 1091, 1185] reference_item 0.85 ["reference content label: 22. Zhou, Y., Yang, D., Yang, Q., Lv, X., Huang, W., Zhou, Z"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
213 8 28 reference_content 23. Takahashi, I., Hama, Y., Matsushima, M., Hirotani, M., Kano, T., Hohzen, H., Yabe, I., Utsumi, J., and Sasaki, H. (2015). Identification of plasma microRNAs as a biomarker of sporadic Amyotrophic [786, 1201, 1091, 1315] reference_item 0.85 ["reference content label: 23. Takahashi, I., Hama, Y., Matsushima, M., Hirotani, M., K"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
214 8 29 reference_content 24. Marfia, G., Navone, S.E., Di Vito, C., Tabano, S., Giammattei, L., Di Cristofori, A., Gualtierotti, R., Tremolada, C., Zavanone, M., Caroli, M., et al. (2015). Gene expression profile analysis of [785, 1330, 1093, 1459] reference_item 0.85 ["reference content label: 24. Marfia, G., Navone, S.E., Di Vito, C., Tabano, S., Giamm"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
215 8 30 footer iScience 26, 106933, June 16, 2023 [825, 1512, 1050, 1530] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
216 8 31 number 7 [1079, 1513, 1092, 1529] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
217 9 0 header_image [0, 83, 90, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 unknown_like empty False True
218 9 1 header_image [114, 100, 281, 155] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 unknown_like empty False True
219 9 2 header iScience Article [964, 102, 1092, 163] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
220 9 3 reference_content 24, 320–328. https://doi.org/10.1089/scd.2014.0282. [136, 204, 395, 237] reference_item 0.85 ["reference content label: 24, 320\u2013328. https://doi.org/10.1089/scd.2014.0282."] reference_item 0.85 reference_zone unknown_like none True True
221 9 4 reference_content 25. Luecken, M.D., Büttner, M., Chaichoompu, K., Danese, A., Interlandi, M., Mueller, M.F., Strobl, D.C., Zappia, L., Dugas, M., Colomé-Tatché, M., and Theis, F.J. (2022). Benchmarking atlas-level dat [113, 253, 414, 380] reference_item 0.85 ["reference content label: 25. Luecken, M.D., B\u00fcttner, M., Chaichoompu, K., Danese, A.,"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
222 9 5 reference_content 26. Zhang, L., Xing, R., Huang, Z., Ding, L., Zhang, L., Li, M., Li, X., Wang, P., and Mao, J. (2021). Synovial fibrosis involvement in osteoarthritis. Front. Med. 8, 684389. https://doi.org/10.3389/f [114, 397, 416, 478] reference_item 0.85 ["reference content label: 26. Zhang, L., Xing, R., Huang, Z., Ding, L., Zhang, L., Li,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
223 9 6 reference_content 27. Filer, A. (2013). The fibroblast as a therapeutic target in rheumatoid arthritis. Curr. Opin. Pharmacol. 13, 413–419. https://doi.org/10.1016/j.coph.2013.02.006. [114, 493, 418, 558] reference_item 0.85 ["reference content label: 27. Filer, A. (2013). The fibroblast as a therapeutic target"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
224 9 7 reference_content 28. Zhang, F., Wei, K., Slowikowski, K., Fonseka, C.Y., Rao, D.A., Kelly, S., Goodman, S.M., Tabechian, D., Hughes, L.B., Salomon-Escoto, K., et al. (2019). Defining inflammatory cell states in rheuma [112, 572, 412, 717] reference_item 0.85 ["reference content label: 28. Zhang, F., Wei, K., Slowikowski, K., Fonseka, C.Y., Rao,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
225 9 8 reference_content 29. Shu, H., Zhou, J., Lian, Q., Li, H., Zhao, D., Zeng, J., and Ma, J. (2021). Modeling gene regulatory networks using neural network architectures. Nat. Comput. Sci. 1, 491–501. https://doi.org/10.1 [114, 733, 413, 815] reference_item 0.85 ["reference content label: 29. Shu, H., Zhou, J., Lian, Q., Li, H., Zhao, D., Zeng, J.,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
226 9 9 reference_content 30. Wilkinson, M.D., Dumontier, M., Aalbersberg, I.J.J., Appleton, G., Axton, M., Baak, A., Blomberg, N., Boiten, J.W., da Silva Santos, L.B., Bourne, P.E., et al. (2016). The FAIR Guiding Principles [113, 829, 417, 956] reference_item 0.85 ["reference content label: 30. Wilkinson, M.D., Dumontier, M., Aalbersberg, I.J.J., App"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
227 9 10 reference_content 31. Martin, M. (2011). Cutadapt Removes Adapter Sequences from High-Throughput Sequencing Reads, 17, p. 3. https://doi.org/10.14806/ej.17.1.200. [114, 973, 412, 1038] reference_item 0.85 ["reference content label: 31. Martin, M. (2011). Cutadapt Removes Adapter Sequences fr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
228 9 11 reference_content 32. Dobin, A., Davis, C.A., Schlesinger, F., Drenkow, J., Zaleski, C., Jha, S., Batut, P., Chaisson, M., and Gingeras, T.R. (2013). STAR: ultrafast universal RNA-seq aligner. Bioinformatics 29, 15–21. [114, 1053, 411, 1149] reference_item 0.85 ["reference content label: 32. Dobin, A., Davis, C.A., Schlesinger, F., Drenkow, J., Za"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
229 9 12 reference_content 33. Liao, Y., Smyth, G.K., and Shi, W. (2014). featureCounts: an efficient general purpose program for assigning sequence reads to genomic features. Bioinformatics 30, 923–930. https://doi.org/10.1093 [450, 205, 750, 300] reference_item 0.85 ["reference content label: 33. Liao, Y., Smyth, G.K., and Shi, W. (2014). featureCounts"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
230 9 13 reference_content 34. Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J., Homer, N., Marth, G., Abecasis, G., and Durbin, R.; 1000 Genome Project Data Processing Subgroup (2009). The sequence alignment/map forma [450, 321, 754, 434] reference_item 0.85 ["reference content label: 34. Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
231 9 14 reference_content 35. Zhang, Y., Parmigiani, G., and Johnson, W.E. (2020). ComBat-seq: batch effect adjustment for RNA-seq count data. NAR Genom. Bioinform. 2, lqaa078. https://doi.org/10.1093/nargab/lqaa078. [451, 453, 755, 534] reference_item 0.85 ["reference content label: 35. Zhang, Y., Parmigiani, G., and Johnson, W.E. (2020). Com"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
232 9 15 reference_content 36. Wolf, F.A., Angerer, P., and Theis, F.J. (2018). SCANPY: large-scale single-cell gene expression data analysis. Genome Biol. 19, 15. https://doi.org/10.1186/s13059-017-1382-0. [451, 554, 752, 634] reference_item 0.85 ["reference content label: 36. Wolf, F.A., Angerer, P., and Theis, F.J. (2018). SCANPY:"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
233 9 16 reference_content 37. Kutmon, M., Ehrhart, F., Willighagen, E.L., Evelo, C.T., and Coort, S.L. (2018). CyTargetLinker App Update: A Flexible Solution for Network Extension in Cytoscape. F1000Res 7. https://doi.org/10.1 [449, 655, 754, 751] reference_item 0.85 ["reference content label: 37. Kutmon, M., Ehrhart, F., Willighagen, E.L., Evelo, C.T.,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
234 9 17 reference_content 38. Shannon, P., Markiel, A., Ozier, O., Baliga, N.S., Wang, J.T., Ramage, D., Amin, N., Schwikowski, B., and Ideker, T. (2003). Cytoscape: a software environment for integrated models of biomolecular [450, 772, 753, 885] reference_item 0.85 ["reference content label: 38. Shannon, P., Markiel, A., Ozier, O., Baliga, N.S., Wang,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
235 9 18 reference_content 39. Zheng, G.X.Y., Terry, J.M., Belgrader, P., Ryvkin, P., Bent, Z.W., Wilson, R., Ziraldo, S.B., Wheeler, T.D., McDermott, G.P., Zhu, J., et al. (2017). Massively parallel digital transcriptional pro [450, 905, 754, 1017] reference_item 0.85 ["reference content label: 39. Zheng, G.X.Y., Terry, J.M., Belgrader, P., Ryvkin, P., B"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
236 9 19 reference_content 40. Macosko, E.Z., Basu, A., Satija, R., Nemesh, J., Shekhar, K., Goldman, M., Tirosh, I., Bialas, A.R., Kamitaki, N., Martersteck, E.M., et al. (2015). Highly parallel genome-wide expression profilin [450, 1037, 753, 1149] reference_item 0.85 ["reference content label: 40. Macosko, E.Z., Basu, A., Satija, R., Nemesh, J., Shekhar"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
237 9 20 reference_content 41. Hao, Y., Hao, S., Andersen-Nissen, E., Mauck, W.M., 3rd, Zheng, S., Butler, A., Lee, M.J., Wilk, A.J., Darby, C., Zager, M., et al. (2021). Integrated analysis of multimodal single-cell data. Cell [786, 205, 1090, 301] reference_item 0.85 ["reference content label: 41. Hao, Y., Hao, S., Andersen-Nissen, E., Mauck, W.M., 3rd,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
238 9 21 reference_content 42. Aran, D., Looney, A.P., Liu, L., Wu, E., Fong, V., Hsu, A., Chak, S., Naikawadi, R.P., Wolters, P.J., Abate, A.R., et al. (2019). Reference-based analysis of lung single-cell sequencing reveals a [785, 318, 1092, 431] reference_item 0.85 ["reference content label: 42. Aran, D., Looney, A.P., Liu, L., Wu, E., Fong, V., Hsu, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
239 9 22 reference_content 43. Barrett, T., Wilhite, S.E., Ledoux, P., Evangelista, C., Kim, I.F., Tomashevsky, M., Marshall, K.A., Phillippy, K.H., Sherman, P.M., Holko, M., et al. (2013). NCBI GEO: archive for functional geno [785, 449, 1092, 562] reference_item 0.85 ["reference content label: 43. Barrett, T., Wilhite, S.E., Ledoux, P., Evangelista, C.,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
240 9 23 reference_content 44. Madeira, F., Pearce, M., Tivey, A.R.N., Basutkar, P., Lee, J., Edbali, O., Madhusoodanan, N., Kolesnikov, A., and Lopez, R. (2022). Search and sequence analysis tools services from EMBL-EBI in 202 [785, 578, 1090, 693] reference_item 0.85 ["reference content label: 44. Madeira, F., Pearce, M., Tivey, A.R.N., Basutkar, P., Le"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
241 9 24 reference_content 45. Hsu, S.D., Lin, F.M., Wu, W.Y., Liang, C., Huang, W.C., Chan, W.L., Tsai, W.T., Chen, G.Z., Lee, C.J., Chiu, C.M., et al. (2011). miRTarBase: a database curates experimentally validated microRNA-t [785, 710, 1084, 823] reference_item 0.85 ["reference content label: 45. Hsu, S.D., Lin, F.M., Wu, W.Y., Liang, C., Huang, W.C., "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
242 9 25 reference_content 46. Traag, V.A., Waltman, L., and van Eck, N.J. (2019). From Louvain to Leiden: guaranteeing well-connected communities. Sci. Rep. 9, 5233. https://doi.org/10.1038/s41598-019-41695-z. [786, 840, 1091, 919] reference_item 0.85 ["reference content label: 46. Traag, V.A., Waltman, L., and van Eck, N.J. (2019). From"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
243 9 26 reference_content 47. Korsunsky, I., Millard, N., Fan, J., Slowikowski, K., Zhang, F., Wei, K., Baglaenko, Y., Brenner, M., Loh, P.R., and Raychaudhuri, S. (2019). Fast, sensitive and accurate integration of single-cel [785, 939, 1092, 1050] reference_item 0.85 ["reference content label: 47. Korsunsky, I., Millard, N., Fan, J., Slowikowski, K., Zh"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
244 9 27 reference_content 48. Büttner, M., Miao, Z., Wolf, F.A., Teichmann, S.A., and Theis, F.J. (2019). A test metric for assessing single-cell RNA-seq batch correction. Nat. Methods 16, 43–49. https://doi.org/10.1038/s41592 [786, 1069, 1090, 1149] reference_item 0.85 ["reference content label: 48. B\u00fcttner, M., Miao, Z., Wolf, F.A., Teichmann, S.A., and "] reference_item 0.85 reference_zone unknown_like heading_numbered True True
245 9 28 number 8 [113, 1513, 125, 1529] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
246 9 29 footer iScience 26, 106933, June 16, 2023 [156, 1512, 379, 1531] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
247 10 0 header iScience Article [110, 102, 241, 163] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
248 10 1 header_image [925, 99, 1091, 155] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 unknown_like empty False True
249 10 2 paragraph_title STAR★METHODS KEY RESOURCES TABLE [110, 203, 326, 272] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: STAR\u2605METHODS KEY RESOURCES TABLE"] section_heading 0.6 heading_like none False True
250 10 3 footer [111, 248, 326, 272] noise 0.9 ["footer label"] noise 0.9 unknown_like empty False False
251 10 4 table <table><tr><td>REAGENT or RESOURCE</td><td>SOURCE</td><td>IDENTIFIER</td></tr><tr><td colspan="3">Software and algorithms</td></tr><tr><td>R (v4.2.0)</td><td>The R Foundation for Statistical Computing [111, 312, 1091, 871] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
252 10 5 paragraph_title RESOURCE AVAILABILITY [111, 916, 340, 938] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: RESOURCE AVAILABILITY"] section_heading 0.6 unknown_like none False True
253 10 6 paragraph_title Lead contact [111, 943, 225, 964] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Lead contact"] subsection_heading 0.6 unknown_like short_fragment False True
254 10 7 text Further information and requests for data and code resources should be directed to and will be fulfilled by the lead contact, Junxin Lin (linjunxin@zju.edu.cn). [109, 968, 876, 1014] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
255 10 8 paragraph_title Materials availability [111, 1045, 289, 1066] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Materials availability"] subsection_heading 0.6 unknown_like none False True
256 10 9 text This study did not generate any new unique reagents. [110, 1071, 508, 1093] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 unknown_like none True True
257 10 10 paragraph_title Data and code availability [111, 1116, 330, 1137] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Data and code availability"] subsection_heading 0.6 unknown_like none False True
258 10 11 text All raw data are available on GEO (https://www.ncbi.nlm.nih.gov/geo/) and EMBL-EBI (https://www.ebi.ac.uk/) repositories. All curated sample information and processed bulk RNA-seq and microRNA-seq dat [109, 1142, 877, 1274] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
259 10 12 paragraph_title Data collection and meta information curation [110, 1334, 495, 1356] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Data collection and meta information curation"] backmatter_boundary_candidate 0.5 unknown_like none True True
260 10 13 paragraph_title METHOD DETAILS [111, 1307, 277, 1329] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level section_heading: METHOD DETAILS"] section_heading 0.6 unknown_like short_fragment False True
261 10 14 text Bulk RNA-seq, microRNAs-seq and single-cell RNA-seq data of human musculoskeletal system were originated from NCBI Gene Expression Omnibus (GEO) and EMBL's European Bioinformatics Institute (EMBL-EBI) [110, 1359, 877, 1471] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
262 10 15 footer iScience 26, 106933, June 16, 2023 [825, 1512, 1050, 1531] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
263 10 16 number 9 [1080, 1513, 1092, 1529] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
264 11 0 header_image [0, 81, 90, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 unknown_like empty False True
265 11 1 header_image [114, 99, 281, 154] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 unknown_like empty False True
266 11 2 header iScience Article [962, 101, 1092, 163] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
267 11 3 text ERS1034560). 'ProjectID' contains the sample's project identification code in GEO (e.g. GSE80072) or EMBL-EBI (e.g. E-MTAB-4304). 'Publication_DOI' contains the digital object identifier of the origin [110, 204, 878, 555] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
268 11 4 paragraph_title Bulk RNA-seq and microRNA-seq processing and data analysis [110, 580, 627, 602] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Bulk RNA-seq and microRNA-seq processing and data analysis"] subsection_heading 0.6 unknown_like none False True
269 11 5 text Quality control (QC) of raw sequencing reads for each project was performed by FastQC (v0.11.9, https://www.bioinformatics.babraham.ac.uk/projects/fastqc/). Cutadapt (v3.7) was used to find and remove [110, 606, 877, 893] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
270 11 6 text The MSdb's online differential expression analysis tool (https://www.msdb.org.cn/browse/) was used to obtain differentially expressed mRNAs and miRNAs (FDR <0.01 and fold change >2). Down-regulated mi [109, 912, 877, 1045] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
271 11 7 paragraph_title Single cell RNA-seq data processing [111, 1071, 412, 1092] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Single cell RNA-seq data processing"] subsection_heading 0.6 unknown_like none False True
272 11 8 text The genome reference used in scRNA-seq analysis is GRCh38. For droplet-based scRNA-seq, the raw data were processed using Cell Ranger (v7.0.0) or Drop-seq_tools with standard pipeline and default para [109, 1097, 877, 1471] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
273 11 9 number 10 [113, 1513, 133, 1530] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
274 11 10 footer iScience 26, 106933, June 16, 2023 [155, 1511, 380, 1531] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
275 12 0 header iScience Article [111, 102, 241, 163] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
276 12 1 header_image [925, 99, 1091, 155] unknown_structural 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 unknown_like empty False True
277 12 2 paragraph_title Integrated scRNA-seq data analysis [110, 204, 409, 225] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Integrated scRNA-seq data analysis"] subsection_heading 0.6 unknown_like none False True
278 12 3 text We built a single-cell atlas of the synovium containing 101,610 cells from 3 studies and 34 samples. We have implemented a probabilistic model based on a variational autoencoder to integrate single-ce [110, 229, 878, 516] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
279 12 4 text To assess the effectiveness of scVAE for batch correction, we compared the data integration results of scVAE with Harmony. $ ^{47} $ The k-nearest-neighbor batch-effect test (kBET) metric was employed [109, 536, 877, 604] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
280 12 5 paragraph_title Website development [111, 637, 300, 658] unknown_structural 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Website development"] subsection_heading 0.6 unknown_like short_fragment False True
281 12 6 text We developed a user-friendly web interface with advanced functions to present our uniformly curated metadata and NGS data. The front-end interface was developed with HTML5 and CSS3 languages, based on [109, 664, 878, 841] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_like none True True
282 12 7 footer iScience 26, 106933, June 16, 2023 [825, 1512, 1051, 1531] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
283 12 8 number 11 [1073, 1513, 1091, 1530] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False

View file

@ -0,0 +1,376 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,Review,"[76, 52, 178, 82]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,doc_title,Towards intelligent and miniaturized drug delivery devices,"[75, 92, 1072, 204]",paper_title,0.8,"[""page-1 zone title_zone: Towards intelligent and miniaturized drug delivery devices""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,2,text,https://doi.org/10.1038/s41586-026-10221-3,"[75, 287, 407, 312]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: https://doi.org/10.1038/s41586-026-10221-3""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,3,text,Received: 20 August 2024,"[76, 320, 280, 343]",frontmatter_noise,0.7,"[""frontmatter noise text: Received: 20 August 2024""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,4,text,Accepted: 2 February 2026,"[76, 352, 286, 376]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Accepted: 2 February 2026""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,5,text,"Published online: 25 March 2026
Xinwei Wei $ ^{1,2,3,4} $, John B. Buse $ ^{5} $, Hongming Chen $ ^{1,6} $, Tejal A. Desai $ ^{7,8} $, Molly M. Stevens $ ^{9} $, Giovanni Traverso $ ^{10,11,12,13} $, ","[76, 384, 328, 407]",authors,0.8,"[""page-1 zone author_zone: Published online: 25 March 2026\nXinwei Wei $ ^{1,2,3,4} $, J""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,6,text,,"[429, 287, 1064, 332]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,frontmatter_main_zone,support_like,empty,True,True
1,7,text,🔥 Check for updates,"[77, 416, 245, 440]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,frontmatter_main_zone,support_like,short_fragment,False,True
1,8,abstract,"Advances at the intersection of biotechnology, artificial intelligence, electronics and materials science are reshaping how drugs can be delivered inside the body. Intelligent and miniaturized drug de","[429, 373, 1111, 711]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,9,text,"Patient medication management presents a primary challenge, with complex dosing schedules often leading to poor adherence and unsatisfactory treatment efficacy $ ^{1,2} $. Additionally, maintaining dr","[73, 761, 593, 955]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,10,text,"Biomedical devices for drug delivery represent sophisticated tools that enable highly efficient, targeted drug administration with the potential for precise release profiles. Recent advances in this f","[73, 955, 593, 1303]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,11,text,,"[605, 761, 1127, 958]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
1,12,paragraph_title,Device categories,"[608, 991, 782, 1015]",section_heading,0.5,"[""unnumbered paragraph_title on page 1 outside title zone: Device categories""]",section_heading,0.5,body_zone,heading_like,short_fragment,True,True
1,13,text,"Based on the nature of the integrated control modules, IMDDDs can be classified into four categories: bioelectronic therapeutic devices, physically triggered actuators, physiochemical-responsive devic","[606, 1019, 1127, 1107]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,14,paragraph_title,Bioelectronic therapeutic devices,"[607, 1125, 887, 1146]",section_heading,0.5,"[""unnumbered paragraph_title on page 1 outside title zone: Bioelectronic therapeutic devices""]",section_heading,0.5,body_zone,body_like,none,True,True
1,15,text,"Bioelectronic therapeutic devices, integrated with microelectronics and biosensors into wearable or implantable forms, utilize electrical signals to control drug release while enabling precise physiol","[606, 1148, 1127, 1302]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,16,footnote,"1 State Key Laboratory of Advanced Drug Delivery and Release Systems, School of Pharmacy, Zhejiang University, Hangzhou, China. 2 Jinhua Institute of Zhejiang University, Jinhua, China. 3 Liangzhubabo","[72, 1312, 1125, 1493]",footnote,0.7,"[""footnote label: 1 State Key Laboratory of Advanced Drug Delivery and Release""]",footnote,0.7,body_zone,reference_like,reference_numeric_dot,True,True
1,17,footer,Nature | Vol 651 | 26 March 2026,"[824, 1523, 1076, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
1,18,number,897,"[1092, 1524, 1125, 1542]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,0,paragraph_title,Review,"[77, 53, 178, 82]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Review""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,1,image,,"[112, 133, 249, 199]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,2,vision_footnote,IMDDDs,"[357, 104, 418, 126]",footnote,0.7,"[""vision_footnote label: IMDDDs""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,3,image,,"[116, 230, 246, 288]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,4,image,,"[591, 135, 682, 216]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,5,image,,"[268, 158, 560, 410]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,6,image,,"[716, 135, 810, 218]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,7,vision_footnote,Single outlet,"[580, 224, 665, 243]",footnote,0.7,"[""vision_footnote label: Single outlet""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,8,image,,"[844, 134, 950, 217]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,9,vision_footnote,Multiple outlets,"[712, 224, 813, 242]",footnote,0.7,"[""vision_footnote label: Multiple outlets""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,10,image,,"[114, 321, 248, 412]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,11,vision_footnote,Sequential outlets,"[834, 224, 952, 242]",footnote,0.7,"[""vision_footnote label: Sequential outlets""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,12,image,,"[976, 133, 1094, 218]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,13,vision_footnote,In situ action system,"[113, 415, 247, 431]",footnote,0.7,"[""vision_footnote label: In situ action system""]",footnote,0.7,body_zone,body_like,none,True,True
2,14,vision_footnote,Isotropic outlets,"[979, 224, 1088, 242]",footnote,0.7,"[""vision_footnote label: Isotropic outlets""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,15,image,,"[583, 301, 666, 364]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,16,image,,"[113, 440, 249, 557]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,17,image,,"[699, 313, 822, 356]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,18,image,,"[872, 297, 942, 367]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,19,image,,"[993, 314, 1083, 395]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,20,image,,"[326, 456, 429, 551]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,21,image,,"[480, 462, 553, 527]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,22,image,,"[607, 478, 703, 511]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,23,image,,"[761, 458, 823, 528]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,24,image,,"[886, 457, 955, 524]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,25,image,,"[988, 451, 1101, 550]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,26,image,,"[102, 579, 270, 688]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,27,vision_footnote,Flexible electronic patch,"[143, 700, 264, 735]",footnote,0.7,"[""vision_footnote label: Flexible electronic patch""]",footnote,0.7,body_zone,body_like,none,True,True
2,28,image,,"[302, 627, 436, 694]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,29,vision_footnote,Microneedle device,"[307, 708, 436, 727]",footnote,0.7,"[""vision_footnote label: Microneedle device""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,30,image,,"[475, 624, 571, 678]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,31,vision_footnote,Osmotic pump,"[475, 708, 573, 728]",footnote,0.7,"[""vision_footnote label: Osmotic pump""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,32,image,,"[617, 616, 691, 685]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,33,vision_footnote,Core-shell particle,"[618, 699, 690, 735]",footnote,0.7,"[""vision_footnote label: Core-shell particle""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,34,image,,"[735, 622, 843, 682]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,35,vision_footnote,Wireless-controlled implantable device,"[725, 699, 852, 736]",footnote,0.7,"[""vision_footnote label: Wireless-controlled implantable device""]",footnote,0.7,body_zone,body_like,none,True,True
2,36,image,,"[887, 623, 968, 691]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,37,vision_footnote,Contact lens,"[886, 707, 970, 727]",footnote,0.7,"[""vision_footnote label: Contact lens""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,38,image,,"[1003, 615, 1072, 697]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
2,39,vision_footnote,Ingestible device,"[1004, 701, 1072, 734]",footnote,0.7,"[""vision_footnote label: Ingestible device""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
2,40,chart,,"[100, 780, 292, 988]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,41,chart,,"[304, 798, 499, 988]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,42,chart,,"[508, 798, 689, 989]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,43,chart,,"[709, 798, 886, 988]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,44,chart,,"[910, 798, 1098, 989]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
2,45,figure_title,"Fig. 1 | Schematic illustration of the components and categories of IMDDDs. Representative therapeutic devices, device component material, drug release mechanism, administration method, device categor","[74, 1005, 591, 1127]",figure_caption,0.92,"[""figure_title label: Fig. 1 | Schematic illustration of the components and catego""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
2,46,text,"efficient delivery of small therapeutics, biomacromolecules, viruses, cells and even organoids/tissues to treat diseases, as well as for contraception or vaccination. Typical categories of IMDDDs incl","[607, 1005, 1094, 1127]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,47,text,"that rely on predetermined schedules and fixed doses, these systems provide dynamic, on-demand drug administration based on real-time physiological feedback.","[74, 1148, 593, 1213]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,48,text,"Electrically triggered drug actuators are crucial foundations for the realization of bioelectronic therapeutic devices, with precise control, rapid response and programmability $ ^{10} $. These electr","[73, 1212, 594, 1495]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,49,text,,"[606, 1148, 1125, 1191]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
2,50,text,"Closed-loop bioelectronic therapeutic devices monitor human chemical compositions through different biological fluids such as blood, sweat, interstitial fluid, tears and saliva $ ^{8,9} $. In diabetes","[606, 1191, 1128, 1495]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,51,number,898,"[77, 1524, 112, 1543]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,52,footer,Nature | Vol 651 | 26 March 2026,"[128, 1523, 378, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,0,vision_footnote,a Bioelectronic therapeutic devices,"[176, 96, 433, 116]",footnote,0.7,"[""vision_footnote label: a Bioelectronic therapeutic devices""]",footnote,0.7,body_zone,body_like,none,True,True
3,1,image,,"[173, 95, 1027, 1321]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
3,2,vision_footnote,Implantable microchip,"[634, 246, 782, 265]",footnote,0.7,"[""vision_footnote label: Implantable microchip""]",footnote,0.7,body_zone,body_like,none,True,True
3,3,vision_footnote,Smart wound dressing,"[844, 243, 994, 263]",footnote,0.7,"[""vision_footnote label: Smart wound dressing""]",footnote,0.7,body_zone,body_like,none,True,True
3,4,vision_footnote,Wireless theranostic contact lens,"[597, 359, 809, 378]",footnote,0.7,"[""vision_footnote label: Wireless theranostic contact lens""]",footnote,0.7,body_zone,body_like,none,True,True
3,5,vision_footnote,Wearable iontophoresis patch,"[824, 360, 1017, 379]",footnote,0.7,"[""vision_footnote label: Wearable iontophoresis patch""]",footnote,0.7,body_zone,body_like,none,True,True
3,6,vision_footnote,"Robotic mucus-clearing
capsule","[613, 533, 771, 568]",footnote,0.7,"[""vision_footnote label: Robotic mucus-clearing\ncapsule""]",footnote,0.7,body_zone,body_like,none,True,True
3,7,vision_footnote,Osmotic microneedle device,"[814, 542, 1000, 560]",footnote,0.7,"[""vision_footnote label: Osmotic microneedle device""]",footnote,0.7,body_zone,body_like,none,True,True
3,8,vision_footnote,"Self-orienting
millimetre-scale applicator","[608, 656, 779, 690]",footnote,0.7,"[""vision_footnote label: Self-orienting\nmillimetre-scale applicator""]",footnote,0.7,body_zone,body_like,none,True,True
3,9,vision_footnote,"Luminal unfolding
microneedle injector","[840, 654, 974, 690]",footnote,0.7,"[""vision_footnote label: Luminal unfolding\nmicroneedle injector""]",footnote,0.7,body_zone,body_like,none,True,True
3,10,vision_footnote,c Physiochemical-responsive devices,"[177, 704, 449, 725]",footnote,0.7,"[""vision_footnote label: c Physiochemical-responsive devices""]",footnote,0.7,body_zone,body_like,none,True,True
3,11,vision_footnote,"Small molecules (glucose, ATP, ROS)","[404, 855, 540, 892]",footnote,0.7,"[""vision_footnote label: Small molecules (glucose, ATP, ROS)""]",footnote,0.7,body_zone,body_like,none,True,True
3,12,vision_footnote,Controlled-release microparticles,"[629, 843, 754, 879]",footnote,0.7,"[""vision_footnote label: Controlled-release microparticles""]",footnote,0.7,body_zone,body_like,none,True,True
3,13,vision_footnote,"Biomacromolecules (enzyme, nucleic acid)","[395, 923, 542, 971]",footnote,0.7,"[""vision_footnote label: Biomacromolecules (enzyme, nucleic acid)""]",footnote,0.7,body_zone,body_like,none,True,True
3,14,vision_footnote,Smart insulin microneedle device,"[844, 846, 976, 879]",footnote,0.7,"[""vision_footnote label: Smart insulin microneedle device""]",footnote,0.7,body_zone,body_like,none,True,True
3,15,vision_footnote,Glucose-responsive catheter-combined device,"[608, 963, 778, 999]",footnote,0.7,"[""vision_footnote label: Glucose-responsive catheter-combined device""]",footnote,0.7,body_zone,body_like,none,True,True
3,16,vision_footnote,Polymeric membrane-enclosed drug crystal,"[838, 961, 984, 997]",footnote,0.7,"[""vision_footnote label: Polymeric membrane-enclosed drug crystal""]",footnote,0.7,body_zone,body_like,none,True,True
3,17,text,"representations of IMDDDs. a, Bioelectronic therapeutic devices, including implantable microchip $ ^{123} $, smart wound dressing $ ^{19,20,135} $, wireless theranostic contact lens $ ^{16,21} $ and w","[73, 1342, 583, 1447]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,18,text,,"[606, 1324, 1102, 1447]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,19,footer,Nature | Vol 651 | 26 March 2026,"[822, 1523, 1075, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
3,20,number,899,"[1091, 1524, 1125, 1542]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,0,header,Review,"[76, 53, 178, 81]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,text,"Similarly, wireless therapeutic contact lenses monitor intraocular pressure for on-demand delivery of anti-glaucoma drugs $ ^{21} $. In neurology, wearable devices that detect epilepsy-triggered elect","[73, 94, 593, 205]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,2,paragraph_title,Physically triggered actuators,"[74, 221, 324, 243]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Physically triggered actuators""]",subsection_heading,0.6,body_zone,body_like,none,True,True
4,3,text,"Physically triggered actuators respond to specific external non-electrical stimuli such as mechanical, acoustic, thermal, optical and magnetic signals $ ^{11} $. Mechanically triggered actuators respo","[73, 246, 594, 568]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,4,text,"Heat-triggered systems realize drug release through temperature-sensitive materials integrated into wearable, implantable or ingestible devices $ ^{28-30} $. Heating methods include Joule heating, and","[73, 568, 594, 848]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,5,text,"Although combining multiple triggering mechanisms could enhance precision, such approaches introduce concerns about manufacturing complexity, quality assurance and action reliability. Furthermore, the","[73, 848, 594, 1000]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,6,paragraph_title,Physiochemical-responsive devices,"[74, 1017, 366, 1039]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Physiochemical-responsive devices""]",subsection_heading,0.6,body_zone,body_like,none,True,True
4,7,text,"Intrinsic physiochemical signals can also be directly applied to precision therapies $ ^{35} $. These systems rely predominantly on detecting, responding to or transforming signals from the physiologi","[73, 1041, 593, 1170]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,8,text,The prevalence of ions such as $ Ca^{2+} $ and $ Mg^{2+} $ in physiological fluids and on mucous membranes makes them ideal triggers for local drug delivery devices $ ^{35} $. Polymers such as gella,"[73, 1170, 593, 1385]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,9,text,"The reversible boronic aciddiol interaction between boronic acid and glucose has been utilized extensively in devices for management of glucose-responsive diabetes $ ^{38-40} $. For example, a micron","[73, 1385, 594, 1494]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,10,text,,"[606, 94, 1127, 289]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,11,text,"Material degradation provides a tunable parameter for controlling drug release kinetics. Poly(lactic-co-glycolic acid) (PLGA) exemplified this, whereby adjusting molecular weights and compositions ena","[606, 289, 1126, 481]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,12,text,"Individual responsive motifs may be activated by distinct environmental parameters, risking non-specific drug release. Enzymes can address this by catalysing highly specific reactions under mild condi","[605, 482, 1126, 700]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,13,paragraph_title,Living devices,"[607, 716, 730, 737]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Living devices""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
4,14,text,"The integration of live therapeutic agents, including mammalian cells, bacteria and complex organoids/tissues, into IMDDDs to create 'living devices' is an emerging field. Developing such systems requ","[605, 739, 1126, 848]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,15,text,"Manufacturing living devices depends on precise control over substance exchange (for example, oxygen and essential amino acids) and environmental conditions (for example, pH and temperature). Devices ","[606, 847, 1127, 1235]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,16,text,"In addition, the specialized microstructural features of living devices, such as micropores, microgrooves and microcolumns, provide essential space for therapeutic cell attachment and growth $ ^{57,58","[605, 1235, 1127, 1428]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,17,text,Mechanical strength and biocompatibility are crucial variables for implantation of such devices. Mechanical strength is crucial for maintaining structural integrity against the diverse forces that are,"[605, 1427, 1127, 1495]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,18,number,900,"[77, 1524, 115, 1543]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,19,footer,Nature | Vol 651 | 26 March 2026,"[129, 1523, 381, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
5,0,image,,"[82, 104, 1106, 881]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,body_like,empty,True,True
5,1,figure_title,"Fig.3 | AI augments IMDDDs. AI augments design and fabrication of IMDDDs in three ways: AI-assisted drug development, device design and manufacturing, and data processing. This integration has promote","[73, 892, 594, 954]",figure_caption_candidate,0.85,"[""figure_title label: Fig.3 | AI augments IMDDDs. AI augments design and fabricati""]",figure_caption,0.85,body_zone,legend_like,none,False,False
5,2,text,"in complex biological environments. Biocompatibility depends on material properties, location in the body, the surrounding environment and specific clinical application. Improving device biocompatibil","[73, 977, 595, 1129]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,3,paragraph_title,AI augments IMDDDs,"[76, 1164, 283, 1187]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: AI augments IMDDDs""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
5,4,text,"AI technologies, encompassing machine learning, deep learning and advanced algorithms, are driving unprecedented transformations across science and daily life. In the drug delivery field, AI is revolu","[72, 1192, 594, 1366]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,5,paragraph_title,AI-assisted design and fabrication of IMDDDs,"[74, 1401, 503, 1424]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: AI-assisted design and fabrication of IMDDDs""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,6,text,"The design and fabrication of AI-assisted IMDDDs innovate in three ways, from the design and manufacturing of drugs and devices to controlling and optimizing the delivery function.","[73, 1427, 593, 1495]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,figure_title,"of AI-driven IMDDDs, including closed-loop systems, personalized platforms and microrobots for target delivery. UAV, unmanned aerial vehicle.","[607, 892, 1125, 933]",figure_caption_candidate,0.85,"[""figure_title label: of AI-driven IMDDDs, including closed-loop systems, personal""]",figure_caption,0.85,body_zone,legend_like,none,False,False
5,8,paragraph_title,AI-assisted drug development,"[607, 996, 856, 1017]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: AI-assisted drug development""]",subsection_heading,0.6,body_zone,body_like,none,True,True
5,9,text,"In the field of drug discovery, AI algorithms such as deep learning are frequently used in target recognition and virtual screening. For example, a deep learning model developed on the basis of geneti","[606, 1019, 1127, 1171]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,10,text,"AI techniques are also used in drug design to optimize drug molecular structures and ADMET (absorption, distribution, metabolism, excretion, toxicity) properties. The PockerFlow model, for instance, c","[605, 1171, 1128, 1495]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,11,footer,Nature | Vol 651 | 26 March 2026,"[825, 1523, 1078, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
5,12,number,901,"[1093, 1524, 1125, 1542]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,0,paragraph_title,Review,"[76, 53, 178, 82]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Review""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
6,1,text,properties of the compound can be optimized by tuning drug structure and its interaction with the formation or device $ ^{70} $.,"[73, 93, 593, 140]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,2,paragraph_title,AI-assisted device fabrication,"[74, 157, 319, 178]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: AI-assisted device fabrication""]",subsection_heading,0.6,body_zone,body_like,none,True,True
6,3,text,"Leveraging the advanced data-processing capabilities of AI, researchers can also construct multi-parametric models that are tuned to specific requirements and automatically generate optimized drug for","[73, 181, 594, 503]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,4,text,"Beyond design, AI technologies are integrated into manufacturing processes through automated production, intelligent inspection, and adaptive management. In particular, 3D printing has emerged as a ke","[72, 504, 594, 825]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,5,text,"By integrating data from multiple test modalities, AI algorithms can also construct predictive models to comprehensively assess device performance, enhancing testing efficiency and accuracy. Moreover,","[73, 825, 593, 957]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,6,paragraph_title,AI-assisted data processing,"[75, 974, 303, 996]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: AI-assisted data processing""]",subsection_heading,0.6,body_zone,body_like,none,True,True
6,7,text,"With advanced data-processing capabilities, AI has markedly enhanced the accuracy, efficiency, and automation of medical data analysis. For instance, deep learning approaches identify key information ","[73, 998, 593, 1277]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,8,text,"Blood pressure is a dynamic and nonlinear physiological signal, and traditional cuff-based methods are limited by their inability to provide continuous monitoring. Deep learning models, such as CNNs, ","[73, 1277, 594, 1495]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,9,text,,"[605, 94, 1126, 137]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
6,10,text,"AI models have demonstrated strong performance across a range of medical imaging modalities, including computed tomography, magnetic resonance imaging, ultrasound and endoscopy, substantially improvin","[605, 138, 1128, 419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,11,paragraph_title,Representative forms of AI-driven IMDDDs AI-driven closed-loop IMDDDs,"[606, 454, 1014, 501]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Representative forms of AI-driven IMDDDs AI-driven closed-lo""]",subsection_heading,0.6,body_zone,body_like,none,True,True
6,12,text,"AI-driven closed-loop devices integrate smart sensing, real-time data analysis and autonomous drug administration to dynamically choreograph dosing regimens in response to the physiological status of ","[605, 503, 1126, 610]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,13,text,"The AI-driven closed-loop insulin delivery system uses continuous glucose monitoring and machine learning algorithms to analyse real-time glucose data and predict future trends, enabling dynamic adjus","[605, 610, 1127, 870]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,14,text,"In neurological disorders such as epilepsy and neurodegenerative diseases, AI has been widely applied to diagnosis and treatment $ ^{93,94} $. When a seizure is detected quickly using AI algorithms, d","[606, 869, 1127, 1260]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,15,paragraph_title,AI-driven personalized IMDDDs,"[607, 1275, 870, 1297]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: AI-driven personalized IMDDDs""]",subsection_heading,0.6,body_zone,body_like,none,True,True
6,16,text,"Image recognition technologies powered by advanced computer vision algorithms enable automated analysis of visual data for target detection, object identification and scene analysis. These capabilitie","[605, 1298, 1127, 1495]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,17,number,902,"[77, 1524, 114, 1542]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,18,footer,Nature | Vol 651 | 26 March 2026,"[128, 1523, 379, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
7,0,text,"to lesion severity and anatomical location $ ^{99} $. Image recognition has also facilitated the development of autonomous drug delivery systems. During emergencies, unmanned aerial vehicles equipped ","[72, 94, 593, 289]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,1,text,"Additionally, speech recognition—another key AI modality—offers intuitive, hands-free interaction in healthcare settings. This technology can enhance patient education, monitoring and communication, a","[72, 289, 594, 549]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,2,paragraph_title,AI-driven microrobots for drug delivery,"[74, 566, 400, 587]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: AI-driven microrobots for drug delivery""]",subsection_heading,0.6,body_zone,body_like,none,True,True
7,3,text,"Microrobots show great application potential in drug delivery, and integrating AI enables them to adapt to dynamic environments and perform complex medical tasks $ ^{103,104} $. AI algorithms can help","[72, 589, 593, 978]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,4,text,"Despite immense potential, applying AI in drug delivery faces critical challenges. Effective AI models require extensive training on large, high-quality datasets. Systematic biases in medical data, su","[73, 978, 593, 1216]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,5,paragraph_title,Clinical applications of IMDDDs,"[75, 1249, 379, 1273]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Clinical applications of IMDDDs""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
7,6,text,This section presents examples of IMDDDs designed for various medical indications—recent representative devices are listed in Supplementary Table 1.,"[73, 1277, 593, 1343]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,7,paragraph_title,Cancer therapy,"[75, 1361, 206, 1383]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Cancer therapy""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
7,8,text,"Precise and effective delivery of anticancer drugs to tumour sites is crucial for therapeutic outcomes. However, conventional approaches (including chemotherapy, radiotherapy and surgery), targeted th","[72, 1384, 594, 1494]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,9,text,,"[606, 94, 1127, 439]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,10,text,"Patch devices have shown efficacy with both small molecule chemotherapeutic agents (doxorubicin, docetaxel and cisplatin) and immune checkpoint antibody drugs (anti-PD-1, anti-PD-L1 and anti-CTLA-4) $","[605, 438, 1128, 741]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,11,text,"Moreover, bioelectronics-mediated devices enable targeted delivery, minimizing non-specific drug toxicity, and the integration of wireless control technology can greatly simplify the process of drug r","[605, 740, 1127, 1002]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,12,paragraph_title,Diabetes treatment,"[607, 1017, 774, 1038]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Diabetes treatment""]",subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
7,13,text,"Wearable insulin delivery devices, particularly transdermal patches, represent leading IMDDDs in diabetes management. Integrated glucose sensors and drug delivery modules in flexible electronic patche","[606, 1040, 1127, 1343]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,14,text,"Researchers have also engineered oral capsules that target insulin delivery to gastrointestinal tissues, overcoming challenges of the gastrointestinal environment and low bioavailability. Examples inc","[605, 1342, 1127, 1494]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,15,footer,Nature | Vol 651 | 26 March 2026,"[821, 1523, 1074, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
7,16,number,903,"[1089, 1524, 1125, 1542]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,0,header,Review,"[76, 53, 178, 81]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,text,"stomach acid $ ^{121} $; and the RoboCap, which enhances insulin bioavailability through mucus removal and improved mixing $ ^{122} $. A recently developed cephalopod-inspired jetting capsule device c","[73, 93, 593, 202]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,2,text,"Bioelectronic implants for subcutaneous insulin delivery provide another promising approach. One platform uses wireless power to trigger electrochemical crevice corrosion of valve structure, releasing","[73, 203, 594, 420]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,3,paragraph_title,Vaccination,"[75, 436, 180, 458]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Vaccination""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
8,4,text,"Poor adherence represents a significant barrier to global vaccine progress $ ^{2} $. Traditional vaccination methods using needles and syringes often face resistance due to injection-associated pain, ","[73, 461, 594, 697]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,5,text,"Microneedle devices have also emerged as a compelling alternative to transdermal, subcutaneous or intramuscular vaccinations with minimal invasiveness and discomfort. These devices demonstrate lower r","[73, 697, 593, 1066]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,6,paragraph_title,Treatment of other diseases,"[74, 1081, 305, 1102]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Treatment of other diseases""]",subsection_heading,0.6,body_zone,body_like,none,True,True
8,7,text,"In cardiovascular disease treatment, flexible smart patches monitor cardiac electrophysiological signals and deliver drugs to mitigate myocardial infarction risks $ ^{130} $. For vascular intervention","[73, 1106, 593, 1386]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,8,text,IMDDDs display significant advantages in wound management through advanced monitoring and delivery capabilities. Integrated sensors enable real-time monitoring of physical and chemical signals at woun,"[72, 1385, 593, 1494]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,9,text,,"[606, 94, 1127, 288]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
8,10,text,"Microneedle-based contraceptives deploy a drug-containing matrix subcutaneously through gas bubble separation, enabling sustained release of levonorgestrel for up to one month $ ^{139} $. With product","[605, 288, 1127, 463]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,11,paragraph_title,Outlook,"[608, 497, 695, 520]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Outlook""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
8,12,text,"The evolution of IMDDDs is entering a transformative era, ushering in a new paradigm of personalized, connected and adaptive medications. However, as presented in Box 1, clinical translation of IMDDDs","[606, 524, 1127, 934]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,13,text,"Device reliability represents another crucial factor in clinical evaluation, extending beyond mere structural rigidity. These devices must operate in complex biological environments, withstanding both","[606, 934, 1127, 1300]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,14,text,"Miniaturization of delivery devices is an important development trend for precision and minimally invasive medicine. The reduction of device size often limits the amount of drug loading, and the use o","[605, 1299, 1127, 1494]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,15,number,904,"[77, 1524, 114, 1542]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,16,footer,Nature | Vol 651 | 26 March 2026,"[128, 1523, 380, 1543]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
9,0,paragraph_title,Box 1,"[88, 106, 158, 133]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Box 1""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,False,False
9,1,doc_title,Clinical translation status and principles of IMDDDS,"[86, 151, 865, 189]",noise,0.2,"[""unrecognized label 'doc_title'""]",unknown_structural,0.2,body_zone,body_like,none,False,False
9,2,text,"Although many drug delivery devices have emerged for disease diagnosis and treatment, with many advancing to clinical trials (Box Fig. 1 and Supplementary Table 1), significant challenges exist for ac","[84, 204, 581, 654]",noise,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
9,3,paragraph_title,Device performance,"[87, 656, 251, 674]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Device performance""]",subsection_heading,0.6,body_zone,body_like,short_fragment,False,False
9,4,text,"• Effectiveness: ensure targeted drug delivery, precise dose control and/or enhanced bioavailability to achieve the desired therapeutic outcome.","[86, 676, 587, 739]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
9,5,text,• Reliability: require robust resistance to chemical erosion and immunological allograft rejection to ensure structural integrity and functional durability.,"[86, 741, 592, 804]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
9,6,text,"• Safety: prioritize biocompatibility, controllability of drug release and secure data communication to mitigate physical and cyber risks.","[85, 806, 573, 868]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
9,7,paragraph_title,Device manufacturing,"[88, 871, 264, 890]",structured_insert,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Device manufacturing""]",subsection_heading,0.6,body_zone,body_like,none,False,False
9,8,text,• Consistency: maintain strict quality control and process variables to ensure identical device performance across all production batches.,"[86, 892, 580, 954]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
9,9,text,• Cost: develop scalable and cost-effective manufacturing processes to enable commercial feasibility and broad patient access.,"[85, 956, 551, 1020]",structured_insert,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,False,False
9,10,chart,,"[609, 200, 1117, 550]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
9,11,text,"of multiple functionalities beyond size reduction alone, including incorporating enhanced capabilities, including real-time physiological monitoring, self-regulating drug release mechanisms and integr","[74, 1062, 593, 1148]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,12,chart,,"[610, 581, 1115, 882]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,body_like,empty,True,True
9,13,text,"Many devices interface directly with the patient's physiological systems, requiring comprehensive safety considerations. Implantable devices often face immune responses that can lead to tissue damage ","[73, 1149, 593, 1496]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,14,figure_title,Box 1 Fig. 1 | Percentage of clinical trials for drug delivery devices for distinct disease and device types over the past five years. Data were collected from ClinicalTrials.gov. Keywords such as 'ca,"[607, 896, 1122, 1037]",figure_caption_candidate,0.85,"[""figure_title label: Box 1 Fig. 1 | Percentage of clinical trials for drug delive""]",figure_caption,0.85,body_zone,legend_like,none,False,False
9,15,text,"The evolution of drug delivery devices is trending toward enhanced integration and intelligence with patient-centred goals. The incorporation of natural biomolecules, including proteins and nucleic ac","[606, 1063, 1127, 1428]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,16,text,"Moreover, cost-effective manufacturing solutions are essential for the widespread adoption of these advanced devices. The implementation of AI-driven intelligent manufacturing and automated production","[606, 1429, 1127, 1493]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,17,footer,Nature | Vol 651 | 26 March 2026,"[822, 1524, 1074, 1544]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
9,18,number,905,"[1090, 1525, 1125, 1542]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,0,header,Review,"[77, 53, 177, 81]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,1,text,"process offers pathways to reduce production costs and time, while the development of durable, economical biomaterials facilitates more affordable scaling of smart device production. The AI-supported ","[73, 94, 593, 246]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,2,reference_content,"1. Langer, R. & Tirrell, D. A. Designing materials for biology and medicine. Nature 428, 487492 (2004).","[75, 271, 592, 303]",reference_item,0.85,"[""reference content label: 1. Langer, R. & Tirrell, D. A. Designing materials for biolo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,3,reference_content,"2. Baryakova, T. H., Pogostin, B. H., Langer, R. & McHugh, K. J. Overcoming barriers to patient adherence: the case for developing innovative drug delivery systems. Nat. Rev. Drug Discov. 22, 387409 ","[75, 305, 590, 351]",reference_item,0.85,"[""reference content label: 2. Baryakova, T. H., Pogostin, B. H., Langer, R. & McHugh, K""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,4,reference_content,"3. Farra, R. et al. First-in-human testing of a wirelessly controlled drug delivery microchip. Sci. Transl. Med. 4, 122ra121 (2012).","[77, 353, 575, 384]",reference_item,0.85,"[""reference content label: 3. Farra, R. et al. First-in-human testing of a wirelessly c""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,5,reference_content,This paper reports on the first clinical trial of an implantable microchip-based drug delivery device.,"[76, 384, 568, 415]",reference_item,0.85,"[""reference content label: This paper reports on the first clinical trial of an implant""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,6,reference_content,"4. Yu, J. et al. Microneedle-array patches loaded with hypoxia-sensitive vesicles provide fast glucose-responsive insulin delivery. Proc. Natl Acad. Sci. USA 112, 82608265 (2015).","[78, 417, 588, 450]",reference_item,0.85,"[""reference content label: 4. Yu, J. et al. Microneedle-array patches loaded with hypox""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,7,reference_content,This paper describes a glucose-responsive transdermal device for regulation of insulin release.,"[76, 450, 589, 480]",reference_item,0.85,"[""reference content label: This paper describes a glucose-responsive transdermal device""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,8,reference_content,"5. Arrick, G. et al. Cephalopod-inspired jetting devices for gastrointestinal drug delivery. Nature 636, 481487 (2024).","[77, 482, 576, 516]",reference_item,0.85,"[""reference content label: 5. Arrick, G. et al. Cephalopod-inspired jetting devices for""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,9,reference_content,This study developed and evaluated microjet delivery systems that can deliver jets in axial and radial directions into tissue.,"[75, 514, 581, 545]",reference_item,0.85,"[""reference content label: This study developed and evaluated microjet delivery systems""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,10,reference_content,"6. Shi, J. et al. Active biointegrated living electronics for managing inflammation. Science 384, 10231030 (2024).","[77, 547, 590, 582]",reference_item,0.85,"[""reference content label: 6. Shi, J. et al. Active biointegrated living electronics fo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,11,reference_content,This paper reports a biointegrated living device that wirelessly records electrical signals from the skin surface and improves disease treatment in a mouse model of psoriasis.,"[76, 577, 587, 609]",reference_item,0.85,"[""reference content label: This paper reports a biointegrated living device that wirele""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,12,reference_content,"7. Yin, D. et al. A battery-free nanofluidic intracellular delivery patch for internal organs. Nature 642. 10511061 (2025).","[77, 610, 564, 645]",reference_item,0.85,"[""reference content label: 7. Yin, D. et al. A battery-free nanofluidic intracellular d""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,13,reference_content,"This paper describes a chipless, soft nanofluidic intracellular delivery patch that provides enhanced and customized delivery of payloads in targeted internal organ","[77, 640, 566, 671]",reference_item,0.85,"[""reference content label: This paper describes a chipless, soft nanofluidic intracellu""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,14,reference_content,"9. Paci, M. M. et al. Smart closed-loop drug delivery systems. Nat. Rev. Bioeng. 3, 816834 (2025).","[76, 705, 580, 736]",reference_item,0.85,"[""reference content label: 9. Paci, M. M. et al. Smart closed-loop drug delivery system""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,15,reference_content,"8. Zheng, M., Sheng, T., Yu, J., Gu, Z. & Xu, C. Microneedle biomedical devices. Nat. Rev. Bioeng. 2, 324342 (2024).","[75, 672, 589, 705]",reference_item,0.85,"[""reference content label: 8. Zheng, M., Sheng, T., Yu, J., Gu, Z. & Xu, C. Microneedle""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,16,reference_content,"10. Mirvakili, S. M. & Langer, R. Wireless on-demand drug delivery. Nat. Electron. 4, 464477 (2021).","[77, 737, 581, 768]",reference_item,0.85,"[""reference content label: 10. Mirvakili, S. M. & Langer, R. Wireless on-demand drug de""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,17,reference_content,"11. Wei, X. et al. Wirelessly controlled drug delivery systems for translational medicine. Nat. Rev. Electr. Eng. 2, 244262 (2025).","[77, 770, 574, 801]",reference_item,0.85,"[""reference content label: 11. Wei, X. et al. Wirelessly controlled drug delivery syste""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,18,reference_content,"12. He, H. et al. Hybrid assembly of polymeric nanofiber network for robust and electronically conductive hydrogels. Nat. Commun. 14, 759 (2023).","[77, 802, 590, 833]",reference_item,0.85,"[""reference content label: 12. He, H. et al. Hybrid assembly of polymeric nanofiber net""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,19,reference_content,"13. Oh, B. et al. 3D printable and biocompatible PEDOT: PSS-ionic liquid colloids with high conductivity for rapid on-demand fabrication of 3D bioelectronics. Nat. Commun. 15, 5839 (2024).","[77, 834, 589, 879]",reference_item,0.85,"[""reference content label: 13. Oh, B. et al. 3D printable and biocompatible PEDOT: PSS-""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,20,reference_content,"14. Zhang, T. et al. Two-dimensional polyaniline crystal with metallic out-of-plane conductivity. Nature 638, 411417 (2025).","[77, 881, 591, 913]",reference_item,0.85,"[""reference content label: 14. Zhang, T. et al. Two-dimensional polyaniline crystal wit""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,21,reference_content,"15. Zhou, Y. et al. An integrated Mg battery-powered iontophoresis patch for efficient and controllable transdermal drug delivery. Nat. Commun. 14, 297 (2023).","[77, 915, 573, 946]",reference_item,0.85,"[""reference content label: 15. Zhou, Y. et al. An integrated Mg battery-powered iontoph""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,22,reference_content,"16. Keum, D. H. et al. Wireless smart contact lens for diabetic diagnosis and therapy. Sci. Adv. 6, eaba3252 (2020).","[77, 947, 588, 977]",reference_item,0.85,"[""reference content label: 16. Keum, D. H. et al. Wireless smart contact lens for diabe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,23,reference_content,"17. Wang, G. et al. Optimized glycemic control of type 2 diabetes with reinforcement learning: a proof-of-concept trial. Nat. Med. 29, 26332642 (2023).","[81, 980, 588, 1011]",reference_item,0.85,"[""reference content label: 17. Wang, G. et al. Optimized glycemic control of type 2 dia""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,24,reference_content,"This study developed a model-based reinforcement learning framework, which learns the optimal insulin regimen by analysing glycaemic state rewards through patient model interactions.","[78, 1010, 584, 1057]",reference_item,0.85,"[""reference content label: This study developed a model-based reinforcement learning fr""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,25,reference_content,"18. Jiang, Y. et al. Wireless, closed-loop, smart bandage with integrated sensors and stimulators for advanced wound care and accelerated healing. Nat. Biotechnol. 41, 652662 (2023).","[77, 1059, 591, 1090]",reference_item,0.85,"[""reference content label: 18. Jiang, Y. et al. Wireless, closed-loop, smart bandage wi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,26,reference_content,"19. Shirzaei Sani, E. et al. A stretchable wireless wearable bioelectronic system for multiplexed monitoring and combination treatment of infected chronic wounds. Sci. Adv. 9, eadf7388 (2023).","[77, 1091, 591, 1136]",reference_item,0.85,"[""reference content label: 19. Shirzaei Sani, E. et al. A stretchable wireless wearable""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,27,reference_content,"20. Ge, Z. et al. Wireless and closed-loop smart dressing for exudate management and on-demand treatment of chronic wounds. Adv. Mater. 35, 2304005 (2023).","[77, 1139, 556, 1170]",reference_item,0.85,"[""reference content label: 20. Ge, Z. et al. Wireless and closed-loop smart dressing fo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,28,reference_content,"21. Kim, T. Y. et al. Wireless theranostic smart contact lens for monitoring and control of intraocular pressure in glaucoma. Nat. Commun. 13, 6801 (2022).","[77, 1171, 561, 1202]",reference_item,0.85,"[""reference content label: 21. Kim, T. Y. et al. Wireless theranostic smart contact len""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,29,reference_content,"22. Joo, H. et al. Soft implantable drug delivery device integrated wirelessly with wearable devices to treat fatal seizures. Sci. Adv. 7, eabd4639 (2021).","[77, 1204, 577, 1234]",reference_item,0.85,"[""reference content label: 22. Joo, H. et al. Soft implantable drug delivery device int""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,30,reference_content,"23. Zhang, Y., Yu, J., Bomba, H. N., Zhu, Y. & Gu, Z. Mechanical force-triggered drug delivery. Chem. Rev. 116, 1253612563 (2016).","[77, 1235, 582, 1266]",reference_item,0.85,"[""reference content label: 23. Zhang, Y., Yu, J., Bomba, H. N., Zhu, Y. & Gu, Z. Mechan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,31,reference_content,"24. Abramson, A. et al. An ingestible self-orienting system for oral delivery of macromolecules. Science 363, 611615 (2019).","[80, 1267, 587, 1300]",reference_item,0.85,"[""reference content label: 24. Abramson, A. et al. An ingestible self-orienting system ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,32,reference_content,This study developed an ingestible delivery vehicle that could self-reorient from any starting position so as to attach to the gastric wall.,"[77, 1300, 569, 1329]",reference_item,0.85,"[""reference content label: This study developed an ingestible delivery vehicle that cou""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,33,reference_content,"25. Zhao, S. et al. A wearable osmotic microneedle patch provides high-capacity sustainable drug delivery in animal models. Sci. Transl. Med. 16, eadp3611 (2024). This paper reports an osmotic microne","[76, 1330, 565, 1398]",reference_item,0.85,"[""reference content label: 25. Zhao, S. et al. A wearable osmotic microneedle patch pro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,34,reference_content,"26. Zhang, Y. et al. Battery-free, lightweight, injectable microsystem for in vivo wireless pharmacology and optogenetics. Proc. Natl Acad. Sci. USA 116, 2142721437 (2019).","[77, 1396, 558, 1427]",reference_item,0.85,"[""reference content label: 26. Zhang, Y. et al. Battery-free, lightweight, injectable m""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,35,reference_content,"27. Xu, J. et al. Acoustic metamaterials-driven transdermal drug delivery for rapid and on-demand management of acute disease. Nat. Commun. 14, 869 (2023).","[76, 1429, 549, 1458]",reference_item,0.85,"[""reference content label: 27. Xu, J. et al. Acoustic metamaterials-driven transdermal ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,36,reference_content,"28. Son, D. et al. Multifunctional wearable devices for diagnosis and therapy of movement disorders. Nat. Nanotechnol. 9, 397404 (2014).","[77, 1460, 575, 1490]",reference_item,0.85,"[""reference content label: 28. Son, D. et al. Multifunctional wearable devices for diag""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,37,reference_content,"29. Jeong, J.-W. et al. Wireless optofluidic systems for programmable in vivo pharmacology and optogenetics. Cell 162, 662674 (2015).","[609, 98, 1123, 126]",reference_item,0.85,"[""reference content label: 29. Jeong, J.-W. et al. Wireless optofluidic systems for pro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,38,reference_content,"31. Lee, J. et al. Flexible, sticky, and biodegradable wireless device for drug delivery to brain tumors. Nat. Commun. 10, 5205 (2019).","[609, 161, 1117, 191]",reference_item,0.85,"[""reference content label: 31. Lee, J. et al. Flexible, sticky, and biodegradable wirel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,39,reference_content,"30. Babaee, S. et al. Temperature-responsive biometamaterials for gastrointestinal applications. Sci. Transl. Med. 11, eaau8581 (2019).","[609, 129, 1124, 159]",reference_item,0.85,"[""reference content label: 30. Babaee, S. et al. Temperature-responsive biometamaterial""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,40,reference_content,"32. Lee, H. et al. A graphene-based electrochemical device with thermoresponsive microneedles for diabetes monitoring and therapy. Nat. Nanotechnol. 11, 566572 (2016)","[610, 193, 1113, 224]",reference_item,0.85,"[""reference content label: 32. Lee, H. et al. A graphene-based electrochemical device w""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,41,reference_content,"33. Lee, S. H. et al. Magnetically-driven implantable pump for on-demand bolus infusion of short-acting glucagon-like peptide-1 receptor agonist. J. Control. Release 325, 111120 (2020).","[610, 220, 1117, 270]",reference_item,0.85,"[""reference content label: 33. Lee, S. H. et al. Magnetically-driven implantable pump f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,42,reference_content,"34. Jayaneththi, V. et al. Controlled transdermal drug delivery using a wireless magnetic microneedle patch: Preclinical device development. Sensor Actuat. B 297, 126708 (2019).","[610, 273, 1120, 304]",reference_item,0.85,"[""reference content label: 34. Jayaneththi, V. et al. Controlled transdermal drug deliv""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,43,reference_content,"35. Lu, Y., Aimetti, A. A., Langer, R. & Gu, Z. Bioresponsive materials. Nat. Rev. Mater. 2, 117 (2016).","[611, 305, 1108, 335]",reference_item,0.85,"[""reference content label: 35. Lu, Y., Aimetti, A. A., Langer, R. & Gu, Z. Bioresponsiv""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,44,reference_content,"36. Liu, G. W. et al. Drinkable in situ-forming tough hydrogels for gastrointestinal therapeutics. Nat. Mater. 23, 12921299 (2024).","[610, 337, 1123, 367]",reference_item,0.85,"[""reference content label: 36. Liu, G. W. et al. Drinkable in situ-forming tough hydrog""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,45,reference_content,"37. Chen, Q. et al. In situ sprayed bioresponsive immunotherapeutic gel for post-surgical cancer treatment. Nat. Nanotechnol. 14, 8997 (2019).","[612, 372, 1101, 404]",reference_item,0.85,"[""reference content label: 37. Chen, Q. et al. In situ sprayed bioresponsive immunother""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,46,reference_content,"38. Xu, J. et al. A bioinspired polymeric membrane-enclosed insulin crystal achieves long-term, self-regulated drug release for type 1 diabetes therapy. Nat. Nanotechnol. 20, 697-706 (2025).","[610, 434, 1117, 478]",reference_item,0.85,"[""reference content label: 38. Xu, J. et al. A bioinspired polymeric membrane-enclosed ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,47,reference_content,This paper reports an in situ formed immunotherapeutic bioresponsive gel that controls both local tumour recurrence after surgery and development of distant tumours.,"[612, 397, 1121, 433]",reference_item,0.85,"[""reference content label: This paper reports an in situ formed immunotherapeutic biore""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
10,48,reference_content,"39. Wang, Z. et al. Dual self-regulated delivery of insulin and glucagon by a hybrid patch. Proc. Natl Acad. Sci. USA 117, 2951229517 (2020).","[610, 481, 1099, 511]",reference_item,0.85,"[""reference content label: 39. Wang, Z. et al. Dual self-regulated delivery of insulin ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,49,reference_content,"40. Matsumoto, A. et al. Synthetic ""smart gel"" provides glucose-responsive insulin delivery in diabetic mice. Sci. Adv. 3, eaaq0723 (2017).","[610, 514, 1121, 545]",reference_item,0.85,"[""reference content label: 40. Matsumoto, A. et al. Synthetic \""smart gel\"" provides gluc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,50,reference_content,"41. Yu, J. et al. Glucose-responsive insulin patch for the regulation of blood glucose in mice and minipigs. Nat. Biomed. Eng. 4, 499506 (2020).","[610, 546, 1115, 577]",reference_item,0.85,"[""reference content label: 41. Yu, J. et al. Glucose-responsive insulin patch for the r""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,51,reference_content,"42. Wang, J. et al. Glucose transporter inhibitor-conjugated insulin mitigates hypoglycemia. Proc. Natl Acad. Sci. USA 116, 1074410748 (2019).","[610, 579, 1115, 608]",reference_item,0.85,"[""reference content label: 42. Wang, J. et al. Glucose transporter inhibitor-conjugated""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,52,reference_content,"43. Mo, R., Jiang, T., DiSanto, R., Tai, W. & Gu, Z. ATP-triggered anticancer drug delivery. Nat. Commun. 5, 3364 (2014).","[611, 610, 1089, 641]",reference_item,0.85,"[""reference content label: 43. Mo, R., Jiang, T., DiSanto, R., Tai, W. & Gu, Z. ATP-tri""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,53,reference_content,"44. Wang, C. et al. In situ formed reactive oxygen species-responsive scaffold with gemcitabine and checkpoint inhibitor for combination therapy. Sci. Transl. Med. 10, ean3682 (2018).","[610, 643, 1106, 688]",reference_item,0.85,"[""reference content label: 44. Wang, C. et al. In situ formed reactive oxygen species-r""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,54,reference_content,"45. McHugh, K. J. et al. Fabrication of fillable microparticles and other complex 3D microstructures. Science 357, 11381142 (2017).
This paper describes a microfabrication method and create injectabl","[612, 691, 1083, 755]",reference_item,0.85,"[""reference content label: 45. McHugh, K. J. et al. Fabrication of fillable micropartic""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,55,reference_content,"46. Tran, K. T. et al. Transdermal microneedles for the programmable burst release of multiple vaccine payloads. Nat. Biomed. Eng. 5, 9981007 (2021).","[611, 754, 1080, 785]",reference_item,0.85,"[""reference content label: 46. Tran, K. T. et al. Transdermal microneedles for the prog""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,56,reference_content,"47. Liang, K., Carmone, S., Brambilla, D. & Leroux, J.-C. 3D printing of a wearable personalized oral delivery device: A first-in-human study. Sci. Adv. 4, eaat2544 (2018).","[611, 786, 1125, 817]",reference_item,0.85,"[""reference content label: 47. Liang, K., Carmone, S., Brambilla, D. & Leroux, J.-C. 3D""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,57,reference_content,"48. Zhang, Y. et al. Thrombin-responsive transcutaneous patch for auto-anticoagulant regulation. Adv. Mater. 29, 1604043 (2017).","[611, 819, 1085, 849]",reference_item,0.85,"[""reference content label: 48. Zhang, Y. et al. Thrombin-responsive transcutaneous patc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,58,reference_content,"49. Maitz, M. F. et al. Bio-responsive polymer hydrogels homeostatically regulate blood coagulation. Nat. Commun. 4, 2168 (2013).","[610, 850, 1092, 881]",reference_item,0.85,"[""reference content label: 49. Maitz, M. F. et al. Bio-responsive polymer hydrogels hom""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,59,reference_content,"50. Zhao, H., Xue, S., Hussherr, M.-D., Teixeira, A. P. & Fussenegger, M. Autonomous push button-controlled rapid insulin release from a piezoelectrically activated subcutaneous cell implant. Sci. Adv","[610, 883, 1116, 928]",reference_item,0.85,"[""reference content label: 50. Zhao, H., Xue, S., Hussherr, M.-D., Teixeira, A. P. & Fu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,60,reference_content,"51. Krawczyk, K. et al. Electrogenetic cellular insulin release for real-time glycemic control in type 1 diabetic mice. Science 368, 9931001 (2020).","[609, 930, 1121, 962]",reference_item,0.85,"[""reference content label: 51. Krawczyk, K. et al. Electrogenetic cellular insulin rele""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,61,reference_content,"52. Bose, S. et al. A retrievable implant for the long-term encapsulation and survival of therapeutic xenogeneic cells. Nat. Biomed. Eng. 4, 814826 (2020).","[610, 962, 1102, 994]",reference_item,0.85,"[""reference content label: 52. Bose, S. et al. A retrievable implant for the long-term ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,62,reference_content,"53. Desai, T. & Shea, L. D. Advances in islet encapsulation technologies. Nat. Rev. Drug Discov. 16, 338350 (2017).","[610, 996, 1124, 1025]",reference_item,0.85,"[""reference content label: 53. Desai, T. & Shea, L. D. Advances in islet encapsulation ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,63,reference_content,"54. Wang, L.-H. et al. A bioinspired scaffold for rapid oxygenation of cell encapsulation systems. Nat. Commun. 12, 5846 (2021).","[610, 1027, 1090, 1058]",reference_item,0.85,"[""reference content label: 54. Wang, L.-H. et al. A bioinspired scaffold for rapid oxyg""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,64,reference_content,"55. An, D. et al. Designing a retrievable and scalable cell encapsulation device for potential treatment of type 1 diabetes. Proc. Natl Acad. Sci. USA 115, E263E272 (2018).","[610, 1059, 1112, 1090]",reference_item,0.85,"[""reference content label: 55. An, D. et al. Designing a retrievable and scalable cell ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,65,reference_content,"56. Pepper, A. R. et al. A prevascularized subcutaneous device-less site for islet and cellular transplantation. Nat. Biotechnol. 33, 518523 (2015).","[610, 1092, 1115, 1122]",reference_item,0.85,"[""reference content label: 56. Pepper, A. R. et al. A prevascularized subcutaneous devi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,66,reference_content,"57. Zhang, W. et al. Adoptive Treg therapy with metabolic intervention via perforated microneedles ameliorates psoriasis syndrome. Sci. Adv. 9, eadg6007 (2023).","[610, 1123, 1078, 1154]",reference_item,0.85,"[""reference content label: 57. Zhang, W. et al. Adoptive Treg therapy with metabolic in""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,67,reference_content,"58. Zhou, R. et al. Grooved microneedle patch augments adoptive T cell therapy against solid tumors via diverting regulatory T cells. Adv. Mater. 36, 2401667 (2024).","[610, 1156, 1125, 1186]",reference_item,0.85,"[""reference content label: 58. Zhou, R. et al. Grooved microneedle patch augments adopt""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,68,reference_content,"59. Ye, Y. et al. Microneedle integrated with pancreatic cells and synthetic glucose-signal amplifiers for smart insulin delivery. Adv. Mater. 28, 3115 (2016).","[610, 1188, 1103, 1218]",reference_item,0.85,"[""reference content label: 59. Ye, Y. et al. Microneedle integrated with pancreatic cel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,69,reference_content,"60. Tang, J. et al. Cardiac cell-integrated microneedle patch for treating myocardial infarction. Sci. Adv. 4, eaat9365 (2018).","[610, 1219, 1073, 1250]",reference_item,0.85,"[""reference content label: 60. Tang, J. et al. Cardiac cell-integrated microneedle patc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,70,reference_content,"61. Coon, M. E., Stephan, S. B., Gupta, V., Kealey, C. P. & Stephan, M. T. Nitinol thin films functionalized with CAR-T cells for the treatment of solid tumours. Nat. Biomed. Eng. 4, 195206 (2020).","[610, 1250, 1112, 1296]",reference_item,0.85,"[""reference content label: 61. Coon, M. E., Stephan, S. B., Gupta, V., Kealey, C. P. & ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,71,reference_content,"62. Agarwalla, P. et al. Bioinstructive implantable scaffolds for rapid in vivo manufacture and release of CAR-T cells. Nat. Biotechnol. 40, 12501258 (2022).","[611, 1299, 1119, 1330]",reference_item,0.85,"[""reference content label: 62. Agarwalla, P. et al. Bioinstructive implantable scaffold""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,72,reference_content,"63. Wu, J. et al. Adhesive anti-fibrotic interfaces on diverse organs. Nature 630, 360367 (2024)","[610, 1332, 1123, 1347]",reference_item,0.85,"[""reference content label: 63. Wu, J. et al. Adhesive anti-fibrotic interfaces on diver""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,73,reference_content,"64. Zhou, X. et al. Immunocompatible elastomer with increased resistance to the foreign body response. Nat. Commun. 15, 7526 (2024).","[608, 1347, 1115, 1379]",reference_item,0.85,"[""reference content label: 64. Zhou, X. et al. Immunocompatible elastomer with increase""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,74,reference_content,"65. Li, N. Immune-compatible designs of semiconducting polymers for bioelectronics with suppressed foreign-body response. Nat. Mater. 25, 124132 (2026).","[610, 1380, 1112, 1411]",reference_item,0.85,"[""reference content label: 65. Li, N. Immune-compatible designs of semiconducting polym""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,75,reference_content,"66. Chen, H. et al. Drug target prediction through deep learning functional representation of gene signatures. Nat. Commun. 15, 1853 (2024).","[610, 1412, 1119, 1443]",reference_item,0.85,"[""reference content label: 66. Chen, H. et al. Drug target prediction through deep lear""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,76,reference_content,"67. Zhang, K. et al. Artificial intelligence in drug development. Nat. Med. 31, 4559 (2025).","[610, 1442, 1110, 1457]",reference_item,0.85,"[""reference content label: 67. Zhang, K. et al. Artificial intelligence in drug develop""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,77,reference_content,"68. Jiang, Y. et al. Pocketflow is a data-and-knowledge-driven structure-based molecular generative model. Nat. Mach. Intell. 6, 326337 (2024).","[611, 1458, 1103, 1491]",reference_item,0.85,"[""reference content label: 68. Jiang, Y. et al. Pocketflow is a data-and-knowledge-driv""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
10,78,number,906,"[77, 1525, 113, 1542]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,79,footer,Nature | Vol 651 | 26 March 2026,"[128, 1524, 380, 1543]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
11,0,reference_content,"69. Yi, J. et al. OptADMET: a web-based tool for substructure modifications to improve ADMET properties of lead compounds. Nat. Protoc. 19, 11051121 (2024).","[73, 96, 591, 127]",reference_item,0.85,"[""reference content label: 69. Yi, J. et al. OptADMET: a web-based tool for substructur""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,1,reference_content,"70. Yang, C. et al. Glucose-responsive microneedle patch for closed-loop dual-hormone delivery in mice and pigs. Sci. Adv. 8, eadd3197 (2022).","[75, 129, 565, 160]",reference_item,0.85,"[""reference content label: 70. Yang, C. et al. Glucose-responsive microneedle patch for""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,2,reference_content,"71. Li, B. et al. Accelerating ionizable lipid discovery for mRNA delivery using machine learning and combinatorial chemistry. Nat. Mater. 23, 10021008 (2024).","[76, 161, 553, 191]",reference_item,0.85,"[""reference content label: 71. Li, B. et al. Accelerating ionizable lipid discovery for""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,3,reference_content,"72. Jiang, Z. et al. Al-guided design of antimicrobial peptide hydrogels for precise treatment of drug-resistant bacterial infections. Adv. Mater. 37, 2500043 (2025).","[75, 194, 584, 223]",reference_item,0.85,"[""reference content label: 72. Jiang, Z. et al. Al-guided design of antimicrobial pepti""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,4,reference_content,"73. McIntyre, D., Lashkaripour, A., Fordyce, P. & Densmore, D. Machine learning for microfluidic design and control. Lab Chip 22, 29252937 (2022).","[78, 225, 532, 255]",reference_item,0.85,"[""reference content label: 73. McIntyre, D., Lashkaripour, A., Fordyce, P. & Densmore, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,5,reference_content,"74. Brion, D. A. & Pattinson, S. W. Generalisable 3D printing error detection and correction via multi-head neural networks. Nat. Commun. 13, 4654 (2022).","[77, 257, 589, 288]",reference_item,0.85,"[""reference content label: 74. Brion, D. A. & Pattinson, S. W. Generalisable 3D printin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,6,reference_content,"75. Chen, B. et al. Artificial intelligence-assisted high-throughput screening of printing conditions of hydrogel architectures for accelerated diabetic wound healing. Adv. Funct. Mater. 32, 2201843 (","[76, 290, 587, 334]",reference_item,0.85,"[""reference content label: 75. Chen, B. et al. Artificial intelligence-assisted high-th""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,7,reference_content,"76. Bannigan, P. et al. Machine learning models to accelerate the design of polymeric long-acting injectables. Nat. Commun. 14, 35 (2023).","[77, 336, 550, 367]",reference_item,0.85,"[""reference content label: 76. Bannigan, P. et al. Machine learning models to accelerat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,8,reference_content,"77. Sarmadi, M. et al. Modeling, design, and machine learning-based framework for optimal injectability of microparticle-based drug formulations. Sci. Adv. 6, eabb6594 (2020).","[77, 369, 583, 399]",reference_item,0.85,"[""reference content label: 77. Sarmadi, M. et al. Modeling, design, and machine learnin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,9,reference_content,"78. Zhang, Y. et al. Machine learning-based identification of a psychotherapy-predictive electroencephalographic signature in PTSD. Nat. Ment. Health. 1, 284294 (2023).","[78, 402, 556, 432]",reference_item,0.85,"[""reference content label: 78. Zhang, Y. et al. Machine learning-based identification o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,10,reference_content,"79. Stephansen, J. B. et al. Neural network analysis of sleep stages enables efficient diagnosis of narcolepsy. Nat. Commun. 9, 5229 (2018).","[78, 433, 591, 464]",reference_item,0.85,"[""reference content label: 79. Stephansen, J. B. et al. Neural network analysis of slee""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,11,reference_content,"80. Zhang, Y. et al. Identification of psychiatric disorder subtypes from functional connectivity patterns in resting-state electroencephalography. Nat. Biomed. Eng. 5, 309323 (2021).","[76, 466, 591, 496]",reference_item,0.85,"[""reference content label: 80. Zhang, Y. et al. Identification of psychiatric disorder ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,12,reference_content,"81. Lai, J. et al. Practical intelligent diagnostic algorithm for wearable 12-lead ECG via self-supervised learning on large-scale dataset. Nat. Commun. 14, 3741 (2023).","[77, 498, 544, 528]",reference_item,0.85,"[""reference content label: 81. Lai, J. et al. Practical intelligent diagnostic algorith""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,13,reference_content,"82. Johnson, L. et al. Artificial intelligence for direct-to-physician reporting of ambulatory electrocardiography. Nat. Med. 31, 925931 (2025).","[77, 530, 569, 560]",reference_item,0.85,"[""reference content label: 82. Johnson, L. et al. Artificial intelligence for direct-to""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,14,reference_content,"83. Li, J. et al. Thin, soft, wearable system for continuous wireless monitoring of artery blood pressure. Nat. Commun. 14, 5009 (2023).","[77, 562, 586, 593]",reference_item,0.85,"[""reference content label: 83. Li, J. et al. Thin, soft, wearable system for continuous""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,15,reference_content,"84. Li, S. et al. Monitoring blood pressure and cardiac function without positioning via a deep learning-assisted strain sensor array. Sci. Adv. 9, eadh0615 (2023).","[76, 594, 588, 624]",reference_item,0.85,"[""reference content label: 84. Li, S. et al. Monitoring blood pressure and cardiac func""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,16,reference_content,"85. Cao, K. et al. Large-scale pancreatic cancer detection via non-contrast CT and deep learning. Nat. Med. 29, 30333043 (2023).","[76, 627, 559, 656]",reference_item,0.85,"[""reference content label: 85. Cao, K. et al. Large-scale pancreatic cancer detection v""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,17,reference_content,"86. Zheng, H.-D. et al. Deep learning-based high-accuracy quantitation for lumbar intervertebral disc degeneration from MRI. Nat. Commun. 13, 841 (2022).","[77, 658, 530, 689]",reference_item,0.85,"[""reference content label: 86. Zheng, H.-D. et al. Deep learning-based high-accuracy qu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,18,reference_content,"87. Lu, L., Dercle, L., Zhao, B. & Schwartz, L. H. Deep learning for the prediction of early on-treatment response in metastatic colorectal cancer from serial medical imaging. Nat. Commun. 12, 6654 (2","[77, 690, 585, 736]",reference_item,0.85,"[""reference content label: 87. Lu, L., Dercle, L., Zhao, B. & Schwartz, L. H. Deep lear""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,19,reference_content,"88. Tu, T. et al. Towards conversational diagnostic artificial intelligence. Nature 642, 442450 (2025).","[76, 738, 587, 768]",reference_item,0.85,"[""reference content label: 88. Tu, T. et al. Towards conversational diagnostic artifici""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,20,reference_content,"89. Nimri, R. et al. Insulin dose optimization using an automated artificial intelligence-based decision support system in youths with type 1 diabetes. Nat. Med. 26, 13801384 (2020).","[76, 770, 583, 815]",reference_item,0.85,"[""reference content label: 89. Nimri, R. et al. Insulin dose optimization using an auto""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,21,reference_content,"90. Castañeda, J. et al. Predictors of time in target glucose range in real-world users of the MiniMed 780G system. Diabetes Obes. Metab. 24, 22122221 (2022).","[76, 818, 576, 848]",reference_item,0.85,"[""reference content label: 90. Casta\u00f1eda, J. et al. Predictors of time in target glucos""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,22,reference_content,"91. Tyler, N. S. et al. An artificial intelligence decision support system for the management of type 1 diabetes. Nat. Metab. 2, 612619 (2020).","[73, 850, 591, 879]",reference_item,0.85,"[""reference content label: 91. Tyler, N. S. et al. An artificial intelligence decision ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,23,reference_content,"92. Yang, J. et al. Masticatory system-inspired microneedle theranostic platfo intelligent and precise diabetic management. Sci. Adv. 8, eabo6900 (202","[77, 883, 535, 914]",reference_item,0.85,"[""reference content label: 92. Yang, J. et al. Masticatory system-inspired microneedle ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,24,reference_content,"et al. Artificial intelligence-enabled detection and assessment of Parkinson's using nocturnal breathing signals. Nat. Med. 28, 22072215 (2022).","[77, 916, 563, 947]",reference_item,0.85,"[""reference content label: et al. Artificial intelligence-enabled detection and assessm""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
11,25,reference_content,"94. Jiang, Y. et al. Identification of four biotypes in temporal lobe epilepsy via machine learning on brain images. Nat. Commun. 15, 2221 (2024).","[78, 948, 551, 979]",reference_item,0.85,"[""reference content label: 94. Jiang, Y. et al. Identification of four biotypes in temp""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,26,reference_content,"95. Ouyang, W. et al. A wireless and battery-less implant for multimodal closed-loop neuromodulation in small animals. Nat. Biomed. Eng. 7, 12521269 (2023).","[78, 979, 541, 1011]",reference_item,0.85,"[""reference content label: 95. Ouyang, W. et al. A wireless and battery-less implant fo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,27,reference_content,"96. Qu, J. et al. Multifunctional hydrogel electronics for closed-loop antiepileptic treatment. Sci. Adv. 10, eadq9207 (2024).","[77, 1012, 583, 1041]",reference_item,0.85,"[""reference content label: 96. Qu, J. et al. Multifunctional hydrogel electronics for c""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,28,reference_content,"97. Zheng, X. T. et al. Battery-free and AI-enabled multiplexed sensor patches for wound monitoring. Sci. Adv. 9, eadg6670 (2023).","[77, 1043, 564, 1074]",reference_item,0.85,"[""reference content label: 97. Zheng, X. T. et al. Battery-free and AI-enabled multiple""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,29,reference_content,"99. Shao, J. et al. Printable personalized drug delivery patch for the topical therapy of skin diseases. Matter 6, 158174 (2023).","[77, 1107, 574, 1138]",reference_item,0.85,"[""reference content label: 99. Shao, J. et al. Printable personalized drug delivery pat""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,30,reference_content,"100. Sheng, T. et al. Unmanned aerial vehicle mediated drug delivery for first aid. Adv. Mater. 35, 2208648 (2023).","[78, 1139, 576, 1170]",reference_item,0.85,"[""reference content label: 100. Sheng, T. et al. Unmanned aerial vehicle mediated drug ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,31,reference_content,"101. Cao, Q. et al. Robotic wireless capsule endoscopy: recent advances and upcoming technologies. Nat. Commun. 15, 4597 (2024).","[78, 1171, 556, 1203]",reference_item,0.85,"[""reference content label: 101. Cao, Q. et al. Robotic wireless capsule endoscopy: rece""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,32,reference_content,"102. Wei, X. An artificial cilia-based array system for sound frequency decoding and resonance-responsive drug release. Nat. Biomed. Eng. https://doi.org/10.1038/s41551-025-01505-6 (2025).","[78, 1204, 570, 1252]",reference_item,0.85,"[""reference content label: 102. Wei, X. An artificial cilia-based array system for soun""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,33,reference_content,"103. Landers, F. C. et al. Clinically ready magnetic microrobots for targeted therapies. Science 390, 710715 (2025).","[76, 1282, 589, 1313]",reference_item,0.85,"[""reference content label: 103. Landers, F. C. et al. Clinically ready magnetic microro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,34,reference_content,"104. Yang, L. et al. Autonomous environment-adaptive microrobot swarm navigation enabled by deep learning-based real-time distribution planning. Nat. Mach. Intell. 4, 480493 (2022).","[77, 1315, 586, 1360]",reference_item,0.85,"[""reference content label: 104. Yang, L. et al. Autonomous environment-adaptive microro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,35,reference_content,"106. Ren, E. et al. Water-stable magnetic lipidol micro-droplets as a miniaturized robotic tool for drug delivery. Adv. Mater. 37, 2412187 (2025).","[77, 1396, 587, 1427]",reference_item,0.85,"[""reference content label: 106. Ren, E. et al. Water-stable magnetic lipidol micro-drop""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,36,reference_content,"105. Muiños-Landín, S., Fischer, A., Holubec, V. & Cichos, F. Reinforcement learning with artificial microswimmers. Sci. Robot. 6, eabd9285 (2021).","[78, 1362, 557, 1395]",reference_item,0.85,"[""reference content label: 105. Mui\u00f1os-Land\u00edn, S., Fischer, A., Holubec, V. & Cichos, F""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,37,reference_content,"108. Zou, J. & Schiebinger, L. Al can be sexist and racist—it's time to make it fair. Nature 559, 324326 (2018).","[78, 1460, 575, 1489]",reference_item,0.85,"[""reference content label: 108. Zou, J. & Schiebinger, L. Al can be sexist and racist\u2014i""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,38,reference_content,"107. Kriegman, S., Blackiston, D., Levin, M. & Bongard, J. A scalable pipeline for designing reconfigurable organisms. Proc. Natl Acad. Sci. USA 117, 18531859 (2020).","[75, 1428, 568, 1460]",reference_item,0.85,"[""reference content label: 107. Kriegman, S., Blackiston, D., Levin, M. & Bongard, J. A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,39,reference_content,"109. Chen, R. J. et al. Algorithmic fairness in artificial intelligence for medicine and healthcare. Nat. Biomed. Eng. 7, 719742 (2023).","[609, 96, 1121, 127]",reference_item,0.85,"[""reference content label: 109. Chen, R. J. et al. Algorithmic fairness in artificial i""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,40,reference_content,"110. Majedi, F. S. et al. Systemic enhancement of antitumour immunity by peritumourally implanted immunomodulatory macroporous scaffolds. Nat. Biomed. Eng. 7, 5671 (2023).","[608, 130, 1121, 161]",reference_item,0.85,"[""reference content label: 110. Majedi, F. S. et al. Systemic enhancement of antitumour""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,41,reference_content,"111. Hagan, C. T. IV et al. 3D printed drug-loaded implantable devices for intraoperative treatment of cancer. J. Control. Release 344, 147156 (2022).","[608, 163, 1087, 191]",reference_item,0.85,"[""reference content label: 111. Hagan, C. T. IV et al. 3D printed drug-loaded implantab""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,42,reference_content,"112. Stephan, S. B. et al. Biopolymer implants enhance the efficacy of adoptive T-cell therapy. Nat. Biotechnol. 33, 97101 (2015).","[609, 192, 1117, 223]",reference_item,0.85,"[""reference content label: 112. Stephan, S. B. et al. Biopolymer implants enhance the e""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,43,reference_content,"113. Shi, J. et al. Lyophilized lymph nodes for improved delivery of chimeric antigen receptor T cells. Nat. Mater. 23, 844853 (2024).","[609, 225, 1114, 255]",reference_item,0.85,"[""reference content label: 113. Shi, J. et al. Lyophilized lymph nodes for improved del""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,44,reference_content,"114. Chen, G. et al. Transdermal cold atmospheric plasma-mediated immune checkpoint blockade therapy. Proc. Natl Acad. Sci. USA 117, 36873692 (2020).","[610, 257, 1097, 288]",reference_item,0.85,"[""reference content label: 114. Chen, G. et al. Transdermal cold atmospheric plasma-med""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,45,reference_content,"115. Chen, Z. et al. Bioorthogonal catalytic patch. Nat. Nanotechnol. 16, 933941 (2021).","[611, 288, 1090, 303]",reference_item,0.85,"[""reference content label: 115. Chen, Z. et al. Bioorthogonal catalytic patch. Nat. Nan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,46,reference_content,"116. Li, H. et al. Scattered seeding of CART cells in solid tumors augments anticancer efficacy. Natl Sci. Rev. 9, nwab172 (2022).","[609, 305, 1125, 335]",reference_item,0.85,"[""reference content label: 116. Li, H. et al. Scattered seeding of CART cells in solid ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,47,reference_content,"117. Chang, H. et al. Cryomicroneedles for transdermal cell delivery. Nat. Biomed. Eng. 5, 10081018 (2021).","[609, 336, 1110, 367]",reference_item,0.85,"[""reference content label: 117. Chang, H. et al. Cryomicroneedles for transdermal cell ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,48,reference_content,"118. Bansal, A., Yang, F., Xi, T., Zhang, Y. & Ho, J. S. In vivo wireless photonic photodynamic therapy. Proc. Natl Acad. Sci. USA 115, 14691474 (2018).","[609, 369, 1101, 399]",reference_item,0.85,"[""reference content label: 118. Bansal, A., Yang, F., Xi, T., Zhang, Y. & Ho, J. S. In ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,49,reference_content,"119. Yamagishi, K. et al. Tissue-adhesive wirelessly powered optoelectronic device for metronomic photodynamic cancer therapy. Nat. Biomed. Eng. 3, 2736 (2019).","[610, 401, 1093, 431]",reference_item,0.85,"[""reference content label: 119. Yamagishi, K. et al. Tissue-adhesive wirelessly powered""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,50,reference_content,"120. Lee, T. T. et al. Automated insulin delivery in women with pregnancy complicated by type 1 diabetes. New Engl. J. Med. 389, 15661578 (2023).","[610, 434, 1120, 463]",reference_item,0.85,"[""reference content label: 120. Lee, T. T. et al. Automated insulin delivery in women w""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,51,reference_content,"121. Abramson, A. et al. A luminal unfolding microneedle injector for oral delivery of macromolecules. Nat. Med. 25, 15121518 (2019).","[610, 466, 1071, 495]",reference_item,0.85,"[""reference content label: 121. Abramson, A. et al. A luminal unfolding microneedle inj""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,52,reference_content,"122. Srinivasan, S. S. et al. RoboCap: Robotic mucus-clearing capsule for enhanced drug delivery in the gastrointestinal tract. Sci. Robot. 7, eabp9066 (2022).","[610, 497, 1095, 528]",reference_item,0.85,"[""reference content label: 122. Srinivasan, S. S. et al. RoboCap: Robotic mucus-clearin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,53,reference_content,"123. Koo, J. et al. Wirelessly controlled, bioresorbable drug delivery device with active valves that exploit electrochemically triggered crevice corrosion. Sci. Adv. 6, eabb1093 (2020).","[610, 531, 1113, 576]",reference_item,0.85,"[""reference content label: 123. Koo, J. et al. Wirelessly controlled, bioresorbable dru""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,54,reference_content,"124. Topol, E. J. & Iwasaki, A. Operation nasal vaccine—lightning speed to counter COVID-19. Sci. Immunol. 7, eadd9947 (2022).","[611, 578, 1115, 608]",reference_item,0.85,"[""reference content label: 124. Topol, E. J. & Iwasaki, A. Operation nasal vaccine\u2014ligh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,55,reference_content,"125. Ye, T. et al. Inhaled SARS-CoV-2 vaccine for single-dose dry powder aerosol immunization. Nature 624, 630638 (2023).","[610, 610, 1122, 640]",reference_item,0.85,"[""reference content label: 125. Ye, T. et al. Inhaled SARS-CoV-2 vaccine for single-dos""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,56,reference_content,"126. Mei, X. et al. An inhaled bioadhesive hydrogel to shield non-human primates from SARS-CoV-2 infection. Nat. Mater. 22, 903912 (2023).","[610, 642, 1117, 673]",reference_item,0.85,"[""reference content label: 126. Mei, X. et al. An inhaled bioadhesive hydrogel to shiel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,57,reference_content,"127. Rouphael, N. G. et al. The safety, immunogenicity, and acceptability of inactivated influenza vaccine delivered by microneedle patch (TIV-MNP 2015): a randomised, partly blinded, placebo-controll","[609, 674, 1115, 721]",reference_item,0.85,"[""reference content label: 127. Rouphael, N. G. et al. The safety, immunogenicity, and ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,58,reference_content,"128. Sheng, T. et al. Microneedle-mediated vaccination: innovation and translation. Adv. Drug Delivery Rev. 179, 113919 (2021).","[610, 722, 1118, 752]",reference_item,0.85,"[""reference content label: 128. Sheng, T. et al. Microneedle-mediated vaccination: inno""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,59,reference_content,"129. Vander Straeten, A. et al. A microneedle vaccine printer for thermostable COVID-19 mRNA vaccines. Nat. Biotechnol. 42, 510517 (2024).","[613, 754, 1089, 789]",reference_item,0.85,"[""reference content label: 129. Vander Straeten, A. et al. A microneedle vaccine printe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,60,reference_content,"130. Feiner, R. et al. Engineered hybrid cardiac patches with multifunctional electronics for online monitoring and regulation of tissue function. Nat. Mater. 15, 679685 (2016).","[610, 818, 1104, 849]",reference_item,0.85,"[""reference content label: 130. Feiner, R. et al. Engineered hybrid cardiac patches wit""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,61,reference_content,"131. Lee, K. et al. Microneedle drug eluting balloon for enhanced drug delivery to vascular tissue. J. Control. Release 321, 174183 (2020).","[610, 851, 1104, 881]",reference_item,0.85,"[""reference content label: 131. Lee, K. et al. Microneedle drug eluting balloon for enh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,62,reference_content,"132. Park, B.-W. et al. In vivo priming of human mesenchymal stem cells with hepatocyte growth factor-engineered mesenchymal stem cells promotes therapeutic potential for cardiac repair. Sci. Adv. 6, ","[610, 882, 1113, 929]",reference_item,0.85,"[""reference content label: 132. Park, B.-W. et al. In vivo priming of human mesenchymal""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,63,reference_content,"133. Gao, L. et al. Large cardiac muscle patches engineered from human induced-pluripotent stem cell-derived cardiac cells improve recovery from myocardial infarction in swine. Circulation 137, 17121","[610, 930, 1119, 976]",reference_item,0.85,"[""reference content label: 133. Gao, L. et al. Large cardiac muscle patches engineered ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,64,reference_content,"134. Shi, H. et al. Microneedle-mediated gene delivery for the treatment of ischemic myocardial disease. Sci. Adv. 6, eaaz3621 (2020).","[610, 979, 1123, 1010]",reference_item,0.85,"[""reference content label: 134. Shi, H. et al. Microneedle-mediated gene delivery for t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,65,reference_content,"135. Xu, G. et al. Battery-free and wireless smart wound dressing for wound infection monitoring and electrically controlled on-demand drug delivery. Adv. Funct. Mater. 31, 2100852 (2021).","[610, 1012, 1107, 1056]",reference_item,0.85,"[""reference content label: 135. Xu, G. et al. Battery-free and wireless smart wound dre""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,66,reference_content,"136. Liu, M. et al. Biomimicking antibacterial opto-electro sensing sutures made of regenerated silk proteins. Adv. Mater. 33, 2004733 (2021).","[607, 1059, 1126, 1091]",reference_item,0.85,"[""reference content label: 136. Liu, M. et al. Biomimicking antibacterial opto-electro ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,67,reference_content,"137. Lee, K. et al. A patch of detachable hybrid microneedle depot for localized delivery of mesenchymal stem cells in regeneration therapy. Adv. Funct. Mater. 30, 2000086 (2020).","[610, 1091, 1103, 1136]",reference_item,0.85,"[""reference content label: 137. Lee, K. et al. A patch of detachable hybrid microneedle""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,68,reference_content,"138. Wu, X., Huang, D., Xu, Y., Chen, G. & Zhao, Y. Microfluidic templated stem cell spheroid microneedles for diabetic wound treatment. Adv. Mater. 35, 2301064 (2023).","[610, 1139, 1106, 1170]",reference_item,0.85,"[""reference content label: 138. Wu, X., Huang, D., Xu, Y., Chen, G. & Zhao, Y. Microflu""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,69,reference_content,"139. Li, W. et al. Rapidly separable microneedle patch for the sustained release of a contraceptive. Nat. Biomed. Eng. 3, 220229 (2019).","[610, 1172, 1079, 1202]",reference_item,0.85,"[""reference content label: 139. Li, W. et al. Rapidly separable microneedle patch for t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,70,reference_content,"140. Mofidfar, M., O'Farrell, L. & Prausnitz, M. R. Pharmaceutical jewelry: Earring patch for transdermal delivery of contraceptive hormone. J. Controlled Release 301, 140145 (2019).","[609, 1203, 1110, 1248]",reference_item,0.85,"[""reference content label: 140. Mofidfar, M., O'Farrell, L. & Prausnitz, M. R. Pharmace""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,71,reference_content,"141. Kirtane, A. R. et al. A once-a-month oral contraceptive. Sci. Transl. Med. 11, eaay2602 (2019).","[609, 1250, 1113, 1280]",reference_item,0.85,"[""reference content label: 141. Kirtane, A. R. et al. A once-a-month oral contraceptive""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,72,reference_content,This work demonstrates integration of insulin pump and glucose-responsive insulin for dual-closed-loop regulation.,"[611, 1306, 1122, 1348]",reference_item,0.85,"[""reference content label: This work demonstrates integration of insulin pump and gluco""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
11,73,reference_content,"143. Zhang, Y. et al. Millimetre-scale bioresorbable optoelectronic systems for electrotherapy. Nature 640, 7786 (2025).","[610, 1348, 1121, 1378]",reference_item,0.85,"[""reference content label: 143. Zhang, Y. et al. Millimetre-scale bioresorbable optoele""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,74,reference_content,"144. Kandel, S. et al. Demonstration of an AI-driven workflow for autonomous high-resolution scanning microscopy. Nat. Commun. 14, 5501 (2023).","[609, 1380, 1117, 1410]",reference_item,0.85,"[""reference content label: 144. Kandel, S. et al. Demonstration of an AI-driven workflo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,75,reference_content,"145. Han, J. et al. Long-acting IL-2 release from pressure-fused biomineral tablets promotes antitumor immune response. Nat. Cancer 6, 13841399 (2025).","[610, 1413, 1109, 1443]",reference_item,0.85,"[""reference content label: 145. Han, J. et al. Long-acting IL-2 release from pressure-f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,76,reference_content,"146. Rosenstock, J. et al. Efficacy and safety of ITCA 650, a novel drug-device GLP-1 receptor agonist, in type 2 diabetes uncontrolled with oral antidiabetes drugs: the FREEDOM-1 trial. Diabetes Care","[610, 1445, 1112, 1490]",reference_item,0.85,"[""reference content label: 146. Rosenstock, J. et al. Efficacy and safety of ITCA 650, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
11,77,footer,Nature | Vol 651 | 26 March 2026,"[823, 1524, 1074, 1543]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
11,78,number,907,"[1091, 1525, 1125, 1542]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,0,paragraph_title,Review,"[77, 54, 177, 81]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Review""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
12,1,text,"Acknowledgements Z.G. is supported by grants from the National Natural Science Foundation of China (52233013), National Key R&D Program of China (2021YFA0909900), Fundamental and Interdisciplinary Dis","[73, 96, 594, 385]",reference_item,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,reference_zone,unknown_like,none,True,True
12,2,text,Author contributions Z.G. and R.L. conceived the scope of this Review. All authors contributed to writing and revising the paper and approved the final version. X.W. was responsible for data statistic,"[74, 400, 590, 450]",backmatter_body,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,tail_nonref_hold_zone,support_like,none,True,True
12,3,text,"Competing interests Z.G. is the co-founder of Zenomics Inc., ZCapsule Inc. and μZEn Inc. For a list of entities with which R.L. is, or has been recently (last five years) involved, compensated or unco","[75, 467, 583, 534]",backmatter_body,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
12,4,text,,"[608, 96, 1123, 258]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
12,5,paragraph_title,Additional information,"[609, 273, 742, 288]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Additional information""]",backmatter_boundary_candidate,0.5,,unknown_like,none,True,True
12,6,text,Supplementary information The online version contains supplementary material available at https://doi.org/10.1038/s41586-026-10221-3.,"[609, 289, 1116, 319]",backmatter_body,0.6,"[""default body_paragraph for text label"", ""tail_nonref_hold_zone excluded from body flow""]",backmatter_body,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
12,7,text,"Correspondence and requests for materials should be addressed to Zhen Gu.
Peer review information Nature thanks Seung-Kyun Kang, who co-reviewed with Jae-Young Bae, and the other anonymous reviewer fo","[608, 326, 1111, 419]",frontmatter_noise,0.8,"[""frontmatter phrase: Correspondence and requests for materials should be addresse""]",frontmatter_noise,0.8,,support_like,none,False,False
12,8,text,Springer Nature or its licensor (e.g. a society or other partner) holds exclusive rights to this article under a publishing agreement with the author(s) or other rightsholder(s); author self-archiving,"[608, 434, 1101, 500]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
12,9,text,© Springer Nature Limited 2026,"[609, 516, 788, 532]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
12,10,number,908,"[77, 1524, 113, 1542]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
12,11,footer,Nature | Vol 651 | 26 March 2026,"[129, 1523, 380, 1543]",noise,0.9,"[""footer label""]",noise,0.9,,unknown_like,none,False,False
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header Review [76, 52, 178, 82] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 doc_title Towards intelligent and miniaturized drug delivery devices [75, 92, 1072, 204] paper_title 0.8 ["page-1 zone title_zone: Towards intelligent and miniaturized drug delivery devices"] paper_title 0.8 frontmatter_main_zone support_like none True True
4 1 2 text https://doi.org/10.1038/s41586-026-10221-3 [75, 287, 407, 312] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: https://doi.org/10.1038/s41586-026-10221-3"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
5 1 3 text Received: 20 August 2024 [76, 320, 280, 343] frontmatter_noise 0.7 ["frontmatter noise text: Received: 20 August 2024"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
6 1 4 text Accepted: 2 February 2026 [76, 352, 286, 376] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Accepted: 2 February 2026"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
7 1 5 text Published online: 25 March 2026 Xinwei Wei $ ^{1,2,3,4} $, John B. Buse $ ^{5} $, Hongming Chen $ ^{1,6} $, Tejal A. Desai $ ^{7,8} $, Molly M. Stevens $ ^{9} $, Giovanni Traverso $ ^{10,11,12,13} $, [76, 384, 328, 407] authors 0.8 ["page-1 zone author_zone: Published online: 25 March 2026\nXinwei Wei $ ^{1,2,3,4} $, J"] authors 0.8 frontmatter_main_zone support_like none True True
8 1 6 text [429, 287, 1064, 332] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 frontmatter_main_zone support_like empty True True
9 1 7 text 🔥 Check for updates [77, 416, 245, 440] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 frontmatter_main_zone support_like short_fragment False True
10 1 8 abstract Advances at the intersection of biotechnology, artificial intelligence, electronics and materials science are reshaping how drugs can be delivered inside the body. Intelligent and miniaturized drug de [429, 373, 1111, 711] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
11 1 9 text Patient medication management presents a primary challenge, with complex dosing schedules often leading to poor adherence and unsatisfactory treatment efficacy $ ^{1,2} $. Additionally, maintaining dr [73, 761, 593, 955] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
12 1 10 text Biomedical devices for drug delivery represent sophisticated tools that enable highly efficient, targeted drug administration with the potential for precise release profiles. Recent advances in this f [73, 955, 593, 1303] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
13 1 11 text [605, 761, 1127, 958] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
14 1 12 paragraph_title Device categories [608, 991, 782, 1015] section_heading 0.5 ["unnumbered paragraph_title on page 1 outside title zone: Device categories"] section_heading 0.5 body_zone heading_like short_fragment True True
15 1 13 text Based on the nature of the integrated control modules, IMDDDs can be classified into four categories: bioelectronic therapeutic devices, physically triggered actuators, physiochemical-responsive devic [606, 1019, 1127, 1107] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
16 1 14 paragraph_title Bioelectronic therapeutic devices [607, 1125, 887, 1146] section_heading 0.5 ["unnumbered paragraph_title on page 1 outside title zone: Bioelectronic therapeutic devices"] section_heading 0.5 body_zone body_like none True True
17 1 15 text Bioelectronic therapeutic devices, integrated with microelectronics and biosensors into wearable or implantable forms, utilize electrical signals to control drug release while enabling precise physiol [606, 1148, 1127, 1302] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
18 1 16 footnote 1 State Key Laboratory of Advanced Drug Delivery and Release Systems, School of Pharmacy, Zhejiang University, Hangzhou, China. 2 Jinhua Institute of Zhejiang University, Jinhua, China. 3 Liangzhubabo [72, 1312, 1125, 1493] footnote 0.7 ["footnote label: 1 State Key Laboratory of Advanced Drug Delivery and Release"] footnote 0.7 body_zone reference_like reference_numeric_dot True True
19 1 17 footer Nature | Vol 651 | 26 March 2026 [824, 1523, 1076, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
20 1 18 number 897 [1092, 1524, 1125, 1542] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
21 2 0 paragraph_title Review [77, 53, 178, 82] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Review"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
22 2 1 image [112, 133, 249, 199] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
23 2 2 vision_footnote IMDDDs [357, 104, 418, 126] footnote 0.7 ["vision_footnote label: IMDDDs"] footnote 0.7 body_zone body_like short_fragment True True
24 2 3 image [116, 230, 246, 288] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
25 2 4 image [591, 135, 682, 216] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
26 2 5 image [268, 158, 560, 410] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
27 2 6 image [716, 135, 810, 218] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
28 2 7 vision_footnote Single outlet [580, 224, 665, 243] footnote 0.7 ["vision_footnote label: Single outlet"] footnote 0.7 body_zone body_like short_fragment True True
29 2 8 image [844, 134, 950, 217] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
30 2 9 vision_footnote Multiple outlets [712, 224, 813, 242] footnote 0.7 ["vision_footnote label: Multiple outlets"] footnote 0.7 body_zone body_like short_fragment True True
31 2 10 image [114, 321, 248, 412] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
32 2 11 vision_footnote Sequential outlets [834, 224, 952, 242] footnote 0.7 ["vision_footnote label: Sequential outlets"] footnote 0.7 body_zone body_like short_fragment True True
33 2 12 image [976, 133, 1094, 218] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
34 2 13 vision_footnote In situ action system [113, 415, 247, 431] footnote 0.7 ["vision_footnote label: In situ action system"] footnote 0.7 body_zone body_like none True True
35 2 14 vision_footnote Isotropic outlets [979, 224, 1088, 242] footnote 0.7 ["vision_footnote label: Isotropic outlets"] footnote 0.7 body_zone body_like short_fragment True True
36 2 15 image [583, 301, 666, 364] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
37 2 16 image [113, 440, 249, 557] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
38 2 17 image [699, 313, 822, 356] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
39 2 18 image [872, 297, 942, 367] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
40 2 19 image [993, 314, 1083, 395] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
41 2 20 image [326, 456, 429, 551] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
42 2 21 image [480, 462, 553, 527] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
43 2 22 image [607, 478, 703, 511] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
44 2 23 image [761, 458, 823, 528] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
45 2 24 image [886, 457, 955, 524] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
46 2 25 image [988, 451, 1101, 550] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
47 2 26 image [102, 579, 270, 688] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
48 2 27 vision_footnote Flexible electronic patch [143, 700, 264, 735] footnote 0.7 ["vision_footnote label: Flexible electronic patch"] footnote 0.7 body_zone body_like none True True
49 2 28 image [302, 627, 436, 694] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
50 2 29 vision_footnote Microneedle device [307, 708, 436, 727] footnote 0.7 ["vision_footnote label: Microneedle device"] footnote 0.7 body_zone body_like short_fragment True True
51 2 30 image [475, 624, 571, 678] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
52 2 31 vision_footnote Osmotic pump [475, 708, 573, 728] footnote 0.7 ["vision_footnote label: Osmotic pump"] footnote 0.7 body_zone body_like short_fragment True True
53 2 32 image [617, 616, 691, 685] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
54 2 33 vision_footnote Core-shell particle [618, 699, 690, 735] footnote 0.7 ["vision_footnote label: Core-shell particle"] footnote 0.7 body_zone body_like short_fragment True True
55 2 34 image [735, 622, 843, 682] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
56 2 35 vision_footnote Wireless-controlled implantable device [725, 699, 852, 736] footnote 0.7 ["vision_footnote label: Wireless-controlled implantable device"] footnote 0.7 body_zone body_like none True True
57 2 36 image [887, 623, 968, 691] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
58 2 37 vision_footnote Contact lens [886, 707, 970, 727] footnote 0.7 ["vision_footnote label: Contact lens"] footnote 0.7 body_zone body_like short_fragment True True
59 2 38 image [1003, 615, 1072, 697] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
60 2 39 vision_footnote Ingestible device [1004, 701, 1072, 734] footnote 0.7 ["vision_footnote label: Ingestible device"] footnote 0.7 body_zone body_like short_fragment True True
61 2 40 chart [100, 780, 292, 988] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
62 2 41 chart [304, 798, 499, 988] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
63 2 42 chart [508, 798, 689, 989] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
64 2 43 chart [709, 798, 886, 988] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
65 2 44 chart [910, 798, 1098, 989] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
66 2 45 figure_title Fig. 1 | Schematic illustration of the components and categories of IMDDDs. Representative therapeutic devices, device component material, drug release mechanism, administration method, device categor [74, 1005, 591, 1127] figure_caption 0.92 ["figure_title label: Fig. 1 | Schematic illustration of the components and catego"] figure_caption 0.92 display_zone legend_like figure_number True True
67 2 46 text efficient delivery of small therapeutics, biomacromolecules, viruses, cells and even organoids/tissues to treat diseases, as well as for contraception or vaccination. Typical categories of IMDDDs incl [607, 1005, 1094, 1127] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
68 2 47 text that rely on predetermined schedules and fixed doses, these systems provide dynamic, on-demand drug administration based on real-time physiological feedback. [74, 1148, 593, 1213] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
69 2 48 text Electrically triggered drug actuators are crucial foundations for the realization of bioelectronic therapeutic devices, with precise control, rapid response and programmability $ ^{10} $. These electr [73, 1212, 594, 1495] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
70 2 49 text [606, 1148, 1125, 1191] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
71 2 50 text Closed-loop bioelectronic therapeutic devices monitor human chemical compositions through different biological fluids such as blood, sweat, interstitial fluid, tears and saliva $ ^{8,9} $. In diabetes [606, 1191, 1128, 1495] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
72 2 51 number 898 [77, 1524, 112, 1543] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
73 2 52 footer Nature | Vol 651 | 26 March 2026 [128, 1523, 378, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
74 3 0 vision_footnote a Bioelectronic therapeutic devices [176, 96, 433, 116] footnote 0.7 ["vision_footnote label: a Bioelectronic therapeutic devices"] footnote 0.7 body_zone body_like none True True
75 3 1 image [173, 95, 1027, 1321] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
76 3 2 vision_footnote Implantable microchip [634, 246, 782, 265] footnote 0.7 ["vision_footnote label: Implantable microchip"] footnote 0.7 body_zone body_like none True True
77 3 3 vision_footnote Smart wound dressing [844, 243, 994, 263] footnote 0.7 ["vision_footnote label: Smart wound dressing"] footnote 0.7 body_zone body_like none True True
78 3 4 vision_footnote Wireless theranostic contact lens [597, 359, 809, 378] footnote 0.7 ["vision_footnote label: Wireless theranostic contact lens"] footnote 0.7 body_zone body_like none True True
79 3 5 vision_footnote Wearable iontophoresis patch [824, 360, 1017, 379] footnote 0.7 ["vision_footnote label: Wearable iontophoresis patch"] footnote 0.7 body_zone body_like none True True
80 3 6 vision_footnote Robotic mucus-clearing capsule [613, 533, 771, 568] footnote 0.7 ["vision_footnote label: Robotic mucus-clearing\ncapsule"] footnote 0.7 body_zone body_like none True True
81 3 7 vision_footnote Osmotic microneedle device [814, 542, 1000, 560] footnote 0.7 ["vision_footnote label: Osmotic microneedle device"] footnote 0.7 body_zone body_like none True True
82 3 8 vision_footnote Self-orienting millimetre-scale applicator [608, 656, 779, 690] footnote 0.7 ["vision_footnote label: Self-orienting\nmillimetre-scale applicator"] footnote 0.7 body_zone body_like none True True
83 3 9 vision_footnote Luminal unfolding microneedle injector [840, 654, 974, 690] footnote 0.7 ["vision_footnote label: Luminal unfolding\nmicroneedle injector"] footnote 0.7 body_zone body_like none True True
84 3 10 vision_footnote c Physiochemical-responsive devices [177, 704, 449, 725] footnote 0.7 ["vision_footnote label: c Physiochemical-responsive devices"] footnote 0.7 body_zone body_like none True True
85 3 11 vision_footnote Small molecules (glucose, ATP, ROS) [404, 855, 540, 892] footnote 0.7 ["vision_footnote label: Small molecules (glucose, ATP, ROS)"] footnote 0.7 body_zone body_like none True True
86 3 12 vision_footnote Controlled-release microparticles [629, 843, 754, 879] footnote 0.7 ["vision_footnote label: Controlled-release microparticles"] footnote 0.7 body_zone body_like none True True
87 3 13 vision_footnote Biomacromolecules (enzyme, nucleic acid) [395, 923, 542, 971] footnote 0.7 ["vision_footnote label: Biomacromolecules (enzyme, nucleic acid)"] footnote 0.7 body_zone body_like none True True
88 3 14 vision_footnote Smart insulin microneedle device [844, 846, 976, 879] footnote 0.7 ["vision_footnote label: Smart insulin microneedle device"] footnote 0.7 body_zone body_like none True True
89 3 15 vision_footnote Glucose-responsive catheter-combined device [608, 963, 778, 999] footnote 0.7 ["vision_footnote label: Glucose-responsive catheter-combined device"] footnote 0.7 body_zone body_like none True True
90 3 16 vision_footnote Polymeric membrane-enclosed drug crystal [838, 961, 984, 997] footnote 0.7 ["vision_footnote label: Polymeric membrane-enclosed drug crystal"] footnote 0.7 body_zone body_like none True True
91 3 17 text representations of IMDDDs. a, Bioelectronic therapeutic devices, including implantable microchip $ ^{123} $, smart wound dressing $ ^{19,20,135} $, wireless theranostic contact lens $ ^{16,21} $ and w [73, 1342, 583, 1447] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
92 3 18 text [606, 1324, 1102, 1447] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
93 3 19 footer Nature | Vol 651 | 26 March 2026 [822, 1523, 1075, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
94 3 20 number 899 [1091, 1524, 1125, 1542] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
95 4 0 header Review [76, 53, 178, 81] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
96 4 1 text Similarly, wireless therapeutic contact lenses monitor intraocular pressure for on-demand delivery of anti-glaucoma drugs $ ^{21} $. In neurology, wearable devices that detect epilepsy-triggered elect [73, 94, 593, 205] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
97 4 2 paragraph_title Physically triggered actuators [74, 221, 324, 243] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Physically triggered actuators"] subsection_heading 0.6 body_zone body_like none True True
98 4 3 text Physically triggered actuators respond to specific external non-electrical stimuli such as mechanical, acoustic, thermal, optical and magnetic signals $ ^{11} $. Mechanically triggered actuators respo [73, 246, 594, 568] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
99 4 4 text Heat-triggered systems realize drug release through temperature-sensitive materials integrated into wearable, implantable or ingestible devices $ ^{28-30} $. Heating methods include Joule heating, and [73, 568, 594, 848] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
100 4 5 text Although combining multiple triggering mechanisms could enhance precision, such approaches introduce concerns about manufacturing complexity, quality assurance and action reliability. Furthermore, the [73, 848, 594, 1000] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
101 4 6 paragraph_title Physiochemical-responsive devices [74, 1017, 366, 1039] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Physiochemical-responsive devices"] subsection_heading 0.6 body_zone body_like none True True
102 4 7 text Intrinsic physiochemical signals can also be directly applied to precision therapies $ ^{35} $. These systems rely predominantly on detecting, responding to or transforming signals from the physiologi [73, 1041, 593, 1170] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
103 4 8 text The prevalence of ions such as $ Ca^{2+} $ and $ Mg^{2+} $ in physiological fluids and on mucous membranes makes them ideal triggers for local drug delivery devices $ ^{35} $. Polymers such as gella [73, 1170, 593, 1385] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 4 9 text The reversible boronic acid–diol interaction between boronic acid and glucose has been utilized extensively in devices for management of glucose-responsive diabetes $ ^{38-40} $. For example, a micron [73, 1385, 594, 1494] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
105 4 10 text [606, 94, 1127, 289] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
106 4 11 text Material degradation provides a tunable parameter for controlling drug release kinetics. Poly(lactic-co-glycolic acid) (PLGA) exemplified this, whereby adjusting molecular weights and compositions ena [606, 289, 1126, 481] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
107 4 12 text Individual responsive motifs may be activated by distinct environmental parameters, risking non-specific drug release. Enzymes can address this by catalysing highly specific reactions under mild condi [605, 482, 1126, 700] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
108 4 13 paragraph_title Living devices [607, 716, 730, 737] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Living devices"] subsection_heading 0.6 body_zone body_like short_fragment True True
109 4 14 text The integration of live therapeutic agents, including mammalian cells, bacteria and complex organoids/tissues, into IMDDDs to create 'living devices' is an emerging field. Developing such systems requ [605, 739, 1126, 848] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
110 4 15 text Manufacturing living devices depends on precise control over substance exchange (for example, oxygen and essential amino acids) and environmental conditions (for example, pH and temperature). Devices [606, 847, 1127, 1235] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
111 4 16 text In addition, the specialized microstructural features of living devices, such as micropores, microgrooves and microcolumns, provide essential space for therapeutic cell attachment and growth $ ^{57,58 [605, 1235, 1127, 1428] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
112 4 17 text Mechanical strength and biocompatibility are crucial variables for implantation of such devices. Mechanical strength is crucial for maintaining structural integrity against the diverse forces that are [605, 1427, 1127, 1495] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
113 4 18 number 900 [77, 1524, 115, 1543] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
114 4 19 footer Nature | Vol 651 | 26 March 2026 [129, 1523, 381, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
115 5 0 image [82, 104, 1106, 881] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone body_like empty True True
116 5 1 figure_title Fig.3 | AI augments IMDDDs. AI augments design and fabrication of IMDDDs in three ways: AI-assisted drug development, device design and manufacturing, and data processing. This integration has promote [73, 892, 594, 954] figure_caption_candidate 0.85 ["figure_title label: Fig.3 | AI augments IMDDDs. AI augments design and fabricati"] figure_caption 0.85 body_zone legend_like none False False
117 5 2 text in complex biological environments. Biocompatibility depends on material properties, location in the body, the surrounding environment and specific clinical application. Improving device biocompatibil [73, 977, 595, 1129] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
118 5 3 paragraph_title AI augments IMDDDs [76, 1164, 283, 1187] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: AI augments IMDDDs"] subsection_heading 0.6 body_zone heading_like short_fragment True True
119 5 4 text AI technologies, encompassing machine learning, deep learning and advanced algorithms, are driving unprecedented transformations across science and daily life. In the drug delivery field, AI is revolu [72, 1192, 594, 1366] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
120 5 5 paragraph_title AI-assisted design and fabrication of IMDDDs [74, 1401, 503, 1424] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: AI-assisted design and fabrication of IMDDDs"] subsection_heading 0.6 body_zone heading_like none True True
121 5 6 text The design and fabrication of AI-assisted IMDDDs innovate in three ways, from the design and manufacturing of drugs and devices to controlling and optimizing the delivery function. [73, 1427, 593, 1495] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
122 5 7 figure_title of AI-driven IMDDDs, including closed-loop systems, personalized platforms and microrobots for target delivery. UAV, unmanned aerial vehicle. [607, 892, 1125, 933] figure_caption_candidate 0.85 ["figure_title label: of AI-driven IMDDDs, including closed-loop systems, personal"] figure_caption 0.85 body_zone legend_like none False False
123 5 8 paragraph_title AI-assisted drug development [607, 996, 856, 1017] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: AI-assisted drug development"] subsection_heading 0.6 body_zone body_like none True True
124 5 9 text In the field of drug discovery, AI algorithms such as deep learning are frequently used in target recognition and virtual screening. For example, a deep learning model developed on the basis of geneti [606, 1019, 1127, 1171] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
125 5 10 text AI techniques are also used in drug design to optimize drug molecular structures and ADMET (absorption, distribution, metabolism, excretion, toxicity) properties. The PockerFlow model, for instance, c [605, 1171, 1128, 1495] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
126 5 11 footer Nature | Vol 651 | 26 March 2026 [825, 1523, 1078, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
127 5 12 number 901 [1093, 1524, 1125, 1542] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
128 6 0 paragraph_title Review [76, 53, 178, 82] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Review"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
129 6 1 text properties of the compound can be optimized by tuning drug structure and its interaction with the formation or device $ ^{70} $. [73, 93, 593, 140] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
130 6 2 paragraph_title AI-assisted device fabrication [74, 157, 319, 178] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: AI-assisted device fabrication"] subsection_heading 0.6 body_zone body_like none True True
131 6 3 text Leveraging the advanced data-processing capabilities of AI, researchers can also construct multi-parametric models that are tuned to specific requirements and automatically generate optimized drug for [73, 181, 594, 503] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
132 6 4 text Beyond design, AI technologies are integrated into manufacturing processes through automated production, intelligent inspection, and adaptive management. In particular, 3D printing has emerged as a ke [72, 504, 594, 825] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
133 6 5 text By integrating data from multiple test modalities, AI algorithms can also construct predictive models to comprehensively assess device performance, enhancing testing efficiency and accuracy. Moreover, [73, 825, 593, 957] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
134 6 6 paragraph_title AI-assisted data processing [75, 974, 303, 996] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: AI-assisted data processing"] subsection_heading 0.6 body_zone body_like none True True
135 6 7 text With advanced data-processing capabilities, AI has markedly enhanced the accuracy, efficiency, and automation of medical data analysis. For instance, deep learning approaches identify key information [73, 998, 593, 1277] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
136 6 8 text Blood pressure is a dynamic and nonlinear physiological signal, and traditional cuff-based methods are limited by their inability to provide continuous monitoring. Deep learning models, such as CNNs, [73, 1277, 594, 1495] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
137 6 9 text [605, 94, 1126, 137] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
138 6 10 text AI models have demonstrated strong performance across a range of medical imaging modalities, including computed tomography, magnetic resonance imaging, ultrasound and endoscopy, substantially improvin [605, 138, 1128, 419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
139 6 11 paragraph_title Representative forms of AI-driven IMDDDs AI-driven closed-loop IMDDDs [606, 454, 1014, 501] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Representative forms of AI-driven IMDDDs AI-driven closed-lo"] subsection_heading 0.6 body_zone body_like none True True
140 6 12 text AI-driven closed-loop devices integrate smart sensing, real-time data analysis and autonomous drug administration to dynamically choreograph dosing regimens in response to the physiological status of [605, 503, 1126, 610] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
141 6 13 text The AI-driven closed-loop insulin delivery system uses continuous glucose monitoring and machine learning algorithms to analyse real-time glucose data and predict future trends, enabling dynamic adjus [605, 610, 1127, 870] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
142 6 14 text In neurological disorders such as epilepsy and neurodegenerative diseases, AI has been widely applied to diagnosis and treatment $ ^{93,94} $. When a seizure is detected quickly using AI algorithms, d [606, 869, 1127, 1260] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
143 6 15 paragraph_title AI-driven personalized IMDDDs [607, 1275, 870, 1297] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: AI-driven personalized IMDDDs"] subsection_heading 0.6 body_zone body_like none True True
144 6 16 text Image recognition technologies powered by advanced computer vision algorithms enable automated analysis of visual data for target detection, object identification and scene analysis. These capabilitie [605, 1298, 1127, 1495] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
145 6 17 number 902 [77, 1524, 114, 1542] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
146 6 18 footer Nature | Vol 651 | 26 March 2026 [128, 1523, 379, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
147 7 0 text to lesion severity and anatomical location $ ^{99} $. Image recognition has also facilitated the development of autonomous drug delivery systems. During emergencies, unmanned aerial vehicles equipped [72, 94, 593, 289] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
148 7 1 text Additionally, speech recognition—another key AI modality—offers intuitive, hands-free interaction in healthcare settings. This technology can enhance patient education, monitoring and communication, a [72, 289, 594, 549] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
149 7 2 paragraph_title AI-driven microrobots for drug delivery [74, 566, 400, 587] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: AI-driven microrobots for drug delivery"] subsection_heading 0.6 body_zone body_like none True True
150 7 3 text Microrobots show great application potential in drug delivery, and integrating AI enables them to adapt to dynamic environments and perform complex medical tasks $ ^{103,104} $. AI algorithms can help [72, 589, 593, 978] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 7 4 text Despite immense potential, applying AI in drug delivery faces critical challenges. Effective AI models require extensive training on large, high-quality datasets. Systematic biases in medical data, su [73, 978, 593, 1216] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
152 7 5 paragraph_title Clinical applications of IMDDDs [75, 1249, 379, 1273] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Clinical applications of IMDDDs"] subsection_heading 0.6 body_zone heading_like none True True
153 7 6 text This section presents examples of IMDDDs designed for various medical indications—recent representative devices are listed in Supplementary Table 1. [73, 1277, 593, 1343] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
154 7 7 paragraph_title Cancer therapy [75, 1361, 206, 1383] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Cancer therapy"] subsection_heading 0.6 body_zone body_like short_fragment True True
155 7 8 text Precise and effective delivery of anticancer drugs to tumour sites is crucial for therapeutic outcomes. However, conventional approaches (including chemotherapy, radiotherapy and surgery), targeted th [72, 1384, 594, 1494] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
156 7 9 text [606, 94, 1127, 439] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
157 7 10 text Patch devices have shown efficacy with both small molecule chemotherapeutic agents (doxorubicin, docetaxel and cisplatin) and immune checkpoint antibody drugs (anti-PD-1, anti-PD-L1 and anti-CTLA-4) $ [605, 438, 1128, 741] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
158 7 11 text Moreover, bioelectronics-mediated devices enable targeted delivery, minimizing non-specific drug toxicity, and the integration of wireless control technology can greatly simplify the process of drug r [605, 740, 1127, 1002] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
159 7 12 paragraph_title Diabetes treatment [607, 1017, 774, 1038] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Diabetes treatment"] subsection_heading 0.6 body_zone body_like short_fragment True True
160 7 13 text Wearable insulin delivery devices, particularly transdermal patches, represent leading IMDDDs in diabetes management. Integrated glucose sensors and drug delivery modules in flexible electronic patche [606, 1040, 1127, 1343] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
161 7 14 text Researchers have also engineered oral capsules that target insulin delivery to gastrointestinal tissues, overcoming challenges of the gastrointestinal environment and low bioavailability. Examples inc [605, 1342, 1127, 1494] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
162 7 15 footer Nature | Vol 651 | 26 March 2026 [821, 1523, 1074, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
163 7 16 number 903 [1089, 1524, 1125, 1542] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
164 8 0 header Review [76, 53, 178, 81] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
165 8 1 text stomach acid $ ^{121} $; and the RoboCap, which enhances insulin bioavailability through mucus removal and improved mixing $ ^{122} $. A recently developed cephalopod-inspired jetting capsule device c [73, 93, 593, 202] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
166 8 2 text Bioelectronic implants for subcutaneous insulin delivery provide another promising approach. One platform uses wireless power to trigger electrochemical crevice corrosion of valve structure, releasing [73, 203, 594, 420] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
167 8 3 paragraph_title Vaccination [75, 436, 180, 458] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Vaccination"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
168 8 4 text Poor adherence represents a significant barrier to global vaccine progress $ ^{2} $. Traditional vaccination methods using needles and syringes often face resistance due to injection-associated pain, [73, 461, 594, 697] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
169 8 5 text Microneedle devices have also emerged as a compelling alternative to transdermal, subcutaneous or intramuscular vaccinations with minimal invasiveness and discomfort. These devices demonstrate lower r [73, 697, 593, 1066] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
170 8 6 paragraph_title Treatment of other diseases [74, 1081, 305, 1102] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Treatment of other diseases"] subsection_heading 0.6 body_zone body_like none True True
171 8 7 text In cardiovascular disease treatment, flexible smart patches monitor cardiac electrophysiological signals and deliver drugs to mitigate myocardial infarction risks $ ^{130} $. For vascular intervention [73, 1106, 593, 1386] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
172 8 8 text IMDDDs display significant advantages in wound management through advanced monitoring and delivery capabilities. Integrated sensors enable real-time monitoring of physical and chemical signals at woun [72, 1385, 593, 1494] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
173 8 9 text [606, 94, 1127, 288] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
174 8 10 text Microneedle-based contraceptives deploy a drug-containing matrix subcutaneously through gas bubble separation, enabling sustained release of levonorgestrel for up to one month $ ^{139} $. With product [605, 288, 1127, 463] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
175 8 11 paragraph_title Outlook [608, 497, 695, 520] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Outlook"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
176 8 12 text The evolution of IMDDDs is entering a transformative era, ushering in a new paradigm of personalized, connected and adaptive medications. However, as presented in Box 1, clinical translation of IMDDDs [606, 524, 1127, 934] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
177 8 13 text Device reliability represents another crucial factor in clinical evaluation, extending beyond mere structural rigidity. These devices must operate in complex biological environments, withstanding both [606, 934, 1127, 1300] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
178 8 14 text Miniaturization of delivery devices is an important development trend for precision and minimally invasive medicine. The reduction of device size often limits the amount of drug loading, and the use o [605, 1299, 1127, 1494] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
179 8 15 number 904 [77, 1524, 114, 1542] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
180 8 16 footer Nature | Vol 651 | 26 March 2026 [128, 1523, 380, 1543] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
181 9 0 paragraph_title Box 1 [88, 106, 158, 133] structured_insert 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Box 1"] subsection_heading 0.6 body_zone heading_like short_fragment False False
182 9 1 doc_title Clinical translation status and principles of IMDDDS [86, 151, 865, 189] noise 0.2 ["unrecognized label 'doc_title'"] unknown_structural 0.2 body_zone body_like none False False
183 9 2 text Although many drug delivery devices have emerged for disease diagnosis and treatment, with many advancing to clinical trials (Box Fig. 1 and Supplementary Table 1), significant challenges exist for ac [84, 204, 581, 654] noise 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
184 9 3 paragraph_title Device performance [87, 656, 251, 674] structured_insert 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Device performance"] subsection_heading 0.6 body_zone body_like short_fragment False False
185 9 4 text • Effectiveness: ensure targeted drug delivery, precise dose control and/or enhanced bioavailability to achieve the desired therapeutic outcome. [86, 676, 587, 739] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
186 9 5 text • Reliability: require robust resistance to chemical erosion and immunological allograft rejection to ensure structural integrity and functional durability. [86, 741, 592, 804] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
187 9 6 text • Safety: prioritize biocompatibility, controllability of drug release and secure data communication to mitigate physical and cyber risks. [85, 806, 573, 868] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
188 9 7 paragraph_title Device manufacturing [88, 871, 264, 890] structured_insert 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Device manufacturing"] subsection_heading 0.6 body_zone body_like none False False
189 9 8 text • Consistency: maintain strict quality control and process variables to ensure identical device performance across all production batches. [86, 892, 580, 954] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
190 9 9 text • Cost: develop scalable and cost-effective manufacturing processes to enable commercial feasibility and broad patient access. [85, 956, 551, 1020] structured_insert 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none False False
191 9 10 chart [609, 200, 1117, 550] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
192 9 11 text of multiple functionalities beyond size reduction alone, including incorporating enhanced capabilities, including real-time physiological monitoring, self-regulating drug release mechanisms and integr [74, 1062, 593, 1148] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
193 9 12 chart [610, 581, 1115, 882] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone body_like empty True True
194 9 13 text Many devices interface directly with the patient's physiological systems, requiring comprehensive safety considerations. Implantable devices often face immune responses that can lead to tissue damage [73, 1149, 593, 1496] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
195 9 14 figure_title Box 1 Fig. 1 | Percentage of clinical trials for drug delivery devices for distinct disease and device types over the past five years. Data were collected from ClinicalTrials.gov. Keywords such as 'ca [607, 896, 1122, 1037] figure_caption_candidate 0.85 ["figure_title label: Box 1 Fig. 1 | Percentage of clinical trials for drug delive"] figure_caption 0.85 body_zone legend_like none False False
196 9 15 text The evolution of drug delivery devices is trending toward enhanced integration and intelligence with patient-centred goals. The incorporation of natural biomolecules, including proteins and nucleic ac [606, 1063, 1127, 1428] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
197 9 16 text Moreover, cost-effective manufacturing solutions are essential for the widespread adoption of these advanced devices. The implementation of AI-driven intelligent manufacturing and automated production [606, 1429, 1127, 1493] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
198 9 17 footer Nature | Vol 651 | 26 March 2026 [822, 1524, 1074, 1544] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
199 9 18 number 905 [1090, 1525, 1125, 1542] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
200 10 0 header Review [77, 53, 177, 81] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
201 10 1 text process offers pathways to reduce production costs and time, while the development of durable, economical biomaterials facilitates more affordable scaling of smart device production. The AI-supported [73, 94, 593, 246] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
202 10 2 reference_content 1. Langer, R. & Tirrell, D. A. Designing materials for biology and medicine. Nature 428, 487–492 (2004). [75, 271, 592, 303] reference_item 0.85 ["reference content label: 1. Langer, R. & Tirrell, D. A. Designing materials for biolo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
203 10 3 reference_content 2. Baryakova, T. H., Pogostin, B. H., Langer, R. & McHugh, K. J. Overcoming barriers to patient adherence: the case for developing innovative drug delivery systems. Nat. Rev. Drug Discov. 22, 387–409 [75, 305, 590, 351] reference_item 0.85 ["reference content label: 2. Baryakova, T. H., Pogostin, B. H., Langer, R. & McHugh, K"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
204 10 4 reference_content 3. Farra, R. et al. First-in-human testing of a wirelessly controlled drug delivery microchip. Sci. Transl. Med. 4, 122ra121 (2012). [77, 353, 575, 384] reference_item 0.85 ["reference content label: 3. Farra, R. et al. First-in-human testing of a wirelessly c"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
205 10 5 reference_content This paper reports on the first clinical trial of an implantable microchip-based drug delivery device. [76, 384, 568, 415] reference_item 0.85 ["reference content label: This paper reports on the first clinical trial of an implant"] reference_item 0.85 reference_zone unknown_like none True True
206 10 6 reference_content 4. Yu, J. et al. Microneedle-array patches loaded with hypoxia-sensitive vesicles provide fast glucose-responsive insulin delivery. Proc. Natl Acad. Sci. USA 112, 8260–8265 (2015). [78, 417, 588, 450] reference_item 0.85 ["reference content label: 4. Yu, J. et al. Microneedle-array patches loaded with hypox"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
207 10 7 reference_content This paper describes a glucose-responsive transdermal device for regulation of insulin release. [76, 450, 589, 480] reference_item 0.85 ["reference content label: This paper describes a glucose-responsive transdermal device"] reference_item 0.85 reference_zone unknown_like none True True
208 10 8 reference_content 5. Arrick, G. et al. Cephalopod-inspired jetting devices for gastrointestinal drug delivery. Nature 636, 481–487 (2024). [77, 482, 576, 516] reference_item 0.85 ["reference content label: 5. Arrick, G. et al. Cephalopod-inspired jetting devices for"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
209 10 9 reference_content This study developed and evaluated microjet delivery systems that can deliver jets in axial and radial directions into tissue. [75, 514, 581, 545] reference_item 0.85 ["reference content label: This study developed and evaluated microjet delivery systems"] reference_item 0.85 reference_zone unknown_like none True True
210 10 10 reference_content 6. Shi, J. et al. Active biointegrated living electronics for managing inflammation. Science 384, 1023–1030 (2024). [77, 547, 590, 582] reference_item 0.85 ["reference content label: 6. Shi, J. et al. Active biointegrated living electronics fo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
211 10 11 reference_content This paper reports a biointegrated living device that wirelessly records electrical signals from the skin surface and improves disease treatment in a mouse model of psoriasis. [76, 577, 587, 609] reference_item 0.85 ["reference content label: This paper reports a biointegrated living device that wirele"] reference_item 0.85 reference_zone unknown_like none True True
212 10 12 reference_content 7. Yin, D. et al. A battery-free nanofluidic intracellular delivery patch for internal organs. Nature 642. 1051–1061 (2025). [77, 610, 564, 645] reference_item 0.85 ["reference content label: 7. Yin, D. et al. A battery-free nanofluidic intracellular d"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
213 10 13 reference_content This paper describes a chipless, soft nanofluidic intracellular delivery patch that provides enhanced and customized delivery of payloads in targeted internal organ [77, 640, 566, 671] reference_item 0.85 ["reference content label: This paper describes a chipless, soft nanofluidic intracellu"] reference_item 0.85 reference_zone unknown_like none True True
214 10 14 reference_content 9. Paci, M. M. et al. Smart closed-loop drug delivery systems. Nat. Rev. Bioeng. 3, 816–834 (2025). [76, 705, 580, 736] reference_item 0.85 ["reference content label: 9. Paci, M. M. et al. Smart closed-loop drug delivery system"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
215 10 15 reference_content 8. Zheng, M., Sheng, T., Yu, J., Gu, Z. & Xu, C. Microneedle biomedical devices. Nat. Rev. Bioeng. 2, 324–342 (2024). [75, 672, 589, 705] reference_item 0.85 ["reference content label: 8. Zheng, M., Sheng, T., Yu, J., Gu, Z. & Xu, C. Microneedle"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
216 10 16 reference_content 10. Mirvakili, S. M. & Langer, R. Wireless on-demand drug delivery. Nat. Electron. 4, 464–477 (2021). [77, 737, 581, 768] reference_item 0.85 ["reference content label: 10. Mirvakili, S. M. & Langer, R. Wireless on-demand drug de"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
217 10 17 reference_content 11. Wei, X. et al. Wirelessly controlled drug delivery systems for translational medicine. Nat. Rev. Electr. Eng. 2, 244–262 (2025). [77, 770, 574, 801] reference_item 0.85 ["reference content label: 11. Wei, X. et al. Wirelessly controlled drug delivery syste"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
218 10 18 reference_content 12. He, H. et al. Hybrid assembly of polymeric nanofiber network for robust and electronically conductive hydrogels. Nat. Commun. 14, 759 (2023). [77, 802, 590, 833] reference_item 0.85 ["reference content label: 12. He, H. et al. Hybrid assembly of polymeric nanofiber net"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
219 10 19 reference_content 13. Oh, B. et al. 3D printable and biocompatible PEDOT: PSS-ionic liquid colloids with high conductivity for rapid on-demand fabrication of 3D bioelectronics. Nat. Commun. 15, 5839 (2024). [77, 834, 589, 879] reference_item 0.85 ["reference content label: 13. Oh, B. et al. 3D printable and biocompatible PEDOT: PSS-"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
220 10 20 reference_content 14. Zhang, T. et al. Two-dimensional polyaniline crystal with metallic out-of-plane conductivity. Nature 638, 411–417 (2025). [77, 881, 591, 913] reference_item 0.85 ["reference content label: 14. Zhang, T. et al. Two-dimensional polyaniline crystal wit"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
221 10 21 reference_content 15. Zhou, Y. et al. An integrated Mg battery-powered iontophoresis patch for efficient and controllable transdermal drug delivery. Nat. Commun. 14, 297 (2023). [77, 915, 573, 946] reference_item 0.85 ["reference content label: 15. Zhou, Y. et al. An integrated Mg battery-powered iontoph"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
222 10 22 reference_content 16. Keum, D. H. et al. Wireless smart contact lens for diabetic diagnosis and therapy. Sci. Adv. 6, eaba3252 (2020). [77, 947, 588, 977] reference_item 0.85 ["reference content label: 16. Keum, D. H. et al. Wireless smart contact lens for diabe"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
223 10 23 reference_content 17. Wang, G. et al. Optimized glycemic control of type 2 diabetes with reinforcement learning: a proof-of-concept trial. Nat. Med. 29, 2633–2642 (2023). [81, 980, 588, 1011] reference_item 0.85 ["reference content label: 17. Wang, G. et al. Optimized glycemic control of type 2 dia"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
224 10 24 reference_content This study developed a model-based reinforcement learning framework, which learns the optimal insulin regimen by analysing glycaemic state rewards through patient model interactions. [78, 1010, 584, 1057] reference_item 0.85 ["reference content label: This study developed a model-based reinforcement learning fr"] reference_item 0.85 reference_zone unknown_like none True True
225 10 25 reference_content 18. Jiang, Y. et al. Wireless, closed-loop, smart bandage with integrated sensors and stimulators for advanced wound care and accelerated healing. Nat. Biotechnol. 41, 652–662 (2023). [77, 1059, 591, 1090] reference_item 0.85 ["reference content label: 18. Jiang, Y. et al. Wireless, closed-loop, smart bandage wi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
226 10 26 reference_content 19. Shirzaei Sani, E. et al. A stretchable wireless wearable bioelectronic system for multiplexed monitoring and combination treatment of infected chronic wounds. Sci. Adv. 9, eadf7388 (2023). [77, 1091, 591, 1136] reference_item 0.85 ["reference content label: 19. Shirzaei Sani, E. et al. A stretchable wireless wearable"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
227 10 27 reference_content 20. Ge, Z. et al. Wireless and closed-loop smart dressing for exudate management and on-demand treatment of chronic wounds. Adv. Mater. 35, 2304005 (2023). [77, 1139, 556, 1170] reference_item 0.85 ["reference content label: 20. Ge, Z. et al. Wireless and closed-loop smart dressing fo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
228 10 28 reference_content 21. Kim, T. Y. et al. Wireless theranostic smart contact lens for monitoring and control of intraocular pressure in glaucoma. Nat. Commun. 13, 6801 (2022). [77, 1171, 561, 1202] reference_item 0.85 ["reference content label: 21. Kim, T. Y. et al. Wireless theranostic smart contact len"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
229 10 29 reference_content 22. Joo, H. et al. Soft implantable drug delivery device integrated wirelessly with wearable devices to treat fatal seizures. Sci. Adv. 7, eabd4639 (2021). [77, 1204, 577, 1234] reference_item 0.85 ["reference content label: 22. Joo, H. et al. Soft implantable drug delivery device int"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
230 10 30 reference_content 23. Zhang, Y., Yu, J., Bomba, H. N., Zhu, Y. & Gu, Z. Mechanical force-triggered drug delivery. Chem. Rev. 116, 12536–12563 (2016). [77, 1235, 582, 1266] reference_item 0.85 ["reference content label: 23. Zhang, Y., Yu, J., Bomba, H. N., Zhu, Y. & Gu, Z. Mechan"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
231 10 31 reference_content 24. Abramson, A. et al. An ingestible self-orienting system for oral delivery of macromolecules. Science 363, 611–615 (2019). [80, 1267, 587, 1300] reference_item 0.85 ["reference content label: 24. Abramson, A. et al. An ingestible self-orienting system "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
232 10 32 reference_content This study developed an ingestible delivery vehicle that could self-reorient from any starting position so as to attach to the gastric wall. [77, 1300, 569, 1329] reference_item 0.85 ["reference content label: This study developed an ingestible delivery vehicle that cou"] reference_item 0.85 reference_zone unknown_like none True True
233 10 33 reference_content 25. Zhao, S. et al. A wearable osmotic microneedle patch provides high-capacity sustainable drug delivery in animal models. Sci. Transl. Med. 16, eadp3611 (2024). This paper reports an osmotic microne [76, 1330, 565, 1398] reference_item 0.85 ["reference content label: 25. Zhao, S. et al. A wearable osmotic microneedle patch pro"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
234 10 34 reference_content 26. Zhang, Y. et al. Battery-free, lightweight, injectable microsystem for in vivo wireless pharmacology and optogenetics. Proc. Natl Acad. Sci. USA 116, 21427–21437 (2019). [77, 1396, 558, 1427] reference_item 0.85 ["reference content label: 26. Zhang, Y. et al. Battery-free, lightweight, injectable m"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
235 10 35 reference_content 27. Xu, J. et al. Acoustic metamaterials-driven transdermal drug delivery for rapid and on-demand management of acute disease. Nat. Commun. 14, 869 (2023). [76, 1429, 549, 1458] reference_item 0.85 ["reference content label: 27. Xu, J. et al. Acoustic metamaterials-driven transdermal "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
236 10 36 reference_content 28. Son, D. et al. Multifunctional wearable devices for diagnosis and therapy of movement disorders. Nat. Nanotechnol. 9, 397–404 (2014). [77, 1460, 575, 1490] reference_item 0.85 ["reference content label: 28. Son, D. et al. Multifunctional wearable devices for diag"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
237 10 37 reference_content 29. Jeong, J.-W. et al. Wireless optofluidic systems for programmable in vivo pharmacology and optogenetics. Cell 162, 662–674 (2015). [609, 98, 1123, 126] reference_item 0.85 ["reference content label: 29. Jeong, J.-W. et al. Wireless optofluidic systems for pro"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
238 10 38 reference_content 31. Lee, J. et al. Flexible, sticky, and biodegradable wireless device for drug delivery to brain tumors. Nat. Commun. 10, 5205 (2019). [609, 161, 1117, 191] reference_item 0.85 ["reference content label: 31. Lee, J. et al. Flexible, sticky, and biodegradable wirel"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
239 10 39 reference_content 30. Babaee, S. et al. Temperature-responsive biometamaterials for gastrointestinal applications. Sci. Transl. Med. 11, eaau8581 (2019). [609, 129, 1124, 159] reference_item 0.85 ["reference content label: 30. Babaee, S. et al. Temperature-responsive biometamaterial"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
240 10 40 reference_content 32. Lee, H. et al. A graphene-based electrochemical device with thermoresponsive microneedles for diabetes monitoring and therapy. Nat. Nanotechnol. 11, 566–572 (2016) [610, 193, 1113, 224] reference_item 0.85 ["reference content label: 32. Lee, H. et al. A graphene-based electrochemical device w"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
241 10 41 reference_content 33. Lee, S. H. et al. Magnetically-driven implantable pump for on-demand bolus infusion of short-acting glucagon-like peptide-1 receptor agonist. J. Control. Release 325, 111–120 (2020). [610, 220, 1117, 270] reference_item 0.85 ["reference content label: 33. Lee, S. H. et al. Magnetically-driven implantable pump f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
242 10 42 reference_content 34. Jayaneththi, V. et al. Controlled transdermal drug delivery using a wireless magnetic microneedle patch: Preclinical device development. Sensor Actuat. B 297, 126708 (2019). [610, 273, 1120, 304] reference_item 0.85 ["reference content label: 34. Jayaneththi, V. et al. Controlled transdermal drug deliv"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
243 10 43 reference_content 35. Lu, Y., Aimetti, A. A., Langer, R. & Gu, Z. Bioresponsive materials. Nat. Rev. Mater. 2, 1–17 (2016). [611, 305, 1108, 335] reference_item 0.85 ["reference content label: 35. Lu, Y., Aimetti, A. A., Langer, R. & Gu, Z. Bioresponsiv"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
244 10 44 reference_content 36. Liu, G. W. et al. Drinkable in situ-forming tough hydrogels for gastrointestinal therapeutics. Nat. Mater. 23, 1292–1299 (2024). [610, 337, 1123, 367] reference_item 0.85 ["reference content label: 36. Liu, G. W. et al. Drinkable in situ-forming tough hydrog"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
245 10 45 reference_content 37. Chen, Q. et al. In situ sprayed bioresponsive immunotherapeutic gel for post-surgical cancer treatment. Nat. Nanotechnol. 14, 89–97 (2019). [612, 372, 1101, 404] reference_item 0.85 ["reference content label: 37. Chen, Q. et al. In situ sprayed bioresponsive immunother"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
246 10 46 reference_content 38. Xu, J. et al. A bioinspired polymeric membrane-enclosed insulin crystal achieves long-term, self-regulated drug release for type 1 diabetes therapy. Nat. Nanotechnol. 20, 697-706 (2025). [610, 434, 1117, 478] reference_item 0.85 ["reference content label: 38. Xu, J. et al. A bioinspired polymeric membrane-enclosed "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
247 10 47 reference_content This paper reports an in situ formed immunotherapeutic bioresponsive gel that controls both local tumour recurrence after surgery and development of distant tumours. [612, 397, 1121, 433] reference_item 0.85 ["reference content label: This paper reports an in situ formed immunotherapeutic biore"] reference_item 0.85 reference_zone unknown_like none True True
248 10 48 reference_content 39. Wang, Z. et al. Dual self-regulated delivery of insulin and glucagon by a hybrid patch. Proc. Natl Acad. Sci. USA 117, 29512–29517 (2020). [610, 481, 1099, 511] reference_item 0.85 ["reference content label: 39. Wang, Z. et al. Dual self-regulated delivery of insulin "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
249 10 49 reference_content 40. Matsumoto, A. et al. Synthetic "smart gel" provides glucose-responsive insulin delivery in diabetic mice. Sci. Adv. 3, eaaq0723 (2017). [610, 514, 1121, 545] reference_item 0.85 ["reference content label: 40. Matsumoto, A. et al. Synthetic \"smart gel\" provides gluc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
250 10 50 reference_content 41. Yu, J. et al. Glucose-responsive insulin patch for the regulation of blood glucose in mice and minipigs. Nat. Biomed. Eng. 4, 499–506 (2020). [610, 546, 1115, 577] reference_item 0.85 ["reference content label: 41. Yu, J. et al. Glucose-responsive insulin patch for the r"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
251 10 51 reference_content 42. Wang, J. et al. Glucose transporter inhibitor-conjugated insulin mitigates hypoglycemia. Proc. Natl Acad. Sci. USA 116, 10744–10748 (2019). [610, 579, 1115, 608] reference_item 0.85 ["reference content label: 42. Wang, J. et al. Glucose transporter inhibitor-conjugated"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
252 10 52 reference_content 43. Mo, R., Jiang, T., DiSanto, R., Tai, W. & Gu, Z. ATP-triggered anticancer drug delivery. Nat. Commun. 5, 3364 (2014). [611, 610, 1089, 641] reference_item 0.85 ["reference content label: 43. Mo, R., Jiang, T., DiSanto, R., Tai, W. & Gu, Z. ATP-tri"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
253 10 53 reference_content 44. Wang, C. et al. In situ formed reactive oxygen species-responsive scaffold with gemcitabine and checkpoint inhibitor for combination therapy. Sci. Transl. Med. 10, ean3682 (2018). [610, 643, 1106, 688] reference_item 0.85 ["reference content label: 44. Wang, C. et al. In situ formed reactive oxygen species-r"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
254 10 54 reference_content 45. McHugh, K. J. et al. Fabrication of fillable microparticles and other complex 3D microstructures. Science 357, 1138–1142 (2017). This paper describes a microfabrication method and create injectabl [612, 691, 1083, 755] reference_item 0.85 ["reference content label: 45. McHugh, K. J. et al. Fabrication of fillable micropartic"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
255 10 55 reference_content 46. Tran, K. T. et al. Transdermal microneedles for the programmable burst release of multiple vaccine payloads. Nat. Biomed. Eng. 5, 998–1007 (2021). [611, 754, 1080, 785] reference_item 0.85 ["reference content label: 46. Tran, K. T. et al. Transdermal microneedles for the prog"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
256 10 56 reference_content 47. Liang, K., Carmone, S., Brambilla, D. & Leroux, J.-C. 3D printing of a wearable personalized oral delivery device: A first-in-human study. Sci. Adv. 4, eaat2544 (2018). [611, 786, 1125, 817] reference_item 0.85 ["reference content label: 47. Liang, K., Carmone, S., Brambilla, D. & Leroux, J.-C. 3D"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
257 10 57 reference_content 48. Zhang, Y. et al. Thrombin-responsive transcutaneous patch for auto-anticoagulant regulation. Adv. Mater. 29, 1604043 (2017). [611, 819, 1085, 849] reference_item 0.85 ["reference content label: 48. Zhang, Y. et al. Thrombin-responsive transcutaneous patc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
258 10 58 reference_content 49. Maitz, M. F. et al. Bio-responsive polymer hydrogels homeostatically regulate blood coagulation. Nat. Commun. 4, 2168 (2013). [610, 850, 1092, 881] reference_item 0.85 ["reference content label: 49. Maitz, M. F. et al. Bio-responsive polymer hydrogels hom"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
259 10 59 reference_content 50. Zhao, H., Xue, S., Hussherr, M.-D., Teixeira, A. P. & Fussenegger, M. Autonomous push button-controlled rapid insulin release from a piezoelectrically activated subcutaneous cell implant. Sci. Adv [610, 883, 1116, 928] reference_item 0.85 ["reference content label: 50. Zhao, H., Xue, S., Hussherr, M.-D., Teixeira, A. P. & Fu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
260 10 60 reference_content 51. Krawczyk, K. et al. Electrogenetic cellular insulin release for real-time glycemic control in type 1 diabetic mice. Science 368, 993–1001 (2020). [609, 930, 1121, 962] reference_item 0.85 ["reference content label: 51. Krawczyk, K. et al. Electrogenetic cellular insulin rele"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
261 10 61 reference_content 52. Bose, S. et al. A retrievable implant for the long-term encapsulation and survival of therapeutic xenogeneic cells. Nat. Biomed. Eng. 4, 814–826 (2020). [610, 962, 1102, 994] reference_item 0.85 ["reference content label: 52. Bose, S. et al. A retrievable implant for the long-term "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
262 10 62 reference_content 53. Desai, T. & Shea, L. D. Advances in islet encapsulation technologies. Nat. Rev. Drug Discov. 16, 338–350 (2017). [610, 996, 1124, 1025] reference_item 0.85 ["reference content label: 53. Desai, T. & Shea, L. D. Advances in islet encapsulation "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
263 10 63 reference_content 54. Wang, L.-H. et al. A bioinspired scaffold for rapid oxygenation of cell encapsulation systems. Nat. Commun. 12, 5846 (2021). [610, 1027, 1090, 1058] reference_item 0.85 ["reference content label: 54. Wang, L.-H. et al. A bioinspired scaffold for rapid oxyg"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
264 10 64 reference_content 55. An, D. et al. Designing a retrievable and scalable cell encapsulation device for potential treatment of type 1 diabetes. Proc. Natl Acad. Sci. USA 115, E263–E272 (2018). [610, 1059, 1112, 1090] reference_item 0.85 ["reference content label: 55. An, D. et al. Designing a retrievable and scalable cell "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
265 10 65 reference_content 56. Pepper, A. R. et al. A prevascularized subcutaneous device-less site for islet and cellular transplantation. Nat. Biotechnol. 33, 518–523 (2015). [610, 1092, 1115, 1122] reference_item 0.85 ["reference content label: 56. Pepper, A. R. et al. A prevascularized subcutaneous devi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
266 10 66 reference_content 57. Zhang, W. et al. Adoptive Treg therapy with metabolic intervention via perforated microneedles ameliorates psoriasis syndrome. Sci. Adv. 9, eadg6007 (2023). [610, 1123, 1078, 1154] reference_item 0.85 ["reference content label: 57. Zhang, W. et al. Adoptive Treg therapy with metabolic in"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
267 10 67 reference_content 58. Zhou, R. et al. Grooved microneedle patch augments adoptive T cell therapy against solid tumors via diverting regulatory T cells. Adv. Mater. 36, 2401667 (2024). [610, 1156, 1125, 1186] reference_item 0.85 ["reference content label: 58. Zhou, R. et al. Grooved microneedle patch augments adopt"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
268 10 68 reference_content 59. Ye, Y. et al. Microneedle integrated with pancreatic cells and synthetic glucose-signal amplifiers for smart insulin delivery. Adv. Mater. 28, 3115 (2016). [610, 1188, 1103, 1218] reference_item 0.85 ["reference content label: 59. Ye, Y. et al. Microneedle integrated with pancreatic cel"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
269 10 69 reference_content 60. Tang, J. et al. Cardiac cell-integrated microneedle patch for treating myocardial infarction. Sci. Adv. 4, eaat9365 (2018). [610, 1219, 1073, 1250] reference_item 0.85 ["reference content label: 60. Tang, J. et al. Cardiac cell-integrated microneedle patc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
270 10 70 reference_content 61. Coon, M. E., Stephan, S. B., Gupta, V., Kealey, C. P. & Stephan, M. T. Nitinol thin films functionalized with CAR-T cells for the treatment of solid tumours. Nat. Biomed. Eng. 4, 195–206 (2020). [610, 1250, 1112, 1296] reference_item 0.85 ["reference content label: 61. Coon, M. E., Stephan, S. B., Gupta, V., Kealey, C. P. & "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
271 10 71 reference_content 62. Agarwalla, P. et al. Bioinstructive implantable scaffolds for rapid in vivo manufacture and release of CAR-T cells. Nat. Biotechnol. 40, 1250–1258 (2022). [611, 1299, 1119, 1330] reference_item 0.85 ["reference content label: 62. Agarwalla, P. et al. Bioinstructive implantable scaffold"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
272 10 72 reference_content 63. Wu, J. et al. Adhesive anti-fibrotic interfaces on diverse organs. Nature 630, 360–367 (2024) [610, 1332, 1123, 1347] reference_item 0.85 ["reference content label: 63. Wu, J. et al. Adhesive anti-fibrotic interfaces on diver"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
273 10 73 reference_content 64. Zhou, X. et al. Immunocompatible elastomer with increased resistance to the foreign body response. Nat. Commun. 15, 7526 (2024). [608, 1347, 1115, 1379] reference_item 0.85 ["reference content label: 64. Zhou, X. et al. Immunocompatible elastomer with increase"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
274 10 74 reference_content 65. Li, N. Immune-compatible designs of semiconducting polymers for bioelectronics with suppressed foreign-body response. Nat. Mater. 25, 124–132 (2026). [610, 1380, 1112, 1411] reference_item 0.85 ["reference content label: 65. Li, N. Immune-compatible designs of semiconducting polym"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
275 10 75 reference_content 66. Chen, H. et al. Drug target prediction through deep learning functional representation of gene signatures. Nat. Commun. 15, 1853 (2024). [610, 1412, 1119, 1443] reference_item 0.85 ["reference content label: 66. Chen, H. et al. Drug target prediction through deep lear"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
276 10 76 reference_content 67. Zhang, K. et al. Artificial intelligence in drug development. Nat. Med. 31, 45–59 (2025). [610, 1442, 1110, 1457] reference_item 0.85 ["reference content label: 67. Zhang, K. et al. Artificial intelligence in drug develop"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
277 10 77 reference_content 68. Jiang, Y. et al. Pocketflow is a data-and-knowledge-driven structure-based molecular generative model. Nat. Mach. Intell. 6, 326–337 (2024). [611, 1458, 1103, 1491] reference_item 0.85 ["reference content label: 68. Jiang, Y. et al. Pocketflow is a data-and-knowledge-driv"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
278 10 78 number 906 [77, 1525, 113, 1542] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
279 10 79 footer Nature | Vol 651 | 26 March 2026 [128, 1524, 380, 1543] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
280 11 0 reference_content 69. Yi, J. et al. OptADMET: a web-based tool for substructure modifications to improve ADMET properties of lead compounds. Nat. Protoc. 19, 1105–1121 (2024). [73, 96, 591, 127] reference_item 0.85 ["reference content label: 69. Yi, J. et al. OptADMET: a web-based tool for substructur"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
281 11 1 reference_content 70. Yang, C. et al. Glucose-responsive microneedle patch for closed-loop dual-hormone delivery in mice and pigs. Sci. Adv. 8, eadd3197 (2022). [75, 129, 565, 160] reference_item 0.85 ["reference content label: 70. Yang, C. et al. Glucose-responsive microneedle patch for"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
282 11 2 reference_content 71. Li, B. et al. Accelerating ionizable lipid discovery for mRNA delivery using machine learning and combinatorial chemistry. Nat. Mater. 23, 1002–1008 (2024). [76, 161, 553, 191] reference_item 0.85 ["reference content label: 71. Li, B. et al. Accelerating ionizable lipid discovery for"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
283 11 3 reference_content 72. Jiang, Z. et al. Al-guided design of antimicrobial peptide hydrogels for precise treatment of drug-resistant bacterial infections. Adv. Mater. 37, 2500043 (2025). [75, 194, 584, 223] reference_item 0.85 ["reference content label: 72. Jiang, Z. et al. Al-guided design of antimicrobial pepti"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
284 11 4 reference_content 73. McIntyre, D., Lashkaripour, A., Fordyce, P. & Densmore, D. Machine learning for microfluidic design and control. Lab Chip 22, 2925–2937 (2022). [78, 225, 532, 255] reference_item 0.85 ["reference content label: 73. McIntyre, D., Lashkaripour, A., Fordyce, P. & Densmore, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
285 11 5 reference_content 74. Brion, D. A. & Pattinson, S. W. Generalisable 3D printing error detection and correction via multi-head neural networks. Nat. Commun. 13, 4654 (2022). [77, 257, 589, 288] reference_item 0.85 ["reference content label: 74. Brion, D. A. & Pattinson, S. W. Generalisable 3D printin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
286 11 6 reference_content 75. Chen, B. et al. Artificial intelligence-assisted high-throughput screening of printing conditions of hydrogel architectures for accelerated diabetic wound healing. Adv. Funct. Mater. 32, 2201843 ( [76, 290, 587, 334] reference_item 0.85 ["reference content label: 75. Chen, B. et al. Artificial intelligence-assisted high-th"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
287 11 7 reference_content 76. Bannigan, P. et al. Machine learning models to accelerate the design of polymeric long-acting injectables. Nat. Commun. 14, 35 (2023). [77, 336, 550, 367] reference_item 0.85 ["reference content label: 76. Bannigan, P. et al. Machine learning models to accelerat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
288 11 8 reference_content 77. Sarmadi, M. et al. Modeling, design, and machine learning-based framework for optimal injectability of microparticle-based drug formulations. Sci. Adv. 6, eabb6594 (2020). [77, 369, 583, 399] reference_item 0.85 ["reference content label: 77. Sarmadi, M. et al. Modeling, design, and machine learnin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
289 11 9 reference_content 78. Zhang, Y. et al. Machine learning-based identification of a psychotherapy-predictive electroencephalographic signature in PTSD. Nat. Ment. Health. 1, 284–294 (2023). [78, 402, 556, 432] reference_item 0.85 ["reference content label: 78. Zhang, Y. et al. Machine learning-based identification o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
290 11 10 reference_content 79. Stephansen, J. B. et al. Neural network analysis of sleep stages enables efficient diagnosis of narcolepsy. Nat. Commun. 9, 5229 (2018). [78, 433, 591, 464] reference_item 0.85 ["reference content label: 79. Stephansen, J. B. et al. Neural network analysis of slee"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
291 11 11 reference_content 80. Zhang, Y. et al. Identification of psychiatric disorder subtypes from functional connectivity patterns in resting-state electroencephalography. Nat. Biomed. Eng. 5, 309–323 (2021). [76, 466, 591, 496] reference_item 0.85 ["reference content label: 80. Zhang, Y. et al. Identification of psychiatric disorder "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
292 11 12 reference_content 81. Lai, J. et al. Practical intelligent diagnostic algorithm for wearable 12-lead ECG via self-supervised learning on large-scale dataset. Nat. Commun. 14, 3741 (2023). [77, 498, 544, 528] reference_item 0.85 ["reference content label: 81. Lai, J. et al. Practical intelligent diagnostic algorith"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
293 11 13 reference_content 82. Johnson, L. et al. Artificial intelligence for direct-to-physician reporting of ambulatory electrocardiography. Nat. Med. 31, 925–931 (2025). [77, 530, 569, 560] reference_item 0.85 ["reference content label: 82. Johnson, L. et al. Artificial intelligence for direct-to"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
294 11 14 reference_content 83. Li, J. et al. Thin, soft, wearable system for continuous wireless monitoring of artery blood pressure. Nat. Commun. 14, 5009 (2023). [77, 562, 586, 593] reference_item 0.85 ["reference content label: 83. Li, J. et al. Thin, soft, wearable system for continuous"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
295 11 15 reference_content 84. Li, S. et al. Monitoring blood pressure and cardiac function without positioning via a deep learning-assisted strain sensor array. Sci. Adv. 9, eadh0615 (2023). [76, 594, 588, 624] reference_item 0.85 ["reference content label: 84. Li, S. et al. Monitoring blood pressure and cardiac func"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
296 11 16 reference_content 85. Cao, K. et al. Large-scale pancreatic cancer detection via non-contrast CT and deep learning. Nat. Med. 29, 3033–3043 (2023). [76, 627, 559, 656] reference_item 0.85 ["reference content label: 85. Cao, K. et al. Large-scale pancreatic cancer detection v"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
297 11 17 reference_content 86. Zheng, H.-D. et al. Deep learning-based high-accuracy quantitation for lumbar intervertebral disc degeneration from MRI. Nat. Commun. 13, 841 (2022). [77, 658, 530, 689] reference_item 0.85 ["reference content label: 86. Zheng, H.-D. et al. Deep learning-based high-accuracy qu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
298 11 18 reference_content 87. Lu, L., Dercle, L., Zhao, B. & Schwartz, L. H. Deep learning for the prediction of early on-treatment response in metastatic colorectal cancer from serial medical imaging. Nat. Commun. 12, 6654 (2 [77, 690, 585, 736] reference_item 0.85 ["reference content label: 87. Lu, L., Dercle, L., Zhao, B. & Schwartz, L. H. Deep lear"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
299 11 19 reference_content 88. Tu, T. et al. Towards conversational diagnostic artificial intelligence. Nature 642, 442–450 (2025). [76, 738, 587, 768] reference_item 0.85 ["reference content label: 88. Tu, T. et al. Towards conversational diagnostic artifici"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
300 11 20 reference_content 89. Nimri, R. et al. Insulin dose optimization using an automated artificial intelligence-based decision support system in youths with type 1 diabetes. Nat. Med. 26, 1380–1384 (2020). [76, 770, 583, 815] reference_item 0.85 ["reference content label: 89. Nimri, R. et al. Insulin dose optimization using an auto"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
301 11 21 reference_content 90. Castañeda, J. et al. Predictors of time in target glucose range in real-world users of the MiniMed 780G system. Diabetes Obes. Metab. 24, 2212–2221 (2022). [76, 818, 576, 848] reference_item 0.85 ["reference content label: 90. Casta\u00f1eda, J. et al. Predictors of time in target glucos"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
302 11 22 reference_content 91. Tyler, N. S. et al. An artificial intelligence decision support system for the management of type 1 diabetes. Nat. Metab. 2, 612–619 (2020). [73, 850, 591, 879] reference_item 0.85 ["reference content label: 91. Tyler, N. S. et al. An artificial intelligence decision "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
303 11 23 reference_content 92. Yang, J. et al. Masticatory system-inspired microneedle theranostic platfo intelligent and precise diabetic management. Sci. Adv. 8, eabo6900 (202 [77, 883, 535, 914] reference_item 0.85 ["reference content label: 92. Yang, J. et al. Masticatory system-inspired microneedle "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
304 11 24 reference_content et al. Artificial intelligence-enabled detection and assessment of Parkinson's using nocturnal breathing signals. Nat. Med. 28, 2207–2215 (2022). [77, 916, 563, 947] reference_item 0.85 ["reference content label: et al. Artificial intelligence-enabled detection and assessm"] reference_item 0.85 reference_zone unknown_like none True True
305 11 25 reference_content 94. Jiang, Y. et al. Identification of four biotypes in temporal lobe epilepsy via machine learning on brain images. Nat. Commun. 15, 2221 (2024). [78, 948, 551, 979] reference_item 0.85 ["reference content label: 94. Jiang, Y. et al. Identification of four biotypes in temp"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
306 11 26 reference_content 95. Ouyang, W. et al. A wireless and battery-less implant for multimodal closed-loop neuromodulation in small animals. Nat. Biomed. Eng. 7, 1252–1269 (2023). [78, 979, 541, 1011] reference_item 0.85 ["reference content label: 95. Ouyang, W. et al. A wireless and battery-less implant fo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
307 11 27 reference_content 96. Qu, J. et al. Multifunctional hydrogel electronics for closed-loop antiepileptic treatment. Sci. Adv. 10, eadq9207 (2024). [77, 1012, 583, 1041] reference_item 0.85 ["reference content label: 96. Qu, J. et al. Multifunctional hydrogel electronics for c"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
308 11 28 reference_content 97. Zheng, X. T. et al. Battery-free and AI-enabled multiplexed sensor patches for wound monitoring. Sci. Adv. 9, eadg6670 (2023). [77, 1043, 564, 1074] reference_item 0.85 ["reference content label: 97. Zheng, X. T. et al. Battery-free and AI-enabled multiple"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
309 11 29 reference_content 99. Shao, J. et al. Printable personalized drug delivery patch for the topical therapy of skin diseases. Matter 6, 158–174 (2023). [77, 1107, 574, 1138] reference_item 0.85 ["reference content label: 99. Shao, J. et al. Printable personalized drug delivery pat"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
310 11 30 reference_content 100. Sheng, T. et al. Unmanned aerial vehicle mediated drug delivery for first aid. Adv. Mater. 35, 2208648 (2023). [78, 1139, 576, 1170] reference_item 0.85 ["reference content label: 100. Sheng, T. et al. Unmanned aerial vehicle mediated drug "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
311 11 31 reference_content 101. Cao, Q. et al. Robotic wireless capsule endoscopy: recent advances and upcoming technologies. Nat. Commun. 15, 4597 (2024). [78, 1171, 556, 1203] reference_item 0.85 ["reference content label: 101. Cao, Q. et al. Robotic wireless capsule endoscopy: rece"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
312 11 32 reference_content 102. Wei, X. An artificial cilia-based array system for sound frequency decoding and resonance-responsive drug release. Nat. Biomed. Eng. https://doi.org/10.1038/s41551-025-01505-6 (2025). [78, 1204, 570, 1252] reference_item 0.85 ["reference content label: 102. Wei, X. An artificial cilia-based array system for soun"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
313 11 33 reference_content 103. Landers, F. C. et al. Clinically ready magnetic microrobots for targeted therapies. Science 390, 710–715 (2025). [76, 1282, 589, 1313] reference_item 0.85 ["reference content label: 103. Landers, F. C. et al. Clinically ready magnetic microro"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
314 11 34 reference_content 104. Yang, L. et al. Autonomous environment-adaptive microrobot swarm navigation enabled by deep learning-based real-time distribution planning. Nat. Mach. Intell. 4, 480–493 (2022). [77, 1315, 586, 1360] reference_item 0.85 ["reference content label: 104. Yang, L. et al. Autonomous environment-adaptive microro"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
315 11 35 reference_content 106. Ren, E. et al. Water-stable magnetic lipidol micro-droplets as a miniaturized robotic tool for drug delivery. Adv. Mater. 37, 2412187 (2025). [77, 1396, 587, 1427] reference_item 0.85 ["reference content label: 106. Ren, E. et al. Water-stable magnetic lipidol micro-drop"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
316 11 36 reference_content 105. Muiños-Landín, S., Fischer, A., Holubec, V. & Cichos, F. Reinforcement learning with artificial microswimmers. Sci. Robot. 6, eabd9285 (2021). [78, 1362, 557, 1395] reference_item 0.85 ["reference content label: 105. Mui\u00f1os-Land\u00edn, S., Fischer, A., Holubec, V. & Cichos, F"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
317 11 37 reference_content 108. Zou, J. & Schiebinger, L. Al can be sexist and racist—it's time to make it fair. Nature 559, 324–326 (2018). [78, 1460, 575, 1489] reference_item 0.85 ["reference content label: 108. Zou, J. & Schiebinger, L. Al can be sexist and racist\u2014i"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
318 11 38 reference_content 107. Kriegman, S., Blackiston, D., Levin, M. & Bongard, J. A scalable pipeline for designing reconfigurable organisms. Proc. Natl Acad. Sci. USA 117, 1853–1859 (2020). [75, 1428, 568, 1460] reference_item 0.85 ["reference content label: 107. Kriegman, S., Blackiston, D., Levin, M. & Bongard, J. A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
319 11 39 reference_content 109. Chen, R. J. et al. Algorithmic fairness in artificial intelligence for medicine and healthcare. Nat. Biomed. Eng. 7, 719–742 (2023). [609, 96, 1121, 127] reference_item 0.85 ["reference content label: 109. Chen, R. J. et al. Algorithmic fairness in artificial i"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
320 11 40 reference_content 110. Majedi, F. S. et al. Systemic enhancement of antitumour immunity by peritumourally implanted immunomodulatory macroporous scaffolds. Nat. Biomed. Eng. 7, 56–71 (2023). [608, 130, 1121, 161] reference_item 0.85 ["reference content label: 110. Majedi, F. S. et al. Systemic enhancement of antitumour"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
321 11 41 reference_content 111. Hagan, C. T. IV et al. 3D printed drug-loaded implantable devices for intraoperative treatment of cancer. J. Control. Release 344, 147–156 (2022). [608, 163, 1087, 191] reference_item 0.85 ["reference content label: 111. Hagan, C. T. IV et al. 3D printed drug-loaded implantab"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
322 11 42 reference_content 112. Stephan, S. B. et al. Biopolymer implants enhance the efficacy of adoptive T-cell therapy. Nat. Biotechnol. 33, 97–101 (2015). [609, 192, 1117, 223] reference_item 0.85 ["reference content label: 112. Stephan, S. B. et al. Biopolymer implants enhance the e"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
323 11 43 reference_content 113. Shi, J. et al. Lyophilized lymph nodes for improved delivery of chimeric antigen receptor T cells. Nat. Mater. 23, 844–853 (2024). [609, 225, 1114, 255] reference_item 0.85 ["reference content label: 113. Shi, J. et al. Lyophilized lymph nodes for improved del"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
324 11 44 reference_content 114. Chen, G. et al. Transdermal cold atmospheric plasma-mediated immune checkpoint blockade therapy. Proc. Natl Acad. Sci. USA 117, 3687–3692 (2020). [610, 257, 1097, 288] reference_item 0.85 ["reference content label: 114. Chen, G. et al. Transdermal cold atmospheric plasma-med"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
325 11 45 reference_content 115. Chen, Z. et al. Bioorthogonal catalytic patch. Nat. Nanotechnol. 16, 933–941 (2021). [611, 288, 1090, 303] reference_item 0.85 ["reference content label: 115. Chen, Z. et al. Bioorthogonal catalytic patch. Nat. Nan"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
326 11 46 reference_content 116. Li, H. et al. Scattered seeding of CART cells in solid tumors augments anticancer efficacy. Natl Sci. Rev. 9, nwab172 (2022). [609, 305, 1125, 335] reference_item 0.85 ["reference content label: 116. Li, H. et al. Scattered seeding of CART cells in solid "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
327 11 47 reference_content 117. Chang, H. et al. Cryomicroneedles for transdermal cell delivery. Nat. Biomed. Eng. 5, 1008–1018 (2021). [609, 336, 1110, 367] reference_item 0.85 ["reference content label: 117. Chang, H. et al. Cryomicroneedles for transdermal cell "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
328 11 48 reference_content 118. Bansal, A., Yang, F., Xi, T., Zhang, Y. & Ho, J. S. In vivo wireless photonic photodynamic therapy. Proc. Natl Acad. Sci. USA 115, 1469–1474 (2018). [609, 369, 1101, 399] reference_item 0.85 ["reference content label: 118. Bansal, A., Yang, F., Xi, T., Zhang, Y. & Ho, J. S. In "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
329 11 49 reference_content 119. Yamagishi, K. et al. Tissue-adhesive wirelessly powered optoelectronic device for metronomic photodynamic cancer therapy. Nat. Biomed. Eng. 3, 27–36 (2019). [610, 401, 1093, 431] reference_item 0.85 ["reference content label: 119. Yamagishi, K. et al. Tissue-adhesive wirelessly powered"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
330 11 50 reference_content 120. Lee, T. T. et al. Automated insulin delivery in women with pregnancy complicated by type 1 diabetes. New Engl. J. Med. 389, 1566–1578 (2023). [610, 434, 1120, 463] reference_item 0.85 ["reference content label: 120. Lee, T. T. et al. Automated insulin delivery in women w"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
331 11 51 reference_content 121. Abramson, A. et al. A luminal unfolding microneedle injector for oral delivery of macromolecules. Nat. Med. 25, 1512–1518 (2019). [610, 466, 1071, 495] reference_item 0.85 ["reference content label: 121. Abramson, A. et al. A luminal unfolding microneedle inj"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
332 11 52 reference_content 122. Srinivasan, S. S. et al. RoboCap: Robotic mucus-clearing capsule for enhanced drug delivery in the gastrointestinal tract. Sci. Robot. 7, eabp9066 (2022). [610, 497, 1095, 528] reference_item 0.85 ["reference content label: 122. Srinivasan, S. S. et al. RoboCap: Robotic mucus-clearin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
333 11 53 reference_content 123. Koo, J. et al. Wirelessly controlled, bioresorbable drug delivery device with active valves that exploit electrochemically triggered crevice corrosion. Sci. Adv. 6, eabb1093 (2020). [610, 531, 1113, 576] reference_item 0.85 ["reference content label: 123. Koo, J. et al. Wirelessly controlled, bioresorbable dru"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
334 11 54 reference_content 124. Topol, E. J. & Iwasaki, A. Operation nasal vaccine—lightning speed to counter COVID-19. Sci. Immunol. 7, eadd9947 (2022). [611, 578, 1115, 608] reference_item 0.85 ["reference content label: 124. Topol, E. J. & Iwasaki, A. Operation nasal vaccine\u2014ligh"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
335 11 55 reference_content 125. Ye, T. et al. Inhaled SARS-CoV-2 vaccine for single-dose dry powder aerosol immunization. Nature 624, 630–638 (2023). [610, 610, 1122, 640] reference_item 0.85 ["reference content label: 125. Ye, T. et al. Inhaled SARS-CoV-2 vaccine for single-dos"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
336 11 56 reference_content 126. Mei, X. et al. An inhaled bioadhesive hydrogel to shield non-human primates from SARS-CoV-2 infection. Nat. Mater. 22, 903–912 (2023). [610, 642, 1117, 673] reference_item 0.85 ["reference content label: 126. Mei, X. et al. An inhaled bioadhesive hydrogel to shiel"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
337 11 57 reference_content 127. Rouphael, N. G. et al. The safety, immunogenicity, and acceptability of inactivated influenza vaccine delivered by microneedle patch (TIV-MNP 2015): a randomised, partly blinded, placebo-controll [609, 674, 1115, 721] reference_item 0.85 ["reference content label: 127. Rouphael, N. G. et al. The safety, immunogenicity, and "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
338 11 58 reference_content 128. Sheng, T. et al. Microneedle-mediated vaccination: innovation and translation. Adv. Drug Delivery Rev. 179, 113919 (2021). [610, 722, 1118, 752] reference_item 0.85 ["reference content label: 128. Sheng, T. et al. Microneedle-mediated vaccination: inno"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
339 11 59 reference_content 129. Vander Straeten, A. et al. A microneedle vaccine printer for thermostable COVID-19 mRNA vaccines. Nat. Biotechnol. 42, 510–517 (2024). [613, 754, 1089, 789] reference_item 0.85 ["reference content label: 129. Vander Straeten, A. et al. A microneedle vaccine printe"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
340 11 60 reference_content 130. Feiner, R. et al. Engineered hybrid cardiac patches with multifunctional electronics for online monitoring and regulation of tissue function. Nat. Mater. 15, 679–685 (2016). [610, 818, 1104, 849] reference_item 0.85 ["reference content label: 130. Feiner, R. et al. Engineered hybrid cardiac patches wit"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
341 11 61 reference_content 131. Lee, K. et al. Microneedle drug eluting balloon for enhanced drug delivery to vascular tissue. J. Control. Release 321, 174–183 (2020). [610, 851, 1104, 881] reference_item 0.85 ["reference content label: 131. Lee, K. et al. Microneedle drug eluting balloon for enh"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
342 11 62 reference_content 132. Park, B.-W. et al. In vivo priming of human mesenchymal stem cells with hepatocyte growth factor-engineered mesenchymal stem cells promotes therapeutic potential for cardiac repair. Sci. Adv. 6, [610, 882, 1113, 929] reference_item 0.85 ["reference content label: 132. Park, B.-W. et al. In vivo priming of human mesenchymal"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
343 11 63 reference_content 133. Gao, L. et al. Large cardiac muscle patches engineered from human induced-pluripotent stem cell-derived cardiac cells improve recovery from myocardial infarction in swine. Circulation 137, 1712–1 [610, 930, 1119, 976] reference_item 0.85 ["reference content label: 133. Gao, L. et al. Large cardiac muscle patches engineered "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
344 11 64 reference_content 134. Shi, H. et al. Microneedle-mediated gene delivery for the treatment of ischemic myocardial disease. Sci. Adv. 6, eaaz3621 (2020). [610, 979, 1123, 1010] reference_item 0.85 ["reference content label: 134. Shi, H. et al. Microneedle-mediated gene delivery for t"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
345 11 65 reference_content 135. Xu, G. et al. Battery-free and wireless smart wound dressing for wound infection monitoring and electrically controlled on-demand drug delivery. Adv. Funct. Mater. 31, 2100852 (2021). [610, 1012, 1107, 1056] reference_item 0.85 ["reference content label: 135. Xu, G. et al. Battery-free and wireless smart wound dre"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
346 11 66 reference_content 136. Liu, M. et al. Biomimicking antibacterial opto-electro sensing sutures made of regenerated silk proteins. Adv. Mater. 33, 2004733 (2021). [607, 1059, 1126, 1091] reference_item 0.85 ["reference content label: 136. Liu, M. et al. Biomimicking antibacterial opto-electro "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
347 11 67 reference_content 137. Lee, K. et al. A patch of detachable hybrid microneedle depot for localized delivery of mesenchymal stem cells in regeneration therapy. Adv. Funct. Mater. 30, 2000086 (2020). [610, 1091, 1103, 1136] reference_item 0.85 ["reference content label: 137. Lee, K. et al. A patch of detachable hybrid microneedle"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
348 11 68 reference_content 138. Wu, X., Huang, D., Xu, Y., Chen, G. & Zhao, Y. Microfluidic templated stem cell spheroid microneedles for diabetic wound treatment. Adv. Mater. 35, 2301064 (2023). [610, 1139, 1106, 1170] reference_item 0.85 ["reference content label: 138. Wu, X., Huang, D., Xu, Y., Chen, G. & Zhao, Y. Microflu"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
349 11 69 reference_content 139. Li, W. et al. Rapidly separable microneedle patch for the sustained release of a contraceptive. Nat. Biomed. Eng. 3, 220–229 (2019). [610, 1172, 1079, 1202] reference_item 0.85 ["reference content label: 139. Li, W. et al. Rapidly separable microneedle patch for t"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
350 11 70 reference_content 140. Mofidfar, M., O'Farrell, L. & Prausnitz, M. R. Pharmaceutical jewelry: Earring patch for transdermal delivery of contraceptive hormone. J. Controlled Release 301, 140–145 (2019). [609, 1203, 1110, 1248] reference_item 0.85 ["reference content label: 140. Mofidfar, M., O'Farrell, L. & Prausnitz, M. R. Pharmace"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
351 11 71 reference_content 141. Kirtane, A. R. et al. A once-a-month oral contraceptive. Sci. Transl. Med. 11, eaay2602 (2019). [609, 1250, 1113, 1280] reference_item 0.85 ["reference content label: 141. Kirtane, A. R. et al. A once-a-month oral contraceptive"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
352 11 72 reference_content This work demonstrates integration of insulin pump and glucose-responsive insulin for dual-closed-loop regulation. [611, 1306, 1122, 1348] reference_item 0.85 ["reference content label: This work demonstrates integration of insulin pump and gluco"] reference_item 0.85 reference_zone unknown_like none True True
353 11 73 reference_content 143. Zhang, Y. et al. Millimetre-scale bioresorbable optoelectronic systems for electrotherapy. Nature 640, 77–86 (2025). [610, 1348, 1121, 1378] reference_item 0.85 ["reference content label: 143. Zhang, Y. et al. Millimetre-scale bioresorbable optoele"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
354 11 74 reference_content 144. Kandel, S. et al. Demonstration of an AI-driven workflow for autonomous high-resolution scanning microscopy. Nat. Commun. 14, 5501 (2023). [609, 1380, 1117, 1410] reference_item 0.85 ["reference content label: 144. Kandel, S. et al. Demonstration of an AI-driven workflo"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
355 11 75 reference_content 145. Han, J. et al. Long-acting IL-2 release from pressure-fused biomineral tablets promotes antitumor immune response. Nat. Cancer 6, 1384–1399 (2025). [610, 1413, 1109, 1443] reference_item 0.85 ["reference content label: 145. Han, J. et al. Long-acting IL-2 release from pressure-f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
356 11 76 reference_content 146. Rosenstock, J. et al. Efficacy and safety of ITCA 650, a novel drug-device GLP-1 receptor agonist, in type 2 diabetes uncontrolled with oral antidiabetes drugs: the FREEDOM-1 trial. Diabetes Care [610, 1445, 1112, 1490] reference_item 0.85 ["reference content label: 146. Rosenstock, J. et al. Efficacy and safety of ITCA 650, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
357 11 77 footer Nature | Vol 651 | 26 March 2026 [823, 1524, 1074, 1543] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False
358 11 78 number 907 [1091, 1525, 1125, 1542] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
359 12 0 paragraph_title Review [77, 54, 177, 81] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Review"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
360 12 1 text Acknowledgements Z.G. is supported by grants from the National Natural Science Foundation of China (52233013), National Key R&D Program of China (2021YFA0909900), Fundamental and Interdisciplinary Dis [73, 96, 594, 385] reference_item 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 reference_zone unknown_like none True True
361 12 2 text Author contributions Z.G. and R.L. conceived the scope of this Review. All authors contributed to writing and revising the paper and approved the final version. X.W. was responsible for data statistic [74, 400, 590, 450] backmatter_body 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 tail_nonref_hold_zone support_like none True True
362 12 3 text Competing interests Z.G. is the co-founder of Zenomics Inc., ZCapsule Inc. and μZEn Inc. For a list of entities with which R.L. is, or has been recently (last five years) involved, compensated or unco [75, 467, 583, 534] backmatter_body 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 tail_nonref_hold_zone unknown_like none True True
363 12 4 text [608, 96, 1123, 258] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
364 12 5 paragraph_title Additional information [609, 273, 742, 288] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Additional information"] backmatter_boundary_candidate 0.5 unknown_like none True True
365 12 6 text Supplementary information The online version contains supplementary material available at https://doi.org/10.1038/s41586-026-10221-3. [609, 289, 1116, 319] backmatter_body 0.6 ["default body_paragraph for text label", "tail_nonref_hold_zone excluded from body flow"] backmatter_body 0.6 tail_nonref_hold_zone unknown_like none True True
366 12 7 text Correspondence and requests for materials should be addressed to Zhen Gu. Peer review information Nature thanks Seung-Kyun Kang, who co-reviewed with Jae-Young Bae, and the other anonymous reviewer fo [608, 326, 1111, 419] frontmatter_noise 0.8 ["frontmatter phrase: Correspondence and requests for materials should be addresse"] frontmatter_noise 0.8 support_like none False False
367 12 8 text Springer Nature or its licensor (e.g. a society or other partner) holds exclusive rights to this article under a publishing agreement with the author(s) or other rightsholder(s); author self-archiving [608, 434, 1101, 500] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
368 12 9 text © Springer Nature Limited 2026 [609, 516, 788, 532] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
369 12 10 number 908 [77, 1524, 113, 1542] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
370 12 11 footer Nature | Vol 651 | 26 March 2026 [129, 1523, 380, 1543] noise 0.9 ["footer label"] noise 0.9 unknown_like none False False

View file

@ -0,0 +1,159 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,number,953,"[590, 66, 633, 91]",noise,0.9,"[""page number label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,1,text,"COPYRIGHT © 2007 BY THE JOURNAL OF BONE AND JOINT SURGERY, INCORPORATED","[321, 107, 901, 129]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: COPYRIGHT \u00a9 2007 BY THE JOURNAL OF BONE AND JOINT SURGERY, I""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,2,doc_title,"Repair Integrity and Functional
Outcome After Arthroscopic
Double-Row Rotator Cuff Repair","[282, 213, 939, 367]",paper_title,0.8,"[""page-1 zone title_zone: Repair Integrity and Functional\nOutcome After Arthroscopic\nD""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,3,text,A Prospective Outcome Study,"[430, 388, 791, 420]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,frontmatter_main_zone,support_like,none,True,True
1,4,text,"By Hiroyuki Sugaya, MD, Kazuhiko Maeda, MD, Keisuke Matsuki, MD, and Joji Moriishi, MD","[414, 448, 809, 498]",authors,0.8,"[""page-1 zone author_zone: By Hiroyuki Sugaya, MD, Kazuhiko Maeda, MD, Keisuke Matsuki,""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,5,text,"Investigation performed at Funabashi Orthopaedic Sports Medicine Center, Funabashi, Chiba, and the Department of Orthopaedic Surgery, Kawatetsu Chiba Hospital, Chiba, Japan","[281, 520, 941, 566]",affiliation,0.8,"[""page-1 zone affiliation_zone: Investigation performed at Funabashi Orthopaedic Sports Medi""]",affiliation,0.8,frontmatter_main_zone,support_like,none,True,True
1,6,abstract,Background: The retear rate following rotator cuff repair is variable. Recent biomechanical studies have demonstrated that double-row tendon-to-bone fixation excels in initial fixation strength and fo,"[123, 628, 1101, 723]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,7,abstract,Methods: A consecutive series of 106 patients with full-thickness rotator cuff tears underwent arthroscopic double-row rotator cuff repair with use of suture anchors and were followed prospectively. T,"[118, 733, 1101, 944]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,8,abstract,"Results: The average clinical outcome scores all improved significantly at the time of the final follow-up (p < 0.01). At a mean of fourteen months postoperatively, magnetic resonance imaging revealed","[118, 953, 1101, 1094]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,9,abstract,"Conclusions: Arthroscopic double-row repair can result in improved repair integrity compared with open or mini-open repair methods. However, the retear rate for shoulders with large and massive tears ","[122, 1104, 1100, 1196]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,10,text,Level of Evidence: Therapeutic $ \underline{\text{Level IV}} $. See Instructions to Authors for a complete description of levels of evidence.,"[122, 1209, 1098, 1232]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,11,text,Disclosure: The authors did not receive any outside funding or grants in support of their research for or preparation of this work. Neither they nor a member of their immediate families received payme,"[93, 1310, 1130, 1406]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,12,footer,J Bone Joint Surg Am. 2007;89:953-60 • doi:10.2106/JBJS.F.00512,"[94, 1459, 520, 1479]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,number,954,"[588, 66, 635, 90]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,header,"THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG
VOLUME 89-A · NUMBER 5 · MAY 2007","[198, 107, 598, 149]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,2,header,"REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER
ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR","[197, 106, 1039, 149]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
2,3,text,"Although recent studies have revealed that functional outcomes after arthroscopic rotator cuff repair are comparable with those after open or mini-open repair $ ^{1-8} $, only a few studies have descr","[91, 192, 599, 933]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,paragraph_title,Materials and Methods Patient Selection,"[93, 951, 309, 996]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Materials and Methods Patient Selection""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
2,5,text,"From April 2001 to May 2003, 157 consecutive patients who failed conservative treatment underwent arthroscopic rotator cuff repair by a single surgeon (H.S.). Seven patients who had been scheduled for","[91, 998, 599, 1485]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,text,,"[621, 193, 1130, 610]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
2,7,paragraph_title,Patient Assessment,"[624, 630, 787, 652]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Patient Assessment""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
2,8,text,"The patients underwent a standard history and physical examination as well as imaging studies, including bilateral anteroposterior radiographs of the shoulder in both internal and external rotation an","[621, 650, 1130, 1277]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,9,paragraph_title,Magnetic Resonance Imaging,"[624, 1297, 869, 1320]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Magnetic Resonance Imaging""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
2,10,text,"Magnetic resonance imaging was performed with a 1.5-T closed-type scanner (Gyroscan PowerTrak 3000; Philips, Best, The Netherlands) or a 0.3-T open-type scanner (ARIS II; Hitachi, Tokyo, Japan). Obliq","[621, 1319, 1130, 1484]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,0,number,955,"[590, 66, 634, 90]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,1,header,"THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG
VOLUME 89-A · NUMBER 5 · MAY 2007","[198, 107, 597, 149]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
3,2,text,REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR,"[624, 107, 1039, 149]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,3,text,"the Hitachi scanner) were acquired for structural and qualitative assessment of the rotator cuff, and repair integrity was determined. The slice thickness for the Philips and Hitachi scanners was 4 an","[91, 192, 598, 610]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,4,paragraph_title,Surgical Procedure,"[93, 630, 253, 652]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Surgical Procedure""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
3,5,text,All procedures were performed with the patient under general anesthesia in the beach-chair position. A posterior portal was established for the initial assessment of the glenohumeral joint. An anterio,"[91, 652, 598, 813]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,The arthroscope was then removed from the glenohumeral joint and redirected into the subacromial space. A lateral portal and a posterolateral portal were also established. Any pathological bursal tiss,"[91, 813, 599, 1071]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,7,text,,"[620, 192, 1130, 400]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,8,text,"The tendon-to-bone fixation technique varied according to the presence of delamination. With a delaminated lesion (Fig. 1), the medial row of metal suture anchors loaded with number-2 permanent suture","[620, 397, 1131, 1072]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,9,image,,"[224, 1109, 996, 1408]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,10,figure_title,Fig. 1,"[223, 1410, 262, 1429]",figure_caption,0.92,"[""figure_title label: Fig. 1""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
3,11,figure_title,Schematic drawings showing double-row fixation in shoulders with delamination. The superficial bursal side layer and the deep articular side layer were repaired separately with use of simple sutures.,"[221, 1429, 980, 1478]",figure_caption,0.85,"[""figure_title label: Schematic drawings showing double-row fixation in shoulders ""]",figure_caption,0.85,body_zone,legend_like,none,True,True
4,0,number,956,"[588, 64, 635, 90]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,header,"THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG
VOLUME 89-A · NUMBER 5 · MAY 2007","[199, 108, 597, 149]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,2,header,REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR,"[625, 108, 1038, 148]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
4,3,image,,"[115, 196, 597, 603]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,4,figure_title,Fig. 2-A,"[113, 608, 164, 624]",figure_caption,0.92,"[""figure_title label: Fig. 2-A""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
4,5,image,,"[629, 197, 1107, 603]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,6,figure_title,Fig. 2-B,"[629, 608, 680, 624]",figure_caption,0.92,"[""figure_title label: Fig. 2-B""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
4,7,figure_title,Figs. 2-A through 2-D Arthroscopic images of a right shoulder with delamination of the rotator cuff. Fig. 2-A Intrar-articular view from the posterior portal shows a rotator cuff tear with delaminatio,"[110, 629, 1111, 698]",figure_caption_candidate,0.85,"[""figure_title label: Figs. 2-A through 2-D Arthroscopic images of a right shoulde""]",figure_caption,0.85,body_zone,legend_like,none,False,False
4,8,image,,"[108, 737, 586, 1147]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,9,image,,"[619, 738, 1113, 1147]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,10,vision_footnote,Fig. 2-C,"[108, 1150, 161, 1166]",figure_caption,0.9,"[""figure prefix matched: Fig. 2-C""]",figure_caption,0.9,display_zone,legend_like,figure_number,True,True
4,11,figure_title,Fig. 2-D,"[620, 1149, 673, 1166]",figure_caption,0.92,"[""figure_title label: Fig. 2-D""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
4,12,figure_title,Fig. 2-C The subacromial bursal view shows completed fixation of the lateral row. Fig. 2-D An intra-articular view of the same shoulder shows complete reduction of the articular layer of the delaminat,"[105, 1170, 1101, 1215]",figure_caption,0.92,"[""figure_title label: Fig. 2-C The subacromial bursal view shows completed fixatio""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
4,13,text,"the lateral margin of the cuff. Knot-tying for the lateral row was performed first, and then the repair was completed with knot-tying for the medial row. Longitudinal tears or u-shaped tears were repa","[91, 1249, 598, 1483]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,14,paragraph_title,Postoperative Protocol,"[625, 1251, 812, 1272]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Postoperative Protocol""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
4,15,text,"The shoulders were immobilized for three to four weeks with use of a sling immobilizer with an abduction pillow (DeRoyal, Powell, Tennessee). Isometric rotator-cuff exercises and relaxation of the mus","[620, 1272, 1130, 1483]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,0,number,957,"[589, 66, 633, 90]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,1,header,"THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG
VOLUME 89-A · NUMBER 5 · MAY 2007","[200, 109, 596, 148]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,2,header,REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR,"[624, 108, 1038, 148]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
5,3,image,,"[230, 198, 998, 813]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,4,figure_title,Fig. 3,"[224, 823, 261, 841]",figure_caption,0.92,"[""figure_title label: Fig. 3""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,5,figure_title,"Schematic drawings showing double-row fixation of a torn rotator cuff without delamination. Sutures for the medial row are placed first in a mattress fashion. Then, simple sutures for the lateral row ","[221, 843, 995, 938]",figure_caption_candidate,0.85,"[""figure_title label: Schematic drawings showing double-row fixation of a torn rot""]",figure_caption,0.85,body_zone,legend_like,none,False,False
5,6,text,"consistently performed with the assistance of a physical therapist. Three months after the operation, patients were permitted to practice light sports activities. Full return to sports and heavy labor","[92, 997, 597, 1114]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,paragraph_title,Statistical Analysis,"[94, 1136, 253, 1157]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,8,text,"The Student t test was used to compare the difference between the preoperative and postoperative scores of the JOA scoring system, the UCLA rating scale, and the shoulder index of the ASES. One-factor","[92, 1159, 597, 1298]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,paragraph_title,Results Functional Outcome,"[94, 1320, 266, 1364]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Results Functional Outcome""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
5,10,footer,,"[94, 1343, 266, 1364]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,empty,False,False
5,11,text,All three rating systems reflected a significant improvement in the status of the shoulders when the preoperative scores were compared with the scores at the time of the final follow-up (p < 0.01). Th,"[93, 1365, 597, 1483]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,12,image,,"[627, 1002, 1118, 1412]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,13,figure_title,Fig. 4,"[625, 1413, 664, 1430]",figure_caption,0.92,"[""figure_title label: Fig. 4""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,14,figure_title,Arthroscopic image of the right shoulder from the posterior portal showing a rotator cuff tear without delamination.,"[623, 1433, 1089, 1479]",figure_caption_candidate,0.85,"[""figure_title label: Arthroscopic image of the right shoulder from the posterior ""]",figure_caption,0.85,body_zone,legend_like,none,False,False
6,0,number,958,"[589, 63, 634, 90]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,header,"THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG
VOLUME 89-A · NUMBER 5 · MAY 2007","[199, 107, 597, 149]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
6,2,text,REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR,"[623, 107, 1039, 149]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,3,table,"<table><tr><td rowspan=""2"">Shoulder Scoring System*</td><td colspan=""2"">Score $ \dagger $</td><td rowspan=""2"">P Value</td></tr><tr><td>Preop.</td><td>Postop.</td></tr><tr><td colspan=""4"">JOA score</td","[99, 196, 1123, 683]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
6,4,vision_footnote,"*JOA = Japanese Orthopaedic Society $ ^{27} $, UCLA = University of California at Los Angeles $ ^{28} $, and ASES = American Shoulder and E Surgeons $ ^{29} $. †The values are given as the mean with t","[111, 681, 1113, 726]",footnote,0.7,"[""vision_footnote label: *JOA = Japanese Orthopaedic Society $ ^{27} $, UCLA = Univer""]",footnote,0.7,body_zone,body_like,none,True,True
6,5,text,"95.0 points (range, 74 to 100 points) with use of the JOA score, from 14.5 points (range, 5 to 24 points) to 32.9 points (range, 18 to 35 points) with use of the UCLA rating scale, and from 42.3 point","[92, 782, 599, 922]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,6,paragraph_title,Repair Integrity,"[94, 944, 231, 967]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Repair Integrity""]",subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
6,7,text,"With regard to repair integrity at a mean of fourteen months postoperatively, magnetic resonance imaging scans revealed thirty-seven shoulders (43%) with a type-I repair, twenty-one (24%) with a type-","[92, 966, 600, 1154]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,8,text,,"[620, 781, 1130, 900]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
6,9,paragraph_title,Repair Integrity Compared with Functional Outcomes,"[623, 920, 850, 966]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Repair Integrity Compared with Functional Outcomes""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
6,10,text,"The JOA score for type-V rotator cuffs demonstrated significantly lower results in terms of overall function and strength compared with other types of repaired rotator cuffs (p < 0.01). However, with ","[621, 967, 1129, 1154]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,11,figure_title,TABLE II Repair Integrity,"[123, 1204, 317, 1228]",table_caption,0.9,"[""table prefix matched: TABLE II Repair Integrity""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
6,12,table,<table><tr><td>Preoperative Tear Size</td><td>Type I</td><td>Type II</td><td>Type III</td><td>Type IV</td><td>Type V</td></tr><tr><td>Overall (n = 86)</td><td>37 (43)</td><td>21 (24)</td><td>13 (15)</,"[98, 1234, 1123, 1432]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
6,13,vision_footnote,The values are given as the number of patients with the percentage in parentheses.,"[117, 1438, 712, 1462]",footnote,0.7,"[""vision_footnote label: The values are given as the number of patients with the perc""]",footnote,0.7,body_zone,body_like,none,True,True
7,0,number,959,"[589, 66, 634, 90]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,1,text,"THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG
VOLUME 89-A · NUMBER 5 · MAY 2007
REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER
ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR","[199, 108, 597, 149]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,2,text,,"[624, 107, 1039, 149]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,3,table,"<table><tr><td colspan=""8"">TABLE III Repair Integrity Compared with Functional Outcomes</td></tr><tr><td rowspan=""3"">Classification of Repair Integrity</td><td rowspan=""3"">No. of Shoulders</td><td col","[99, 199, 1124, 468]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
7,4,vision_footnote,"*The values are given as the mean with the standard deviation in parentheses. JOA = Japanese Orthopaedic Society $ ^{27} $, UCLA = University of California at Los Angeles $ ^{28} $, and ASES = America","[108, 478, 1107, 543]",footnote,0.7,"[""vision_footnote label: *The values are given as the mean with the standard deviatio""]",footnote,0.7,body_zone,body_like,none,True,True
7,5,paragraph_title,Complications,"[94, 582, 219, 605]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Complications""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
7,6,text,"There were no intraoperative or perioperative complications. No patient had a neural injury, wound infection, or a suture anchor problem.","[92, 606, 597, 677]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,7,paragraph_title,Discussion,"[95, 699, 200, 720]",section_heading,0.9,"[""explicit scholarly heading: Discussion""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
7,8,text,"It is clear that the ideal rotator cuff repair should have high initial fixation strength, minimal gap formation, and mechanical stability that is sufficient until tendon-to-bone healing is establishe","[92, 720, 598, 1228]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,9,text,"The repair integrity in this study compared quite favorably with that reported for open or mini-open $ ^{13-21} $ and arthroscopic single-row repair $ ^{9-11} $, with a retear rate of 5% (three of fif","[91, 1228, 599, 1483]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,10,text,,"[622, 582, 1129, 768]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,11,text,"Consequently, to obtain an excellent functional outcome, surgeons have to ensure that the postoperative development of a large type-V rotator cuff defect is avoided. Patient selection is one of the mo","[621, 769, 1131, 1483]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,0,number,960,"[587, 63, 636, 89]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,header,"THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG
VOLUME 89-A · NUMBER 5 · MAY 2007","[200, 107, 597, 148]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
8,2,header,REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR,"[624, 107, 1038, 149]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,none,False,False
8,3,text,"insertion is reported to be under the most stress during shoulder motion $ ^{37,38} $, strong sutures are recommended for the medial-row repair to minimize postoperative structural failures.","[92, 192, 597, 261]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,4,text,"Higher costs and prolonged surgery time are among the possible concerns with arthroscopic double-row rotator cuff repair. We believe, however, that the benefit of arthroscopic repair for patients more","[92, 262, 598, 400]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,5,text,"In conclusion, arthroscopic double-row repair of a rotator cuff tear has demonstrated improved repair integrity compared with traditional open or mini-open techniques. However, the retear rate in shou","[92, 400, 598, 493]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,6,text,,"[623, 191, 1128, 287]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
8,7,footnote,"Hiroyuki Sugaya, MD","[625, 349, 783, 369]",footnote,0.7,"[""footnote label: Hiroyuki Sugaya, MD""]",footnote,0.7,body_zone,body_like,short_fragment,True,True
8,8,text,"Keisuke Matsuki, MD","[626, 388, 782, 409]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
8,9,text,"Joji Moriishi, MD","[626, 409, 756, 430]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
8,10,text,"Funabashi Orthopaedic Sports Medicine Center, 1-833 Hazama,","[626, 428, 1067, 450]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,11,text,"Funabashi Orthopaedic Sports Medicine Center, 1-855-111-
Funabashi, Chiba 2740822, Japan. E-mail address for H. Sugaya:
hsugaya@nifty.com","[624, 434, 1068, 491]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,12,paragraph_title,References,"[557, 515, 666, 537]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
8,13,reference_content,1. Tauro JC. Arthroscopic rotator cuff repair: analysis of technique and results at 2- and 3-year follow-up. Arthroscopy. 1998;14:45-51.,"[93, 550, 578, 586]",reference_item,0.85,"[""reference content label: 1. Tauro JC. Arthroscopic rotator cuff repair: analysis of t""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,14,reference_content,"2. Gartsman GM, Khan M, Hammerman SM. Arthroscopic repair of full-thickness tears of the rotator cuff. J Bone Joint Surg Am. 1998;80:832-40.","[94, 592, 592, 627]",reference_item,0.85,"[""reference content label: 2. Gartsman GM, Khan M, Hammerman SM. Arthroscopic repair of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,15,reference_content,"3. Burkhart SS, Tehrany AM. Arthroscopic subscapularis tendon repair: technique and preliminary results. Arthroscopy. 2002;18:454-63.","[94, 632, 592, 666]",reference_item,0.85,"[""reference content label: 3. Burkhart SS, Tehrany AM. Arthroscopic subscapularis tendo""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,16,reference_content,"4. Murray TF Jr, Lajtai G, Mileski RM, Snyder SJ. Arthroscopic repair of medium to large full-thickness rotator cuff tears: outcome at 2- to 6-year follow-up. J Shoulder Elbow Surg. 2002;11:19-24.","[94, 670, 580, 721]",reference_item,0.85,"[""reference content label: 4. Murray TF Jr, Lajtai G, Mileski RM, Snyder SJ. Arthroscop""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,17,reference_content,"5. Wilson F, Hinov V, Adams G. Arthroscopic repair of full-thickness tears of the rotator cuff: 2- to 14-year follow-up. Arthroscopy. 2002;18:136-44.","[94, 728, 580, 762]",reference_item,0.85,"[""reference content label: 5. Wilson F, Hinov V, Adams G. Arthroscopic repair of full-t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,18,reference_content,6. Bennett WF. Arthroscopic repair of massive rotator cuff tears: a prospective cohort with 2- to 4-year follow-up. Arthroscopy. 2003;19:380-90.,"[94, 767, 579, 803]",reference_item,0.85,"[""reference content label: 6. Bennett WF. Arthroscopic repair of massive rotator cuff t""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,19,reference_content,7. Bennett WF. Arthroscopic repair of full-thickness supraspinatus tears (small-to-medium): a prospective study with 2- to 4-year follow-up. Arthroscopy. 2003;19:249-56.,"[95, 808, 584, 857]",reference_item,0.85,"[""reference content label: 7. Bennett WF. Arthroscopic repair of full-thickness suprasp""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,20,reference_content,"8. Jones CK, Savoie FH 3rd. Arthroscopic repair of large and massive rotator cuff tears. Arthroscopy. 2003;19:564-71.","[95, 863, 568, 898]",reference_item,0.85,"[""reference content label: 8. Jones CK, Savoie FH 3rd. Arthroscopic repair of large and""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,21,reference_content,"9. Sugaya H, Kon Y, Tsuchiya A, Matsuki K, Fujita K. [Arthroscopic rotator cuff repair using a single-layer fixation method: its clinical outcome and postoperative MRI findings]. The Shoulder Joint (K","[94, 904, 589, 953]",reference_item,0.85,"[""reference content label: 9. Sugaya H, Kon Y, Tsuchiya A, Matsuki K, Fujita K. [Arthro""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,22,reference_content,"10. Galatz LM, Ball CM, Teefey SA, Middleton WD, Yamaguchi K. The outcome and repair integrity of completely arthroscopically repaired large and massive rotator cuff tears. J Bone Joint Surg Am. 2004;","[95, 959, 580, 1010]",reference_item,0.85,"[""reference content label: 10. Galatz LM, Ball CM, Teefey SA, Middleton WD, Yamaguchi K""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,23,reference_content,"11. Boileau P, Brassart N, Watkinson DJ, Carles M, Hatzidakis AM, Krishnan SG. Arthroscopic repair of full-thickness tears of the supraspinatus: does the tendon really heal? J Bone Joint Surg Am. 2005","[95, 1017, 589, 1066]",reference_item,0.85,"[""reference content label: 11. Boileau P, Brassart N, Watkinson DJ, Carles M, Hatzidaki""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,24,reference_content,"12. Sugaya H, Maeda K, Matsuki K, Moriishi J. Functional and structural outcome after arthroscopic full-thickness rotator cuff repair: single-row versus dual-row fixation. Arthroscopy. 2005;21:1307-16","[95, 1072, 592, 1122]",reference_item,0.85,"[""reference content label: 12. Sugaya H, Maeda K, Matsuki K, Moriishi J. Functional and""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,25,reference_content,"13. Calvert PT, Packer NP, Stoker DJ, Bayley JI, Kessel L. Arthrography of the shoulder after operative repair of the torn rotator cuff. J Bone Joint Surg Br. 1986;68:147-50.","[95, 1129, 562, 1178]",reference_item,0.85,"[""reference content label: 13. Calvert PT, Packer NP, Stoker DJ, Bayley JI, Kessel L. A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,26,reference_content,"14. Harryman DT 2nd, Mack LA, Wang KY, Jackins SE, Richardson ML, Matsen FA 3rd. Repairs of the rotator cuff. Correlation of functional results with integrity of the cuff. J Bone Joint Surg Am. 1991;7","[95, 1184, 585, 1234]",reference_item,0.85,"[""reference content label: 14. Harryman DT 2nd, Mack LA, Wang KY, Jackins SE, Richardso""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,27,reference_content,"15. Gazielly DF, Gleyze P, Montagnon C. Functional and anatomical results after rotator cuff repair. Clin Orthop Relat Res. 1994;304:43-53.","[95, 1240, 581, 1273]",reference_item,0.85,"[""reference content label: 15. Gazielly DF, Gleyze P, Montagnon C. Functional and anato""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,28,reference_content,"16. Liu SH, Baker CL. Arthroscopically assisted rotator cuff repair: correlation of functional results with integrity of the cuff. Arthroscopy. 1994;10:54-60.","[95, 1280, 577, 1314]",reference_item,0.85,"[""reference content label: 16. Liu SH, Baker CL. Arthroscopically assisted rotator cuff""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,29,reference_content,"17. Thomazeau H, Boukobza E, Morcet N, Chaperon J, Langlais F. Prediction of rotator cuff repair results by magnetic resonance imaging. Clin Orthop Relat Res. 1997;344:275-83.","[95, 1320, 590, 1370]",reference_item,0.85,"[""reference content label: 17. Thomazeau H, Boukobza E, Morcet N, Chaperon J, Langlais ""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,30,reference_content,"18. Knudsen HB, Gelineck J, Sojbjerg JO, Olsen BS, Johannsen HV, Sneppen O. Functional and magnetic resonance imaging evaluation after single-tendon rotator cuff reconstruction. J Shoulder Elbow Surg.","[95, 1376, 587, 1426]",reference_item,0.85,"[""reference content label: 18. Knudsen HB, Gelineck J, Sojbjerg JO, Olsen BS, Johannsen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,31,reference_content,"19. Worland RL, Arredondo J, Angles F, Lopez-Jimenez F. Repair of massive rotator cuff tears in patients older than 70 years. J Shoulder Elbow Surg. 1999;8:26-30.","[95, 1432, 589, 1465]",reference_item,0.85,"[""reference content label: 19. Worland RL, Arredondo J, Angles F, Lopez-Jimenez F. Repa""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,32,reference_content,"20. Jost B, Pfirrmann CW, Gerber C. Clinical outcome after structural failure of rotator cuff repairs. J Bone Joint Surg Am. 2000;82:304-14.","[625, 550, 1108, 586]",reference_item,0.85,"[""reference content label: 20. Jost B, Pfirrmann CW, Gerber C. Clinical outcome after s""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,33,reference_content,"21. Gerber C, Fuchs B, Hodler J. The results of repair of massive tears of the rotator cuff. J Bone Joint Surg Am. 2000;82:505-15.","[626, 592, 1101, 626]",reference_item,0.85,"[""reference content label: 21. Gerber C, Fuchs B, Hodler J. The results of repair of ma""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,34,reference_content,"22. Fealy S, Kingham TP, Altchek DW. Mini-open rotator cuff repair using a two-row fixation technique: outcomes analysis in patients with small, moderate, and large rotator cuff tears. Arthroscopy. 20","[627, 633, 1124, 681]",reference_item,0.85,"[""reference content label: 22. Fealy S, Kingham TP, Altchek DW. Mini-open rotator cuff ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,35,reference_content,"23. Waltrip RL, Zheng N, Dugas JR, Andrews JR. Rotator cuff repair. A biomechanical comparison of three techniques. Am J Sports Med. 2003;31:493-7.","[626, 687, 1125, 722]",reference_item,0.85,"[""reference content label: 23. Waltrip RL, Zheng N, Dugas JR, Andrews JR. Rotator cuff ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,36,reference_content,"24. Lo IK, Burkhart SS. Double-row arthroscopic rotator cuff repair: re-establishing the footprint of the rotator cuff. Arthroscopy. 2003;19:1035-42.","[626, 728, 1119, 762]",reference_item,0.85,"[""reference content label: 24. Lo IK, Burkhart SS. Double-row arthroscopic rotator cuff""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,37,reference_content,"25. Meier SW, Meier JD. Rotator cuff repair: the effect of double-row fixation on three-dimensional repair site. J Shoulder Elbow Surg. 2006;15:691-6.","[626, 767, 1114, 802]",reference_item,0.85,"[""reference content label: 25. Meier SW, Meier JD. Rotator cuff repair: the effect of d""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,38,reference_content,"26. DeOrio JK, Cofield RH. Results of a second attempt at surgical repair of a failed initial rotator-cuff repair. J Bone Joint Surg Am. 1984;66:563-7.","[626, 808, 1105, 842]",reference_item,0.85,"[""reference content label: 26. DeOrio JK, Cofield RH. Results of a second attempt at su""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,39,reference_content,"27. Ide J, Takagi K. Early and long-term results of arthroscopic treatment for shoulder stiffness. J Shoulder Elbow Surg. 2004;13:174-9.","[626, 848, 1097, 881]",reference_item,0.85,"[""reference content label: 27. Ide J, Takagi K. Early and long-term results of arthrosc""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
8,40,reference_content,"28. Ellman H, Hanker G, Bayer M. Repair of the rotator cuff. End-result study of factors influencing reconstruction. J Bone Joint Surg Am. 1986;68:1136-44.","[626, 887, 1114, 922]",reference_item,0.85,"[""reference content label: 28. Ellman H, Hanker G, Bayer M. Repair of the rotator cuff.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,41,reference_content,"29. Richards RR, An K-N, Bigliani LU, Friedman RJ, Gartsman GM, Gristina AG, Iannotti JP, Mow VC, Sidles JA, Zuckerman JD. A standardized method for the assessment of shoulder function. J Shoulder Elb","[626, 928, 1109, 976]",reference_item,0.85,"[""reference content label: 29. Richards RR, An K-N, Bigliani LU, Friedman RJ, Gartsman ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,42,reference_content,"30. Minagawa H, Itoi E, Konno N, Kido T, Sano A, Urayama M, Sato K. Humeral attachment of the supraspinatus and infraspinatus tendons: an anatomic study. Arthroscopy. 1998;14:302-6.","[627, 984, 1117, 1034]",reference_item,0.85,"[""reference content label: 30. Minagawa H, Itoi E, Konno N, Kido T, Sano A, Urayama M, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,43,reference_content,"31. Sugaya H, Kon Y, Tsuchiya A. Arthroscopic Bankart repair in the beachchair position: a cannulales method using an intra-articular suture relay technique. Arthroscopy. 2004;20 Suppl 2:116-20.","[626, 1041, 1114, 1090]",reference_item,0.85,"[""reference content label: 31. Sugaya H, Kon Y, Tsuchiya A. Arthroscopic Bankart repair""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,44,reference_content,"32. Gerber C, Schneeberger AG, Beck M, Schlegel U. Mechanical strength of repairs of the rotator cuff. J Bone Joint Surg Br. 1994;76:371-80.","[626, 1096, 1101, 1130]",reference_item,0.85,"[""reference content label: 32. Gerber C, Schneeberger AG, Beck M, Schlegel U. Mechanica""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,45,reference_content,"33. Tuoheti Y, Itoi E, Yamamoto N, Seki N, Abe H, Minagawa H, Okada K, Shimada Y. Contact area, contact pressure, and pressure patterns of the tendon-bone interface after rotator cuff repair. Am J Spo","[626, 1136, 1107, 1186]",reference_item,0.85,"[""reference content label: 33. Tuoheti Y, Itoi E, Yamamoto N, Seki N, Abe H, Minagawa H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,46,reference_content,"34. Meier SW, Meier JD. The effect of double-row fixation on initial repair strength in rotator cuff repair: a biomechanical study. Arthroscopy. 2006;22:1168-73.","[626, 1192, 1122, 1226]",reference_item,0.85,"[""reference content label: 34. Meier SW, Meier JD. The effect of double-row fixation on""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,47,reference_content,"35. Goutallier D, Postel JM, Bernageau J, Lavau L, Voisin MC. Fatty muscle degeneration in cuff ruptures. Pre- and postoperative evaluation by CT scan. Clin Orthop Relat Res. 1994;304:78-83.","[626, 1233, 1107, 1282]",reference_item,0.85,"[""reference content label: 35. Goutallier D, Postel JM, Bernageau J, Lavau L, Voisin MC""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,48,reference_content,"36. Matsuki K, Sugaya H, Maeda K, Moriishi J. Delamination observed in full-thickness rotator cuff tears. Presented at the annual meeting of the Arthroscopy Association of North America; 2005 May 12-1","[626, 1288, 1120, 1353]",reference_item,0.85,"[""reference content label: 36. Matsuki K, Sugaya H, Maeda K, Moriishi J. Delamination o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,49,reference_content,"37. Wakabayashi I, Itoi E, Sano H, Shibuya Y, Sashi R, Minagawa H, Kobayashi M. Mechanical environment of the supraspinatus tendon: a two-dimensional finite element model analysis. J Shoulder Elbow Su","[626, 1360, 1123, 1411]",reference_item,0.85,"[""reference content label: 37. Wakabayashi I, Itoi E, Sano H, Shibuya Y, Sashi R, Minag""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
8,50,reference_content,"38. Sano H, Wakabayashi I, Itoi E. Stress distribution in the supraspinatus tendon with partial-thickness tears: an analysis using two-dimensional finite element model. J Shoulder Elbow Surg. 2006;15:","[626, 1417, 1125, 1465]",reference_item,0.85,"[""reference content label: 38. Sano H, Wakabayashi I, Itoi E. Stress distribution in th""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 number 953 [590, 66, 633, 91] noise 0.9 ["page number label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
3 1 1 text COPYRIGHT © 2007 BY THE JOURNAL OF BONE AND JOINT SURGERY, INCORPORATED [321, 107, 901, 129] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: COPYRIGHT \u00a9 2007 BY THE JOURNAL OF BONE AND JOINT SURGERY, I"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
4 1 2 doc_title Repair Integrity and Functional Outcome After Arthroscopic Double-Row Rotator Cuff Repair [282, 213, 939, 367] paper_title 0.8 ["page-1 zone title_zone: Repair Integrity and Functional\nOutcome After Arthroscopic\nD"] paper_title 0.8 frontmatter_main_zone support_like none True True
5 1 3 text A Prospective Outcome Study [430, 388, 791, 420] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 frontmatter_main_zone support_like none True True
6 1 4 text By Hiroyuki Sugaya, MD, Kazuhiko Maeda, MD, Keisuke Matsuki, MD, and Joji Moriishi, MD [414, 448, 809, 498] authors 0.8 ["page-1 zone author_zone: By Hiroyuki Sugaya, MD, Kazuhiko Maeda, MD, Keisuke Matsuki,"] authors 0.8 frontmatter_main_zone support_like none True True
7 1 5 text Investigation performed at Funabashi Orthopaedic Sports Medicine Center, Funabashi, Chiba, and the Department of Orthopaedic Surgery, Kawatetsu Chiba Hospital, Chiba, Japan [281, 520, 941, 566] affiliation 0.8 ["page-1 zone affiliation_zone: Investigation performed at Funabashi Orthopaedic Sports Medi"] affiliation 0.8 frontmatter_main_zone support_like none True True
8 1 6 abstract Background: The retear rate following rotator cuff repair is variable. Recent biomechanical studies have demonstrated that double-row tendon-to-bone fixation excels in initial fixation strength and fo [123, 628, 1101, 723] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
9 1 7 abstract Methods: A consecutive series of 106 patients with full-thickness rotator cuff tears underwent arthroscopic double-row rotator cuff repair with use of suture anchors and were followed prospectively. T [118, 733, 1101, 944] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
10 1 8 abstract Results: The average clinical outcome scores all improved significantly at the time of the final follow-up (p < 0.01). At a mean of fourteen months postoperatively, magnetic resonance imaging revealed [118, 953, 1101, 1094] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
11 1 9 abstract Conclusions: Arthroscopic double-row repair can result in improved repair integrity compared with open or mini-open repair methods. However, the retear rate for shoulders with large and massive tears [122, 1104, 1100, 1196] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
12 1 10 text Level of Evidence: Therapeutic $ \underline{\text{Level IV}} $. See Instructions to Authors for a complete description of levels of evidence. [122, 1209, 1098, 1232] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
13 1 11 text Disclosure: The authors did not receive any outside funding or grants in support of their research for or preparation of this work. Neither they nor a member of their immediate families received payme [93, 1310, 1130, 1406] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
14 1 12 footer J Bone Joint Surg Am. 2007;89:953-60 • doi:10.2106/JBJS.F.00512 [94, 1459, 520, 1479] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
15 2 0 number 954 [588, 66, 635, 90] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
16 2 1 header THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG VOLUME 89-A · NUMBER 5 · MAY 2007 [198, 107, 598, 149] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
17 2 2 header REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR [197, 106, 1039, 149] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
18 2 3 text Although recent studies have revealed that functional outcomes after arthroscopic rotator cuff repair are comparable with those after open or mini-open repair $ ^{1-8} $, only a few studies have descr [91, 192, 599, 933] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
19 2 4 paragraph_title Materials and Methods Patient Selection [93, 951, 309, 996] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Materials and Methods Patient Selection"] subsection_heading 0.6 body_zone heading_like none True True
20 2 5 text From April 2001 to May 2003, 157 consecutive patients who failed conservative treatment underwent arthroscopic rotator cuff repair by a single surgeon (H.S.). Seven patients who had been scheduled for [91, 998, 599, 1485] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
21 2 6 text [621, 193, 1130, 610] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
22 2 7 paragraph_title Patient Assessment [624, 630, 787, 652] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Patient Assessment"] subsection_heading 0.6 body_zone heading_like short_fragment True True
23 2 8 text The patients underwent a standard history and physical examination as well as imaging studies, including bilateral anteroposterior radiographs of the shoulder in both internal and external rotation an [621, 650, 1130, 1277] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
24 2 9 paragraph_title Magnetic Resonance Imaging [624, 1297, 869, 1320] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Magnetic Resonance Imaging"] subsection_heading 0.6 body_zone heading_like none True True
25 2 10 text Magnetic resonance imaging was performed with a 1.5-T closed-type scanner (Gyroscan PowerTrak 3000; Philips, Best, The Netherlands) or a 0.3-T open-type scanner (ARIS II; Hitachi, Tokyo, Japan). Obliq [621, 1319, 1130, 1484] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
26 3 0 number 955 [590, 66, 634, 90] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
27 3 1 header THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG VOLUME 89-A · NUMBER 5 · MAY 2007 [198, 107, 597, 149] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
28 3 2 text REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR [624, 107, 1039, 149] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
29 3 3 text the Hitachi scanner) were acquired for structural and qualitative assessment of the rotator cuff, and repair integrity was determined. The slice thickness for the Philips and Hitachi scanners was 4 an [91, 192, 598, 610] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 3 4 paragraph_title Surgical Procedure [93, 630, 253, 652] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Surgical Procedure"] subsection_heading 0.6 body_zone heading_like short_fragment True True
31 3 5 text All procedures were performed with the patient under general anesthesia in the beach-chair position. A posterior portal was established for the initial assessment of the glenohumeral joint. An anterio [91, 652, 598, 813] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
32 3 6 text The arthroscope was then removed from the glenohumeral joint and redirected into the subacromial space. A lateral portal and a posterolateral portal were also established. Any pathological bursal tiss [91, 813, 599, 1071] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
33 3 7 text [620, 192, 1130, 400] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
34 3 8 text The tendon-to-bone fixation technique varied according to the presence of delamination. With a delaminated lesion (Fig. 1), the medial row of metal suture anchors loaded with number-2 permanent suture [620, 397, 1131, 1072] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
35 3 9 image [224, 1109, 996, 1408] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
36 3 10 figure_title Fig. 1 [223, 1410, 262, 1429] figure_caption 0.92 ["figure_title label: Fig. 1"] figure_caption 0.92 display_zone legend_like figure_number True True
37 3 11 figure_title Schematic drawings showing double-row fixation in shoulders with delamination. The superficial bursal side layer and the deep articular side layer were repaired separately with use of simple sutures. [221, 1429, 980, 1478] figure_caption 0.85 ["figure_title label: Schematic drawings showing double-row fixation in shoulders "] figure_caption 0.85 body_zone legend_like none True True
38 4 0 number 956 [588, 64, 635, 90] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
39 4 1 header THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG VOLUME 89-A · NUMBER 5 · MAY 2007 [199, 108, 597, 149] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
40 4 2 header REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR [625, 108, 1038, 148] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
41 4 3 image [115, 196, 597, 603] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
42 4 4 figure_title Fig. 2-A [113, 608, 164, 624] figure_caption 0.92 ["figure_title label: Fig. 2-A"] figure_caption 0.92 display_zone legend_like figure_number True True
43 4 5 image [629, 197, 1107, 603] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
44 4 6 figure_title Fig. 2-B [629, 608, 680, 624] figure_caption 0.92 ["figure_title label: Fig. 2-B"] figure_caption 0.92 display_zone legend_like figure_number True True
45 4 7 figure_title Figs. 2-A through 2-D Arthroscopic images of a right shoulder with delamination of the rotator cuff. Fig. 2-A Intrar-articular view from the posterior portal shows a rotator cuff tear with delaminatio [110, 629, 1111, 698] figure_caption_candidate 0.85 ["figure_title label: Figs. 2-A through 2-D Arthroscopic images of a right shoulde"] figure_caption 0.85 body_zone legend_like none False False
46 4 8 image [108, 737, 586, 1147] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
47 4 9 image [619, 738, 1113, 1147] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
48 4 10 vision_footnote Fig. 2-C [108, 1150, 161, 1166] figure_caption 0.9 ["figure prefix matched: Fig. 2-C"] figure_caption 0.9 display_zone legend_like figure_number True True
49 4 11 figure_title Fig. 2-D [620, 1149, 673, 1166] figure_caption 0.92 ["figure_title label: Fig. 2-D"] figure_caption 0.92 display_zone legend_like figure_number True True
50 4 12 figure_title Fig. 2-C The subacromial bursal view shows completed fixation of the lateral row. Fig. 2-D An intra-articular view of the same shoulder shows complete reduction of the articular layer of the delaminat [105, 1170, 1101, 1215] figure_caption 0.92 ["figure_title label: Fig. 2-C The subacromial bursal view shows completed fixatio"] figure_caption 0.92 display_zone legend_like figure_number True True
51 4 13 text the lateral margin of the cuff. Knot-tying for the lateral row was performed first, and then the repair was completed with knot-tying for the medial row. Longitudinal tears or u-shaped tears were repa [91, 1249, 598, 1483] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
52 4 14 paragraph_title Postoperative Protocol [625, 1251, 812, 1272] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Postoperative Protocol"] subsection_heading 0.6 body_zone heading_like none True True
53 4 15 text The shoulders were immobilized for three to four weeks with use of a sling immobilizer with an abduction pillow (DeRoyal, Powell, Tennessee). Isometric rotator-cuff exercises and relaxation of the mus [620, 1272, 1130, 1483] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
54 5 0 number 957 [589, 66, 633, 90] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
55 5 1 header THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG VOLUME 89-A · NUMBER 5 · MAY 2007 [200, 109, 596, 148] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
56 5 2 header REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR [624, 108, 1038, 148] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
57 5 3 image [230, 198, 998, 813] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
58 5 4 figure_title Fig. 3 [224, 823, 261, 841] figure_caption 0.92 ["figure_title label: Fig. 3"] figure_caption 0.92 display_zone legend_like figure_number True True
59 5 5 figure_title Schematic drawings showing double-row fixation of a torn rotator cuff without delamination. Sutures for the medial row are placed first in a mattress fashion. Then, simple sutures for the lateral row [221, 843, 995, 938] figure_caption_candidate 0.85 ["figure_title label: Schematic drawings showing double-row fixation of a torn rot"] figure_caption 0.85 body_zone legend_like none False False
60 5 6 text consistently performed with the assistance of a physical therapist. Three months after the operation, patients were permitted to practice light sports activities. Full return to sports and heavy labor [92, 997, 597, 1114] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
61 5 7 paragraph_title Statistical Analysis [94, 1136, 253, 1157] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Statistical Analysis"] subsection_heading 0.6 body_zone heading_like none True True
62 5 8 text The Student t test was used to compare the difference between the preoperative and postoperative scores of the JOA scoring system, the UCLA rating scale, and the shoulder index of the ASES. One-factor [92, 1159, 597, 1298] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
63 5 9 paragraph_title Results Functional Outcome [94, 1320, 266, 1364] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Results Functional Outcome"] subsection_heading 0.6 body_zone heading_like none True True
64 5 10 footer [94, 1343, 266, 1364] noise 0.9 ["footer label"] noise 0.9 body_zone body_like empty False False
65 5 11 text All three rating systems reflected a significant improvement in the status of the shoulders when the preoperative scores were compared with the scores at the time of the final follow-up (p < 0.01). Th [93, 1365, 597, 1483] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
66 5 12 image [627, 1002, 1118, 1412] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
67 5 13 figure_title Fig. 4 [625, 1413, 664, 1430] figure_caption 0.92 ["figure_title label: Fig. 4"] figure_caption 0.92 display_zone legend_like figure_number True True
68 5 14 figure_title Arthroscopic image of the right shoulder from the posterior portal showing a rotator cuff tear without delamination. [623, 1433, 1089, 1479] figure_caption_candidate 0.85 ["figure_title label: Arthroscopic image of the right shoulder from the posterior "] figure_caption 0.85 body_zone legend_like none False False
69 6 0 number 958 [589, 63, 634, 90] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
70 6 1 header THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG VOLUME 89-A · NUMBER 5 · MAY 2007 [199, 107, 597, 149] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
71 6 2 text REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR [623, 107, 1039, 149] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
72 6 3 table <table><tr><td rowspan="2">Shoulder Scoring System*</td><td colspan="2">Score $ \dagger $</td><td rowspan="2">P Value</td></tr><tr><td>Preop.</td><td>Postop.</td></tr><tr><td colspan="4">JOA score</td [99, 196, 1123, 683] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
73 6 4 vision_footnote *JOA = Japanese Orthopaedic Society $ ^{27} $, UCLA = University of California at Los Angeles $ ^{28} $, and ASES = American Shoulder and E Surgeons $ ^{29} $. †The values are given as the mean with t [111, 681, 1113, 726] footnote 0.7 ["vision_footnote label: *JOA = Japanese Orthopaedic Society $ ^{27} $, UCLA = Univer"] footnote 0.7 body_zone body_like none True True
74 6 5 text 95.0 points (range, 74 to 100 points) with use of the JOA score, from 14.5 points (range, 5 to 24 points) to 32.9 points (range, 18 to 35 points) with use of the UCLA rating scale, and from 42.3 point [92, 782, 599, 922] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 6 6 paragraph_title Repair Integrity [94, 944, 231, 967] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Repair Integrity"] subsection_heading 0.6 body_zone heading_like short_fragment True True
76 6 7 text With regard to repair integrity at a mean of fourteen months postoperatively, magnetic resonance imaging scans revealed thirty-seven shoulders (43%) with a type-I repair, twenty-one (24%) with a type- [92, 966, 600, 1154] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
77 6 8 text [620, 781, 1130, 900] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
78 6 9 paragraph_title Repair Integrity Compared with Functional Outcomes [623, 920, 850, 966] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Repair Integrity Compared with Functional Outcomes"] subsection_heading 0.6 body_zone heading_like none True True
79 6 10 text The JOA score for type-V rotator cuffs demonstrated significantly lower results in terms of overall function and strength compared with other types of repaired rotator cuffs (p < 0.01). However, with [621, 967, 1129, 1154] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
80 6 11 figure_title TABLE II Repair Integrity [123, 1204, 317, 1228] table_caption 0.9 ["table prefix matched: TABLE II Repair Integrity"] table_caption 0.9 display_zone table_caption_like table_number True True
81 6 12 table <table><tr><td>Preoperative Tear Size</td><td>Type I</td><td>Type II</td><td>Type III</td><td>Type IV</td><td>Type V</td></tr><tr><td>Overall (n = 86)</td><td>37 (43)</td><td>21 (24)</td><td>13 (15)</ [98, 1234, 1123, 1432] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
82 6 13 vision_footnote The values are given as the number of patients with the percentage in parentheses. [117, 1438, 712, 1462] footnote 0.7 ["vision_footnote label: The values are given as the number of patients with the perc"] footnote 0.7 body_zone body_like none True True
83 7 0 number 959 [589, 66, 634, 90] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
84 7 1 text THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG VOLUME 89-A · NUMBER 5 · MAY 2007 REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR [199, 108, 597, 149] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
85 7 2 text [624, 107, 1039, 149] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
86 7 3 table <table><tr><td colspan="8">TABLE III Repair Integrity Compared with Functional Outcomes</td></tr><tr><td rowspan="3">Classification of Repair Integrity</td><td rowspan="3">No. of Shoulders</td><td col [99, 199, 1124, 468] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
87 7 4 vision_footnote *The values are given as the mean with the standard deviation in parentheses. JOA = Japanese Orthopaedic Society $ ^{27} $, UCLA = University of California at Los Angeles $ ^{28} $, and ASES = America [108, 478, 1107, 543] footnote 0.7 ["vision_footnote label: *The values are given as the mean with the standard deviatio"] footnote 0.7 body_zone body_like none True True
88 7 5 paragraph_title Complications [94, 582, 219, 605] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Complications"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
89 7 6 text There were no intraoperative or perioperative complications. No patient had a neural injury, wound infection, or a suture anchor problem. [92, 606, 597, 677] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
90 7 7 paragraph_title Discussion [95, 699, 200, 720] section_heading 0.9 ["explicit scholarly heading: Discussion"] section_heading 0.9 body_zone heading_like canonical_section_name True True
91 7 8 text It is clear that the ideal rotator cuff repair should have high initial fixation strength, minimal gap formation, and mechanical stability that is sufficient until tendon-to-bone healing is establishe [92, 720, 598, 1228] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
92 7 9 text The repair integrity in this study compared quite favorably with that reported for open or mini-open $ ^{13-21} $ and arthroscopic single-row repair $ ^{9-11} $, with a retear rate of 5% (three of fif [91, 1228, 599, 1483] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
93 7 10 text [622, 582, 1129, 768] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
94 7 11 text Consequently, to obtain an excellent functional outcome, surgeons have to ensure that the postoperative development of a large type-V rotator cuff defect is avoided. Patient selection is one of the mo [621, 769, 1131, 1483] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
95 8 0 number 960 [587, 63, 636, 89] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
96 8 1 header THE JOURNAL OF BONE & JOINT SURGERY · JBJS.ORG VOLUME 89-A · NUMBER 5 · MAY 2007 [200, 107, 597, 148] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
97 8 2 header REPAIR INTEGRITY AND FUNCTIONAL OUTCOME AFTER ARTHROSCOPIC DOUBLE-ROW ROTATOR CUFF REPAIR [624, 107, 1038, 149] noise 0.9 ["header label"] noise 0.9 body_zone body_like none False False
98 8 3 text insertion is reported to be under the most stress during shoulder motion $ ^{37,38} $, strong sutures are recommended for the medial-row repair to minimize postoperative structural failures. [92, 192, 597, 261] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
99 8 4 text Higher costs and prolonged surgery time are among the possible concerns with arthroscopic double-row rotator cuff repair. We believe, however, that the benefit of arthroscopic repair for patients more [92, 262, 598, 400] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
100 8 5 text In conclusion, arthroscopic double-row repair of a rotator cuff tear has demonstrated improved repair integrity compared with traditional open or mini-open techniques. However, the retear rate in shou [92, 400, 598, 493] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
101 8 6 text [623, 191, 1128, 287] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
102 8 7 footnote Hiroyuki Sugaya, MD [625, 349, 783, 369] footnote 0.7 ["footnote label: Hiroyuki Sugaya, MD"] footnote 0.7 body_zone body_like short_fragment True True
103 8 8 text Keisuke Matsuki, MD [626, 388, 782, 409] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
104 8 9 text Joji Moriishi, MD [626, 409, 756, 430] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
105 8 10 text Funabashi Orthopaedic Sports Medicine Center, 1-833 Hazama, [626, 428, 1067, 450] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
106 8 11 text Funabashi Orthopaedic Sports Medicine Center, 1-855-111- Funabashi, Chiba 2740822, Japan. E-mail address for H. Sugaya: hsugaya@nifty.com [624, 434, 1068, 491] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
107 8 12 paragraph_title References [557, 515, 666, 537] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone heading_like short_fragment True True
108 8 13 reference_content 1. Tauro JC. Arthroscopic rotator cuff repair: analysis of technique and results at 2- and 3-year follow-up. Arthroscopy. 1998;14:45-51. [93, 550, 578, 586] reference_item 0.85 ["reference content label: 1. Tauro JC. Arthroscopic rotator cuff repair: analysis of t"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
109 8 14 reference_content 2. Gartsman GM, Khan M, Hammerman SM. Arthroscopic repair of full-thickness tears of the rotator cuff. J Bone Joint Surg Am. 1998;80:832-40. [94, 592, 592, 627] reference_item 0.85 ["reference content label: 2. Gartsman GM, Khan M, Hammerman SM. Arthroscopic repair of"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
110 8 15 reference_content 3. Burkhart SS, Tehrany AM. Arthroscopic subscapularis tendon repair: technique and preliminary results. Arthroscopy. 2002;18:454-63. [94, 632, 592, 666] reference_item 0.85 ["reference content label: 3. Burkhart SS, Tehrany AM. Arthroscopic subscapularis tendo"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
111 8 16 reference_content 4. Murray TF Jr, Lajtai G, Mileski RM, Snyder SJ. Arthroscopic repair of medium to large full-thickness rotator cuff tears: outcome at 2- to 6-year follow-up. J Shoulder Elbow Surg. 2002;11:19-24. [94, 670, 580, 721] reference_item 0.85 ["reference content label: 4. Murray TF Jr, Lajtai G, Mileski RM, Snyder SJ. Arthroscop"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
112 8 17 reference_content 5. Wilson F, Hinov V, Adams G. Arthroscopic repair of full-thickness tears of the rotator cuff: 2- to 14-year follow-up. Arthroscopy. 2002;18:136-44. [94, 728, 580, 762] reference_item 0.85 ["reference content label: 5. Wilson F, Hinov V, Adams G. Arthroscopic repair of full-t"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
113 8 18 reference_content 6. Bennett WF. Arthroscopic repair of massive rotator cuff tears: a prospective cohort with 2- to 4-year follow-up. Arthroscopy. 2003;19:380-90. [94, 767, 579, 803] reference_item 0.85 ["reference content label: 6. Bennett WF. Arthroscopic repair of massive rotator cuff t"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
114 8 19 reference_content 7. Bennett WF. Arthroscopic repair of full-thickness supraspinatus tears (small-to-medium): a prospective study with 2- to 4-year follow-up. Arthroscopy. 2003;19:249-56. [95, 808, 584, 857] reference_item 0.85 ["reference content label: 7. Bennett WF. Arthroscopic repair of full-thickness suprasp"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
115 8 20 reference_content 8. Jones CK, Savoie FH 3rd. Arthroscopic repair of large and massive rotator cuff tears. Arthroscopy. 2003;19:564-71. [95, 863, 568, 898] reference_item 0.85 ["reference content label: 8. Jones CK, Savoie FH 3rd. Arthroscopic repair of large and"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
116 8 21 reference_content 9. Sugaya H, Kon Y, Tsuchiya A, Matsuki K, Fujita K. [Arthroscopic rotator cuff repair using a single-layer fixation method: its clinical outcome and postoperative MRI findings]. The Shoulder Joint (K [94, 904, 589, 953] reference_item 0.85 ["reference content label: 9. Sugaya H, Kon Y, Tsuchiya A, Matsuki K, Fujita K. [Arthro"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
117 8 22 reference_content 10. Galatz LM, Ball CM, Teefey SA, Middleton WD, Yamaguchi K. The outcome and repair integrity of completely arthroscopically repaired large and massive rotator cuff tears. J Bone Joint Surg Am. 2004; [95, 959, 580, 1010] reference_item 0.85 ["reference content label: 10. Galatz LM, Ball CM, Teefey SA, Middleton WD, Yamaguchi K"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
118 8 23 reference_content 11. Boileau P, Brassart N, Watkinson DJ, Carles M, Hatzidakis AM, Krishnan SG. Arthroscopic repair of full-thickness tears of the supraspinatus: does the tendon really heal? J Bone Joint Surg Am. 2005 [95, 1017, 589, 1066] reference_item 0.85 ["reference content label: 11. Boileau P, Brassart N, Watkinson DJ, Carles M, Hatzidaki"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
119 8 24 reference_content 12. Sugaya H, Maeda K, Matsuki K, Moriishi J. Functional and structural outcome after arthroscopic full-thickness rotator cuff repair: single-row versus dual-row fixation. Arthroscopy. 2005;21:1307-16 [95, 1072, 592, 1122] reference_item 0.85 ["reference content label: 12. Sugaya H, Maeda K, Matsuki K, Moriishi J. Functional and"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
120 8 25 reference_content 13. Calvert PT, Packer NP, Stoker DJ, Bayley JI, Kessel L. Arthrography of the shoulder after operative repair of the torn rotator cuff. J Bone Joint Surg Br. 1986;68:147-50. [95, 1129, 562, 1178] reference_item 0.85 ["reference content label: 13. Calvert PT, Packer NP, Stoker DJ, Bayley JI, Kessel L. A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
121 8 26 reference_content 14. Harryman DT 2nd, Mack LA, Wang KY, Jackins SE, Richardson ML, Matsen FA 3rd. Repairs of the rotator cuff. Correlation of functional results with integrity of the cuff. J Bone Joint Surg Am. 1991;7 [95, 1184, 585, 1234] reference_item 0.85 ["reference content label: 14. Harryman DT 2nd, Mack LA, Wang KY, Jackins SE, Richardso"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
122 8 27 reference_content 15. Gazielly DF, Gleyze P, Montagnon C. Functional and anatomical results after rotator cuff repair. Clin Orthop Relat Res. 1994;304:43-53. [95, 1240, 581, 1273] reference_item 0.85 ["reference content label: 15. Gazielly DF, Gleyze P, Montagnon C. Functional and anato"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
123 8 28 reference_content 16. Liu SH, Baker CL. Arthroscopically assisted rotator cuff repair: correlation of functional results with integrity of the cuff. Arthroscopy. 1994;10:54-60. [95, 1280, 577, 1314] reference_item 0.85 ["reference content label: 16. Liu SH, Baker CL. Arthroscopically assisted rotator cuff"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
124 8 29 reference_content 17. Thomazeau H, Boukobza E, Morcet N, Chaperon J, Langlais F. Prediction of rotator cuff repair results by magnetic resonance imaging. Clin Orthop Relat Res. 1997;344:275-83. [95, 1320, 590, 1370] reference_item 0.85 ["reference content label: 17. Thomazeau H, Boukobza E, Morcet N, Chaperon J, Langlais "] reference_item 0.85 reference_zone unknown_like heading_numbered True True
125 8 30 reference_content 18. Knudsen HB, Gelineck J, Sojbjerg JO, Olsen BS, Johannsen HV, Sneppen O. Functional and magnetic resonance imaging evaluation after single-tendon rotator cuff reconstruction. J Shoulder Elbow Surg. [95, 1376, 587, 1426] reference_item 0.85 ["reference content label: 18. Knudsen HB, Gelineck J, Sojbjerg JO, Olsen BS, Johannsen"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
126 8 31 reference_content 19. Worland RL, Arredondo J, Angles F, Lopez-Jimenez F. Repair of massive rotator cuff tears in patients older than 70 years. J Shoulder Elbow Surg. 1999;8:26-30. [95, 1432, 589, 1465] reference_item 0.85 ["reference content label: 19. Worland RL, Arredondo J, Angles F, Lopez-Jimenez F. Repa"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
127 8 32 reference_content 20. Jost B, Pfirrmann CW, Gerber C. Clinical outcome after structural failure of rotator cuff repairs. J Bone Joint Surg Am. 2000;82:304-14. [625, 550, 1108, 586] reference_item 0.85 ["reference content label: 20. Jost B, Pfirrmann CW, Gerber C. Clinical outcome after s"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
128 8 33 reference_content 21. Gerber C, Fuchs B, Hodler J. The results of repair of massive tears of the rotator cuff. J Bone Joint Surg Am. 2000;82:505-15. [626, 592, 1101, 626] reference_item 0.85 ["reference content label: 21. Gerber C, Fuchs B, Hodler J. The results of repair of ma"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
129 8 34 reference_content 22. Fealy S, Kingham TP, Altchek DW. Mini-open rotator cuff repair using a two-row fixation technique: outcomes analysis in patients with small, moderate, and large rotator cuff tears. Arthroscopy. 20 [627, 633, 1124, 681] reference_item 0.85 ["reference content label: 22. Fealy S, Kingham TP, Altchek DW. Mini-open rotator cuff "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
130 8 35 reference_content 23. Waltrip RL, Zheng N, Dugas JR, Andrews JR. Rotator cuff repair. A biomechanical comparison of three techniques. Am J Sports Med. 2003;31:493-7. [626, 687, 1125, 722] reference_item 0.85 ["reference content label: 23. Waltrip RL, Zheng N, Dugas JR, Andrews JR. Rotator cuff "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
131 8 36 reference_content 24. Lo IK, Burkhart SS. Double-row arthroscopic rotator cuff repair: re-establishing the footprint of the rotator cuff. Arthroscopy. 2003;19:1035-42. [626, 728, 1119, 762] reference_item 0.85 ["reference content label: 24. Lo IK, Burkhart SS. Double-row arthroscopic rotator cuff"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
132 8 37 reference_content 25. Meier SW, Meier JD. Rotator cuff repair: the effect of double-row fixation on three-dimensional repair site. J Shoulder Elbow Surg. 2006;15:691-6. [626, 767, 1114, 802] reference_item 0.85 ["reference content label: 25. Meier SW, Meier JD. Rotator cuff repair: the effect of d"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
133 8 38 reference_content 26. DeOrio JK, Cofield RH. Results of a second attempt at surgical repair of a failed initial rotator-cuff repair. J Bone Joint Surg Am. 1984;66:563-7. [626, 808, 1105, 842] reference_item 0.85 ["reference content label: 26. DeOrio JK, Cofield RH. Results of a second attempt at su"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
134 8 39 reference_content 27. Ide J, Takagi K. Early and long-term results of arthroscopic treatment for shoulder stiffness. J Shoulder Elbow Surg. 2004;13:174-9. [626, 848, 1097, 881] reference_item 0.85 ["reference content label: 27. Ide J, Takagi K. Early and long-term results of arthrosc"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
135 8 40 reference_content 28. Ellman H, Hanker G, Bayer M. Repair of the rotator cuff. End-result study of factors influencing reconstruction. J Bone Joint Surg Am. 1986;68:1136-44. [626, 887, 1114, 922] reference_item 0.85 ["reference content label: 28. Ellman H, Hanker G, Bayer M. Repair of the rotator cuff."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
136 8 41 reference_content 29. Richards RR, An K-N, Bigliani LU, Friedman RJ, Gartsman GM, Gristina AG, Iannotti JP, Mow VC, Sidles JA, Zuckerman JD. A standardized method for the assessment of shoulder function. J Shoulder Elb [626, 928, 1109, 976] reference_item 0.85 ["reference content label: 29. Richards RR, An K-N, Bigliani LU, Friedman RJ, Gartsman "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
137 8 42 reference_content 30. Minagawa H, Itoi E, Konno N, Kido T, Sano A, Urayama M, Sato K. Humeral attachment of the supraspinatus and infraspinatus tendons: an anatomic study. Arthroscopy. 1998;14:302-6. [627, 984, 1117, 1034] reference_item 0.85 ["reference content label: 30. Minagawa H, Itoi E, Konno N, Kido T, Sano A, Urayama M, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
138 8 43 reference_content 31. Sugaya H, Kon Y, Tsuchiya A. Arthroscopic Bankart repair in the beachchair position: a cannulales method using an intra-articular suture relay technique. Arthroscopy. 2004;20 Suppl 2:116-20. [626, 1041, 1114, 1090] reference_item 0.85 ["reference content label: 31. Sugaya H, Kon Y, Tsuchiya A. Arthroscopic Bankart repair"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
139 8 44 reference_content 32. Gerber C, Schneeberger AG, Beck M, Schlegel U. Mechanical strength of repairs of the rotator cuff. J Bone Joint Surg Br. 1994;76:371-80. [626, 1096, 1101, 1130] reference_item 0.85 ["reference content label: 32. Gerber C, Schneeberger AG, Beck M, Schlegel U. Mechanica"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
140 8 45 reference_content 33. Tuoheti Y, Itoi E, Yamamoto N, Seki N, Abe H, Minagawa H, Okada K, Shimada Y. Contact area, contact pressure, and pressure patterns of the tendon-bone interface after rotator cuff repair. Am J Spo [626, 1136, 1107, 1186] reference_item 0.85 ["reference content label: 33. Tuoheti Y, Itoi E, Yamamoto N, Seki N, Abe H, Minagawa H"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
141 8 46 reference_content 34. Meier SW, Meier JD. The effect of double-row fixation on initial repair strength in rotator cuff repair: a biomechanical study. Arthroscopy. 2006;22:1168-73. [626, 1192, 1122, 1226] reference_item 0.85 ["reference content label: 34. Meier SW, Meier JD. The effect of double-row fixation on"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
142 8 47 reference_content 35. Goutallier D, Postel JM, Bernageau J, Lavau L, Voisin MC. Fatty muscle degeneration in cuff ruptures. Pre- and postoperative evaluation by CT scan. Clin Orthop Relat Res. 1994;304:78-83. [626, 1233, 1107, 1282] reference_item 0.85 ["reference content label: 35. Goutallier D, Postel JM, Bernageau J, Lavau L, Voisin MC"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
143 8 48 reference_content 36. Matsuki K, Sugaya H, Maeda K, Moriishi J. Delamination observed in full-thickness rotator cuff tears. Presented at the annual meeting of the Arthroscopy Association of North America; 2005 May 12-1 [626, 1288, 1120, 1353] reference_item 0.85 ["reference content label: 36. Matsuki K, Sugaya H, Maeda K, Moriishi J. Delamination o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
144 8 49 reference_content 37. Wakabayashi I, Itoi E, Sano H, Shibuya Y, Sashi R, Minagawa H, Kobayashi M. Mechanical environment of the supraspinatus tendon: a two-dimensional finite element model analysis. J Shoulder Elbow Su [626, 1360, 1123, 1411] reference_item 0.85 ["reference content label: 37. Wakabayashi I, Itoi E, Sano H, Shibuya Y, Sashi R, Minag"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
145 8 50 reference_content 38. Sano H, Wakabayashi I, Itoi E. Stress distribution in the supraspinatus tendon with partial-thickness tears: an analysis using two-dimensional finite element model. J Shoulder Elbow Surg. 2006;15: [626, 1417, 1125, 1465] reference_item 0.85 ["reference content label: 38. Sano H, Wakabayashi I, Itoi E. Stress distribution in th"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True

View file

@ -0,0 +1,279 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header_image,,"[83, 141, 206, 252]",non_body_insert,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,False
1,1,header,Polymer 107 (2016) 177190,"[516, 91, 694, 112]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
1,2,header,ELSEVIER,"[85, 257, 206, 281]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,3,header,Contents lists available at ScienceDirect,"[449, 144, 769, 166]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
1,4,header,Polymer,"[552, 193, 667, 225]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,short_fragment,False,False
1,5,header,journal homepage: www.elsevier.com/locate/polymer,"[350, 256, 865, 278]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
1,6,header_image,,"[1011, 135, 1126, 275]",non_body_insert,0.2,"[""unrecognized label 'header_image'""]",unknown_structural,0.2,frontmatter_main_zone,support_like,empty,False,False
1,7,doc_title,Novel nanofibrous electrically conductive scaffolds based on poly(ethylene glycol)s-modified polythiophene and poly(ε-caprolactone) for tissue engineering applications,"[79, 350, 866, 455]",paper_title,0.6,"[""page-1 frontmatter title guard: Novel nanofibrous electrically conductive scaffolds based on""]",paper_title,0.6,frontmatter_main_zone,support_like,none,True,True
1,8,image,,"[1007, 353, 1128, 403]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,frontmatter_main_zone,support_like,empty,True,True
1,9,text,"Maryam Hatamzadeh $ {}^{a,b} $, Peyman Najafi-Moghadam $ {}^{a} $, Ali Baradar-Khoshfetrat $ {}^{c} $, Mehdi Jaymand $ {}^{d,*} $, Bakhshali Massoumi $ {}^{b,**} $","[80, 469, 898, 523]",authors,0.8,"[""page-1 zone author_zone: Maryam Hatamzadeh $ {}^{a,b} $, Peyman Najafi-Moghadam $ {""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,10,text," $ ^{a} $ Department of Organic Chemistry, Faculty of Chemistry, University of Urmia, P.O. Box: 57561-51818, Urmia, Iran","[79, 533, 755, 552]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{a} $ Department of Organic Chemistry, Faculty of Chemist""]",affiliation,0.8,frontmatter_main_zone,support_like,affiliation_marker,True,True
1,11,text," $ ^{b} $ Department of Chemistry, Payame Noor University, P.O. BOX: 19395-3697, Tehran, Iran","[80, 551, 608, 569]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{b} $ Department of Chemistry, Payame Noor University, P.""]",affiliation,0.8,frontmatter_main_zone,support_like,affiliation_marker,True,True
1,12,text," $ ^{d} $ Research Center for Pharmaceutical Nanotechnology, Tabriz University of Medical Sciences, P.O. BOX: 51656-65811, Tabriz, Iran","[80, 584, 846, 603]",affiliation,0.8,"[""page-1 zone affiliation_zone: $ ^{d} $ Research Center for Pharmaceutical Nanotechnology, ""]",affiliation,0.8,frontmatter_main_zone,support_like,affiliation_marker,True,True
1,13,paragraph_title,ARTICLE INFO,"[80, 648, 279, 669]",frontmatter_noise,0.5,"[""unnumbered paragraph_title on page 1 outside title zone: ARTICLE INFO""]",section_heading,0.5,frontmatter_main_zone,support_like,short_fragment,False,False
1,14,text,"Article history:
Received 24 August 2016
Received in revised form 27 October 2016
Accepted 8 November 2016","[81, 686, 257, 776]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Article history:\nReceived 24 August 2016\nReceived in revised""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,15,text,"Keywords:
Electrically conductive scaffold
Biocompatibility
Tissue engineering","[81, 813, 276, 885]",frontmatter_noise,0.7,"[""frontmatter noise text: Keywords:\nElectrically conductive scaffold\nBiocompatibility\n""]",frontmatter_noise,0.7,body_zone,body_like,none,False,False
1,16,paragraph_title,A B S T R A C T,"[410, 648, 554, 669]",section_heading,0.5,"[""unnumbered paragraph_title on page 1 outside title zone: A B S T R A C T""]",section_heading,0.5,body_zone,body_like,short_fragment,True,True
1,17,abstract,This study explores the fabrication of electrically conductive nanofibers using electrospinning technique from AB₄ mikoarm H-shaped poly(ethylene glycol)s-modified polythiophene [PEGs-b-(PTH)₄] co-pol,"[406, 686, 1129, 997]",body_paragraph,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,body_zone,body_like,none,True,True
1,18,text,© 2016 Elsevier Ltd. All rights reserved.,"[848, 995, 1127, 1015]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: \u00a9 2016 Elsevier Ltd. All rights reserved.""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,19,paragraph_title,1. Introduction,"[82, 1111, 212, 1132]",section_heading,0.85,"[""paragraph_title label with numbering: 1. Introduction""]",section_heading,0.85,body_zone,body_like,heading_numbered,True,True
1,20,text,"Tissue engineering (TE) is emerging as a relatively novel interdisciplinary field (combination of engineering, chemistry, biology, and materials sciences) for repair or replacement of failed tissues/o","[79, 1153, 591, 1302]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Tissue engineering (TE) is emerging as a relatively novel in""]",frontmatter_noise,0.8,body_zone,body_like,none,False,False
1,21,text,,"[616, 1111, 1129, 1343]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
1,22,footnote,* Corresponding author.,"[86, 1347, 248, 1366]",footnote,0.7,"[""footnote label: * Corresponding author.""]",footnote,0.7,body_zone,body_like,none,True,True
1,23,text,"It is well documented that each cell produces a membrane potential of a few millivolts (mV) to tens of millivolts, which depend on its type, tissue, and degree of differentiation. The electric charact","[616, 1342, 1130, 1426]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,24,footnote,** Corresponding author.,"[85, 1367, 250, 1383]",footnote,0.7,"[""footnote label: ** Corresponding author.""]",footnote,0.7,body_zone,body_like,none,True,True
1,25,footnote,"E-mail addresses: m_jaymand@yahoo.com, m.jaymand@gmail.com, jaymandm@tbzmed.ac.ir (M. Jaymand), b_massoumi@pnu.ac.ir, bakhshalim@yahoo.com (B. Massoumi).","[79, 1380, 591, 1436]",footnote,0.7,"[""footnote label: E-mail addresses: m_jaymand@yahoo.com, m.jaymand@gmail.com, ""]",footnote,0.7,body_zone,body_like,none,True,True
1,26,footer,"http://dx.doi.org/10.1016/j.polymer.2016.11.012
0032-3861/© 2016 Elsevier Ltd. All rights reserved.","[81, 1453, 400, 1489]",noise,0.9,"[""footer label""]",noise,0.9,body_zone,body_like,none,False,False
2,0,number,178,"[64, 94, 90, 110]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,1,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[433, 92, 739, 111]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
2,2,text,"fields (EF), direct currents (DC), and ultra-low frequency electromagnetic fields (UL-EMF) comes from the segregation of charges by biological machines such as transporters, pumps, and ion channels wh","[59, 129, 573, 379]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,3,text,"In this respect, electrically conductive biomaterials composed of an insulating synthetic/semi-synthetic or natural biopolymer and an intrinsically conducting polymer (ICP) have attracted great deal o","[59, 380, 573, 673]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,4,text,"On the other hand, a suitable scaffold must have a porous structure in order to allow the diffusion of growth factors to cells that resulted in favor cell survival. In this context, the electrospinnin","[60, 674, 572, 904]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,5,text,The objective of this research was to fabricate nanofibrous electrically conductive scaffolds using electrospinning technique from AB₄ miktoarm H-shaped PEGs-modified PTh [PEG₂-b-(PTh)₄] copolymers an,"[58, 904, 573, 1283]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,6,paragraph_title,2. Experimental,"[60, 1301, 201, 1323]",section_heading,0.85,"[""paragraph_title label with numbering: 2. Experimental""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
2,7,paragraph_title,2.1. Materials,"[60, 1343, 171, 1365]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.1. Materials""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
2,8,text,"Poly(ε-caprolactone) ( $ M_n = 70000-90000 $ g mol $ ^{-1} $), poly(ethylene glycol) ( $ M_n = 2000 $ and 6000 g mol $ ^{-1} $), sodium hydride (NaH), 2-thiopheneacetic acid, N,N-dicyclohexyl carbodii","[59, 1384, 572, 1491]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,9,text,,"[596, 129, 1111, 319]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
2,10,paragraph_title,"2.2. Synthesis of $ \alpha,\omega $-diepoxy-PEGs","[598, 339, 865, 360]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.2. Synthesis of $ \\alpha,\\omega $-diepoxy-PEGs""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
2,11,text,"In a 250 ml dried three-necked round-bottom flask equipped with condenser, septum, gas inlet/outlet, and a magnetic stirrer, PEG2000 (10.00 g, 5 mmol) was dissolved in dried THF (100 ml). The solution","[596, 380, 1110, 756]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,12,text,"The $ \alpha,\omega $-diepoxy-PEG $ _{6000} $ was synthesized by the same procedure with the appropriate amounts of PEG $ _{6000} $ (15.00 g; 2.5 mmol), dried THF (150 ml), NaH (144 mg; 6 mmol), and ","[596, 757, 1110, 843]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,13,paragraph_title,2.3. Synthesis of PEGs ends-caped tetraol $ [PEGs(OH)_{4}] $,"[598, 862, 1007, 884]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.3. Synthesis of PEGs ends-caped tetraol $ [PEGs(OH)_{4}] ""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
2,14,text,"In a typical experiment, a 100 ml round-bottom flask equipped with a condenser, and a magnetic stirrer, was charged with α,ω-diepoxy-PEG₂₀₀₀ (8.00 g, 4 mmol), and sulfuric acid solution (H₂SO₄; 50 ml,","[595, 904, 1111, 1242]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
2,15,paragraph_title,2.4. Synthesis of thiophene-functionalized PEG₅ AB₄ macromonomers (ThPEGsM),"[598, 1259, 988, 1302]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.4. Synthesis of thiophene-functionalized PEG\u2085 AB\u2084 macromon""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
2,16,text,"A 100 ml three-necked round-bottom flask equipped with condenser, gas inlet/outlet, and a magnetic stirrer, was charged with 2-thiopheneacetic acid (8 mmol, 1.13 g), DCC (10 mmol, 2.07 g), and dried T","[596, 1321, 1111, 1491]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,0,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[452, 92, 759, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
3,1,number,179,"[1103, 94, 1129, 109]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,2,text,"was stirred for another 48 h under an argon atmosphere at room temperature. Afterward, the reaction mixture was filtered using filter paper (Whatman) to remove dicyclohexyl urea salts, and the solvent","[79, 130, 593, 256]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,3,paragraph_title,2.5. Synthesis of miktoarm H-shaped PEGs-b-(PTh) $ _{4} $,"[80, 276, 472, 298]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.5. Synthesis of miktoarm H-shaped PEGs-b-(PTh) $ _{4} $""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,4,text,"In a typical experiment, a 250 ml three-necked round-bottom flask equipped with a condenser, dropping funnel, gas inlet/outlet, and a magnetic stirrer, was charged with ThPEG $ _{2000} $M (2.00 g, 1 m","[78, 317, 592, 631]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,text,"Furthermore, the crude product was extracted whit THF in a Soxhlet apparatus for about 24 h, in order to remove any homo-PTh chains. According to our testes, the synthesized $ PEG_{2000}-b-(PTh)_{4} ","[79, 632, 593, 821]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,paragraph_title,2.6. Fabrication of PEGs-b-(PTh) $ _{4} $/PCL electrospun nanofibers,"[79, 841, 535, 863]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.6. Fabrication of PEGs-b-(PTh) $ _{4} $/PCL electrospun na""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,7,text,The PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL nanofibers were prepared by electrospinning of the same volume solutions of the synthesized polymers (dimethylsulfoxid,"[78, 883, 593, 990]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,8,paragraph_title,2.7. Biocompatibility experiments,"[80, 1009, 335, 1030]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.7. Biocompatibility experiments""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,9,paragraph_title,2.7.1. Cell culture,"[80, 1050, 219, 1070]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.7.1. Cell culture""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,10,text,The human osteoblast MG-63 cells were cultured into flasks and kept in a humidified incubator with CO₂ (5%) at 37 °C. Cells were grown (up 70% confluency) in the Dulbecco's modified Eagle's medium (DM,"[79, 1071, 593, 1199]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,11,paragraph_title,2.7.2. Cell viability assay,"[80, 1218, 273, 1239]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.7.2. Cell viability assay""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,12,text,"For cytotoxicity study, 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assay was performed as described in our previous works [22,23]. Briefly, 12 well plates were coated well with","[77, 1240, 594, 1492]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,13,text,,"[616, 129, 1128, 190]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
3,14,paragraph_title,2.7.3. Cell growth assay,"[618, 213, 805, 233]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.7.3. Cell growth assay""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,15,text,"Cell growth rate was quantified using direct counting by hemocytometer. Briefly, the well plates were coated well with presterilized PEG2000-b-(PTH)4/PCL or PEG6000-b-(PTH)4/PCL electrospun nanofibers","[616, 234, 1130, 466]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,16,paragraph_title,2.7.4. Cell morphology study,"[618, 485, 841, 505]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 2.7.4. Cell morphology study""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,17,text,The cell attachment performance of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers were analyzed after 24 h of cell culture using FE-SEM. For t,"[615, 506, 1130, 696]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,18,paragraph_title,2.8. Characterization,"[618, 715, 783, 736]",subsection_heading,0.85,"[""paragraph_title label with numbering: 2.8. Characterization""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
3,19,text,"Fourier transform infrared (FTIR) spectra of the synthesized samples were collected on a Shimadzu 8400S FTIR (Shimadzu, Kyoto, Japan) in the range of 4000 to 400 cm⁻¹ with a resolution of 4 cm⁻¹ using","[604, 755, 1133, 1492]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,0,number,180,"[64, 94, 89, 109]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[433, 92, 739, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
4,2,text,triplicates.,"[62, 129, 147, 151]",unknown_structural,0.3,"[""short text, uncertain role""]",unknown_structural,0.3,body_zone,body_like,short_fragment,False,True
4,3,paragraph_title,3. Results and discussion,"[61, 171, 272, 192]",section_heading,0.85,"[""paragraph_title label with numbering: 3. Results and discussion""]",section_heading,0.85,body_zone,body_like,heading_numbered,True,True
4,4,text,"Motivational designs of polymeric materials for biomedical applications have been developed progressively during the last decade. In this context, the development of electrically conductive biomateria","[60, 213, 573, 404]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,5,paragraph_title,"3.1. Synthesis of $ \alpha,\omega $-diepoxylated PEGs","[62, 422, 359, 444]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.1. Synthesis of $ \\alpha,\\omega $-diepoxylated PEGs""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
4,6,text,"The FTIR spectra of the pure PEG₂₀₀₀, and α,ω-diepoxylated PEG₂₀₀₀ and PEG₆₀₀₀ are shown in Fig. 1. The FTIR spectrum of the pure PEG₂₀₀₀ (Fig. 1a) shows the characteristic absorption bands related to","[60, 464, 574, 739]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,7,paragraph_title,3.2. Synthesis of ThPEGsM macromonomers,"[62, 757, 392, 779]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.2. Synthesis of ThPEGsM macromonomers""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
4,8,text,The ThPEGsM macromonomers were synthesized through the Steglich esterification of PEGs ends-caped tetraol $ [PEGs(OH)_4] $ with 2-thiopheneacetic acid in the presence of DCC and DMAP as coupling agen,"[61, 798, 572, 945]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,9,text,"As seen in FTIR spectra of the PEG2000(OH)₄ (Fig. 2a) and PEG6000(OH)₄ (Fig. 2b), after acidic hydrolysis of α,ω-diepoxylated PEGs to PEGs(OH)₄ the most distinctive feature in the FTIR spectra are the","[59, 949, 573, 1241]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,10,text,The successful synthesis of ThPEGsM macromonomers are further verified by means of $ ^{1} $H NMR spectroscopy (Fig. 3). The $ ^{1} $H NMR spectra of the both ThPEGsM macromonomers shows the characte,"[60, 1240, 572, 1492]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,11,image,,"[606, 133, 1100, 1313]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
4,12,figure_title,Scheme 1. The overall methodologies for synthesis of H-shaped miktoarm PEGs-b-(PTh) $ _{4} $.,"[597, 1330, 1108, 1367]",figure_caption,0.85,"[""figure_title label: Scheme 1. The overall methodologies for synthesis of H-shape""]",figure_caption,0.85,body_zone,legend_like,none,True,True
4,13,text,"data revealed that the degree of functionalization were 82 and 76% by mol for ThPEG $ _{2000} $M and ThPEG $ _{6000} $M, respectively.","[597, 1401, 1110, 1446]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,0,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[452, 92, 758, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
5,1,number,181,"[1103, 94, 1127, 110]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
5,2,image,,"[82, 130, 582, 763]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,3,figure_title,Scheme 2. The overall strategy for the fabrication of electrically conductive nanofibrous scaffolds composed of PEGs-b-(PTh) $ _{4} $ and PCL for tissue engineering applications.,"[79, 782, 590, 836]",figure_caption,0.85,"[""figure_title label: Scheme 2. The overall strategy for the fabrication of electr""]",figure_caption,0.85,body_zone,legend_like,none,True,True
5,4,paragraph_title,3.3. Characterization of H-shaped miktoarm PEGs-b-(PTh) $ _{4} $,"[80, 871, 524, 893]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3. Characterization of H-shaped miktoarm PEGs-b-(PTh) $ _{""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
5,5,paragraph_title,3.3.1. FTIR spectroscopy,"[81, 914, 264, 933]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.1. FTIR spectroscopy""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
5,6,text,The FTIR spectra of the synthesized homo-PTh and H-shaped miktoarm PEGs-b-(PTh)₄ are shown in Fig. 4. The most important bands in the FTIR spectrum of the homo-PTh are weak aromatic α and β hydrogen's,"[79, 933, 593, 1204]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,7,paragraph_title,3.3.2. $ ^{1}H $ NMR spectroscopy,"[81, 1233, 295, 1253]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: 3.3.2. $ ^{1}H $ NMR spectroscopy""]",subsection_heading,0.6,body_zone,body_like,none,True,True
5,8,text,The synthesized H-shaped mikroarm PEGs-b-(PTh) $ _{4} $ samples were further characterized by means of $ {}^{1} $H NMR spectroscopy as shown in Fig. 5. The $ {}^{1} $H NMR spectra of both samples sh,"[78, 1255, 591, 1420]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,9,paragraph_title,3.3.3. UV-vis spectroscopy,"[81, 1448, 289, 1468]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.3. UV-vis spectroscopy""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
5,10,text,"The optical characteristics of the synthesized homo-PTh, H-","[102, 1469, 590, 1490]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,11,chart,,"[621, 131, 1113, 960]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
5,12,figure_title,"Fig. 1. The FTIR spectra of pure PEG $ _{2000} $ (a), $ \alpha $, $ \omega $-diepoxylated PEG $ _{2000} $ (b), and $ \alpha $, $ \omega $-diepoxylated PEG $ _{6000} $ (c).","[617, 985, 1124, 1021]",figure_caption,0.92,"[""figure_title label: Fig. 1. The FTIR spectra of pure PEG $ _{2000} $ (a), $ \\al""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
5,13,text,shaped mikroarm PEG $ _{2000} $-b-(PTh) $ _{4} $ and PEG $ _{6000} $-b-(PTh) $ _{4} $ samples were investigated using UVvis spectroscopy. The samples for UVvis spectroscopy were prepared by dissolvi,"[614, 1056, 1130, 1161]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,14,text,"As can be seen in Fig. 6, the UVvis spectra of all samples were characterized by an electronic transition. The maximum absorption peaks were observed at 605, and 598, and 587 nm for homo-PTh, $ PEG_","[616, 1162, 1130, 1353]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
5,15,paragraph_title,3.3.4. Morphology study,"[619, 1385, 808, 1405]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.4. Morphology study""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
5,16,text,"As shown in Fig. 7, the surface morphologies of the synthesized H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ and PEG $ _{6000} $-b-(PTh) $ _{4} $ copolymers were observed using FE-SEM. As can be","[618, 1407, 1129, 1492]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,0,number,182,"[64, 93, 89, 111]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[433, 92, 739, 112]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
6,2,chart,,"[67, 130, 554, 1198]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,3,figure_title,"Fig. 2. The FTIR spectra of the PEG $ _{2000} $(OH) $ _{4} $ (a), PEG $ _{6000} $(OH) $ _{4} $ (b), ThPEG $ _{2000} $M (c), a ThPEG $ _{6000} $M (d).","[59, 1218, 551, 1255]",figure_caption,0.92,"[""figure_title label: Fig. 2. The FTIR spectra of the PEG $ _{2000} $(OH) $ _{4} $""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,4,text,diameters in the size range of $ 80 \pm 20 $ nm. These morphologies may be originated from the growth of PTh chains from ThPEGsM macromonomer.,"[60, 1291, 572, 1356]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,5,paragraph_title,3.3.5. Thermal property study,"[61, 1385, 290, 1405]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.5. Thermal property study""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
6,6,text,"Thermal characteristics of the obtained polymers upon heating under nitrogen atmosphere were evaluated using TGA. Characteristic TGA curves of PEG $ _{2000} $, PEG $ _{2000-b} $-(PTh) $ _{4} $, PEG $ ","[60, 1406, 570, 1491]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,7,image,,"[656, 132, 1067, 525]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,8,figure_title,(a),"[1028, 357, 1065, 388]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
6,9,chart,,"[636, 579, 1068, 876]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
6,10,figure_title,Fig. 3. The $ {}^{1} $H NMR spectra of the ThPEG $ _{2000} $M (a) and ThPEG $ _{6000} $M (b) macromonomers.,"[597, 887, 1107, 924]",figure_caption,0.92,"[""figure_title label: Fig. 3. The $ {}^{1} $H NMR spectra of the ThPEG $ _{2000} ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
6,11,text,"decomposition of PEG $ _{2000} $ (Fig. 8a) was occurring in one step around 210440 °C, and after which the loss rate slows down. The residue at 700 °C for pure PEG $ _{2000} $ is 3 wt%. The character","[597, 960, 1110, 1087]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,12,text,"In contrast, the main decomposition of $ PEG_{2000}-b-(PTh)_4 $ (Fig. 8c) was occurring in a two-step; the first step related to the decomposition of the PEG chain (210400 °C), whereas the second st","[596, 1086, 1110, 1297]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,13,paragraph_title,3.3.6. Electroactivity behaviors,"[600, 1322, 836, 1342]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.3.6. Electroactivity behaviors""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
6,14,text,"The electroactivity behaviors of the PEG $ _{2000-b} $-(PTh) $ _{4} $ and PEG $ _{6000-b} $-(PTh) $ _{4} $ copolymers were evaluated in the range of 1040 mV s $ ^{-1} $ scan rate, in the acetonitrile","[597, 1341, 1111, 1491]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,0,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[452, 92, 758, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
7,1,number,183,"[1103, 93, 1128, 111]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,2,chart,,"[86, 129, 577, 1065]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,3,figure_title,"Fig. 4. The FTIR spectra of the synthesized homo-PTh (a), H-shaped miktoarm $ PEG_{2000} $-b-(PTh) $ _{4} $ (b), and $ PEG_{6000} $-b-(PTh) $ _{4} $ (c) copolymers.","[78, 1088, 589, 1126]",figure_caption,0.92,"[""figure_title label: Fig. 4. The FTIR spectra of the synthesized homo-PTh (a), H-""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
7,4,text,"and 0.85 V versus Ag/AgCl electrode, respectively. In contrast, the $ PEG_{6000} $-b-(PTh) $ _{4} $ sample (Fig. 9b) showed a typical redox couple with anodic and cathodic peaks at approximately 1.65","[78, 1160, 590, 1244]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,5,text,"In addition, the relationship between the peak current sizes (anodic peaks) versus scan rate in the range of 1040 mV s⁻¹ for the PEG₂₀₀₀-b-(PTh)₄ and PEG₆₀₀₀-b-(PTh)₄ copolymers are shown in Fig. 9c.","[79, 1245, 591, 1373]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,6,paragraph_title,3.4. Characterization of electrospun nanofibers,"[80, 1406, 434, 1428]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.4. Characterization of electrospun nanofibers""]",subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
7,7,text,"Nanofibrous polymer-based scaffolds have attracted considerable attention, in part due to physicochemical and biological","[79, 1447, 592, 1492]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,8,chart,,"[656, 127, 1088, 509]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
7,9,figure_title,"Fig. 5. The $ {}^{1} $H NMR spectra of the synthesized H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ (a), and PEG $ _{6000} $-b-(PTh) $ _{4} $ (b) copolymers.","[616, 522, 1129, 561]",figure_caption,0.92,"[""figure_title label: Fig. 5. The $ {}^{1} $H NMR spectra of the synthesized H-sh""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
7,10,text,"mimicking of native ECM. Some of the physicochemical and biological properties of the fabricated nanofibrous scaffolds including morphology, mechanical properties, electrical conductivity, hydrophilic","[617, 594, 1129, 702]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,11,paragraph_title,3.4.1. Morphology study,"[619, 728, 807, 749]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.4.1. Morphology study""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
7,12,text,"The morphology and topography of the scaffold have pivotal roles on its performance in TE. In this context, nanofibrous polymer-based scaffolds that fabricated using electrospinning technique have att","[616, 750, 1129, 875]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,13,text,The surface morphologies of the fabricated $ PEG_{2000}-b-(PTh)_{4}/PCL $ and $ PEG_{6000}-b-(PTh)_{4}/PCL $ electrospun nanofibers were investigated by means of FE-SEM as shown in Fig. 10. The FE-S,"[616, 876, 1130, 1066]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,14,paragraph_title,3.4.2. Mechanical properties,"[619, 1093, 838, 1114]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.4.2. Mechanical properties""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
7,15,text,"Another topic must be considered in TE is mechanical properties, mainly due to direct influence of environment surrounding cells in TE performances (e.g., differentiation process) [40,41]. The represe","[615, 1114, 1130, 1305]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,16,figure_title,"Table 1
Summary of the obtained results from $ {}^{1} $H NMR spectroscopy of PEGs-b-(PTh) $ _{4} $ samples.","[617, 1342, 1127, 1392]",table_caption,0.9,"[""table prefix matched: Table 1\nSummary of the obtained results from $ {}^{1} $H NM""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
7,17,table,<table><tr><td>Sample</td><td>PEG (mol%)</td><td>PTh (mol%)</td><td>PEG (wt%)</td><td>PTh (wt%)</td><td>$ M_{w} $ of PTh (g mol $ ^{-1} $)</td></tr><tr><td>PEG $ _{2000} $-b-(PTh) $ _{4} $</td><td>46<,"[622, 1397, 1122, 1484]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
8,0,number,184,"[64, 94, 90, 110]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[433, 92, 739, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
8,2,chart,,"[65, 129, 568, 497]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,3,figure_title,"Fig. 6. The electronic spectra of the homo-PTh (a), H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ (b), and PEG $ _{6000} $-b-(PTh) $ _{4} $ (c).","[59, 514, 570, 552]",figure_caption,0.92,"[""figure_title label: Fig. 6. The electronic spectra of the homo-PTh (a), H-shaped""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,4,paragraph_title,3.4.3. Electrical conductivity,"[62, 586, 279, 606]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.4.3. Electrical conductivity""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
8,5,text,The motivation toward electrically conductive nanofibers for TE applications is originated from simultaneously providing topographical and electrical cues which promote the regeneration of injured tis,"[60, 607, 571, 776]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,6,text,The electrical conductivities of the synthesized polymers and fabricated electrospun nanofibers were measured by the four-probe technique at room temperature as described in our pervious works and the,"[59, 775, 572, 966]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,7,chart,,"[636, 128, 1070, 505]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,8,figure_title,"Fig. 8. TGA curves of the pure PEG $ _{2000} $ (a), PEG $ _{6000} $-b-(PTh) $ _{4} $ (b), PEG $ _{2000} $-b-(PTh) $ _{4} $ (c), and pure PTh (d).","[598, 523, 1108, 561]",figure_caption,0.92,"[""figure_title label: Fig. 8. TGA curves of the pure PEG $ _{2000} $ (a), PEG $ _{""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,9,text,"electrical conductivities of the PEGs-b-(PTh) $ _{4} $/PCL samples were decreased significantly, since PCL is not a conductive material. In conclusion, the conductivities of electrospun nanofibers wer","[597, 595, 1110, 681]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,10,paragraph_title,3.4.4. Hydrophilicity,"[599, 706, 749, 726]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.4.4. Hydrophilicity""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
8,11,text,"It is well accepted that the surface properties of the scaffold can influence adversely the TE performances (e.g., cell attachment and proliferation). Among them, the characteristic of hydrophilicity ","[597, 726, 1109, 832]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,12,text,The surface hydrophilicities of PEG₂₀₀₀-b-(PTh)₄/PCL and PEG₆₀₀₀-b-(PTh)₄/PCL electrospun nanofibers were measured by water drop contact angle method at room temperature versus the PCL electrospun nan,"[597, 832, 1111, 979]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,13,image,,"[189, 1021, 576, 1451]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,14,image,,"[595, 1022, 984, 1451]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,15,figure_title,Fig. 7. The FE-SEM images of the H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ (left) and PEG $ _{6000} $-b-(PTh) $ _{4} $ (right).,"[263, 1471, 904, 1491]",figure_caption,0.92,"[""figure_title label: Fig. 7. The FE-SEM images of the H-shaped miktoarm PEG $ _{2""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,0,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[452, 92, 759, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
9,1,number,185,"[1103, 94, 1128, 110]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
9,2,chart,,"[89, 131, 418, 427]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
9,3,chart,,"[441, 133, 772, 427]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
9,4,chart,,"[786, 128, 1121, 427]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
9,5,figure_title,"Fig. 9. Cyclic voltammetry curves (CVs) of the PEG₂₀₀₀-b-(PTh)₄ (a) and PEG₆₀₀₀-b-(PTh)₄ (b) copolymers in acetonitrileTEAFB, solventelectrolyte couple (0.1 mol⁻¹), between 0 and + 2.00 V versus the","[78, 443, 1131, 516]",figure_caption,0.92,"[""figure_title label: Fig. 9. Cyclic voltammetry curves (CVs) of the PEG\u2082\u2080\u2080\u2080-b-(PT""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,6,image,,"[208, 563, 596, 994]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
9,7,image,,"[615, 563, 1003, 993]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
9,8,image,,"[208, 1015, 598, 1444]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
9,9,image,,"[615, 1013, 1003, 1444]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
9,10,figure_title,"Fig. 10. The FE-SEM images of PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a and b), and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (c and d) electrospun nanofibers at different magnifications.","[159, 1462, 1050, 1482]",figure_caption,0.92,"[""figure_title label: Fig. 10. The FE-SEM images of PEG $ _{2000} $-b-(PTh) $ _{4}""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
10,0,number,186,"[64, 94, 90, 110]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
10,1,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[432, 92, 740, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
10,2,figure_title,Table 2,"[62, 129, 113, 147]",table_caption,0.9,"[""table prefix matched: Table 2""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
10,3,figure_title,Mechanical properties of PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers (n = 3).,"[61, 139, 707, 166]",figure_caption,0.85,"[""figure_title label: Mechanical properties of PEG $ _{2000} $-b-(PTh) $ _{4} $/PC""]",figure_caption,0.85,,legend_like,none,True,True
10,4,table,<table><tr><td>Sample</td><td>Young&#x27;s modulus (MPa)</td><td>Tensile strength (MPa)</td><td>Elongation at break (%)</td></tr><tr><td>PEG $ _{2000} $-b-(Th) $ _{4} $/PCL</td><td>121 $ \pm $ 4.37</,"[65, 164, 1107, 242]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
10,5,figure_title,Table 3,"[118, 282, 171, 299]",table_caption,0.9,"[""table prefix matched: Table 3""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
10,6,figure_title,The electrical properties of the samples.,"[118, 299, 368, 319]",figure_caption_candidate,0.85,"[""figure_title label: The electrical properties of the samples.""]",figure_caption,0.85,,unknown_like,none,False,False
10,7,table,<table><tr><td>Sample</td><td>Volume specific resistivity ( $ \rho $; $ \Omega $ cm)</td><td>Electrical conductivity ( $ \sigma $; S cm $ ^{-1} $)</td></tr><tr><td>PTh</td><td>1.31</td><td>0.76</td><,"[122, 321, 1051, 445]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,,unknown_like,none,True,False
10,8,vision_footnote, $ ^{a} $ Electrospun nanofibers were fabricated as given in experimental section.,"[130, 448, 595, 469]",footnote,0.7,"[""vision_footnote label: $ ^{a} $ Electrospun nanofibers were fabricated as given in ""]",footnote,0.7,,unknown_like,affiliation_marker,True,True
10,9,text,"calculated to be $ 127 \pm 2.8^\circ $, $ 85 \pm 2.2^\circ $ and $ 79 \pm 2.4^\circ $, respectively.","[61, 503, 562, 526]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,10,paragraph_title,3.4.5. In vitro degradability,"[61, 548, 273, 569]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.4.5. In vitro degradability""]",sub_subsection_heading,0.85,body_zone,unknown_like,heading_numbered,True,True
10,11,text,"For clinical applications, structural and chemical degradation of scaffolds are pivotal parameters to provide temporary support of tissue growth and subsequently allow for integration of formed neo-ti","[59, 569, 574, 741]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,12,text,,"[597, 503, 1110, 628]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,,unknown_like,empty,True,True
10,13,text,"As shown in Fig. 13, both PEG $ _{2000-b} $-(PTh) $ _{4} $/PCL and PEG $ _{6000-b} $-(PTh) $ _{4} $/PCL electrospun nanofibers have a fast mass loss up to fourth week with a linear degradation trend, ","[597, 630, 1111, 757]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
10,14,chart,,"[64, 773, 570, 1209]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
10,15,figure_title,Fig. 11. The stressstrain curves of $ PEG_{2000}-b-(PTh)_{4}/PCL $ (a) and $ PEG_{6000}-b-(PTh)_{4}/PCL $ (b) electrospun nanofibers.,"[60, 1226, 573, 1264]",figure_caption,0.92,"[""figure_title label: Fig. 11. The stress\u2013strain curves of $ PEG_{2000}-b-(PTh)_{""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
10,16,chart,,"[601, 810, 1105, 1211]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
10,17,figure_title,Fig. 13. Degradation profiles of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (b) electrospun nanofibers in PBS.,"[597, 1226, 1109, 1264]",figure_caption,0.92,"[""figure_title label: Fig. 13. Degradation profiles of the PEG $ _{2000} $-b-(PTh)""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
10,18,figure_title,(a),"[259, 1305, 287, 1327]",figure_inner_text,0.9,"[""panel label / figure inner text: (a)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,19,figure_title,(b),"[483, 1305, 510, 1327]",figure_inner_text,0.9,"[""panel label / figure inner text: (b)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,20,figure_title,(c),"[705, 1305, 733, 1327]",figure_inner_text,0.9,"[""panel label / figure inner text: (c)""]",figure_inner_text,0.9,display_zone,legend_like,panel_label,True,True
10,21,image,,"[256, 1355, 467, 1456]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
10,22,image,,"[480, 1352, 691, 1454]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
10,23,image,,"[702, 1347, 914, 1454]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
10,24,figure_title,"Fig. 12. The Photographs of water drops on pure PCL (a), PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (b) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (c) electrospun nanofibers.","[178, 1471, 989, 1492]",figure_caption,0.92,"[""figure_title label: Fig. 12. The Photographs of water drops on pure PCL (a), PEG""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
11,0,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[452, 92, 759, 111]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,none,False,False
11,1,number,187,"[1102, 93, 1128, 110]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
11,2,text,"PCL sample. The mass loss for PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers were found to be 31.2, and 33.5 wt%, respectively at sixth week.","[79, 128, 590, 191]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
11,3,text,"The in vitro degradability of the electrospun nanofibers was further evaluated by means of FE-SEM observation. As seen in FE-SEM images (Fig. 14), both PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _","[78, 193, 591, 298]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,4,paragraph_title,3.5. Biocompatibility,"[82, 338, 242, 359]",subsection_heading,0.85,"[""paragraph_title label with numbering: 3.5. Biocompatibility""]",subsection_heading,0.85,body_zone,unknown_like,heading_numbered,True,True
11,5,text,"The biocompatibility of any material is the first and fundamental requirement for scaffolding in part due to its direct influence on cells attachment, proliferation, migration, differentiation, and ne","[79, 379, 591, 570]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
11,6,chart,,"[655, 131, 1090, 509]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
11,7,image,,"[209, 588, 595, 1019]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
11,8,figure_title,Fig. 15. In vitro cytotoxic effects of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (b) electrospun nanofibers on human osteoblast MG-63 cells (c: negative con,"[616, 522, 1129, 559]",figure_caption,0.92,"[""figure_title label: Fig. 15. In vitro cytotoxic effects of the PEG $ _{2000} $-b""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
11,9,image,,"[615, 588, 1004, 1018]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
11,10,image,,"[208, 1037, 595, 1469]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
11,11,image,,"[615, 1039, 1003, 1469]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
11,12,figure_title,Fig. 14. The FE-SEM images of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (top) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (bottom) electrospun nanofibers at different magnifications after 15 days soaking ,"[78, 1489, 1126, 1509]",figure_caption,0.92,"[""figure_title label: Fig. 14. The FE-SEM images of the PEG $ _{2000} $-b-(PTh) $ ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
12,0,chart,,"[64, 88, 564, 509]",media_asset,0.85,"[""media label: chart""]",media_asset,0.85,,unknown_like,empty,True,True
12,1,figure_title,Fig. 16. The human osteoblast MG-63 cells growth performances of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (b) electrospun nanofibers (c: negative control).,"[59, 530, 570, 568]",figure_caption,0.92,"[""figure_title label: Fig. 16. The human osteoblast MG-63 cells growth performance""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
12,2,text,"MTT assay, respectively as discussed in the following sections.","[597, 129, 1076, 151]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
12,3,paragraph_title,3.5.1. Cytotoxic effects of the nanofibers,"[599, 174, 902, 194]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.5.1. Cytotoxic effects of the nanofibers""]",sub_subsection_heading,0.85,body_zone,unknown_like,heading_numbered,True,True
12,4,text,The potential cytotoxic effects of the fabricated scaffolds on human osteoblast MG-63 cells were evaluated by means of the MTT assay and the results obtained are summarized in Fig. 15. As can be seen ,"[597, 195, 1111, 322]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
12,5,paragraph_title,3.5.2. Cell growth assay,"[600, 343, 786, 364]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.5.2. Cell growth assay""]",sub_subsection_heading,0.85,body_zone,unknown_like,heading_numbered,True,True
12,6,text,The cell growth performances of the fabricated scaffolds was investigated at an initial seeding density of $ 1 \times 10^5 $ cells per $ cm^2 $ using the human osteoblast MG-63 cells as shown in Fig,"[597, 367, 1112, 577]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,unknown_like,none,True,True
12,7,image,,"[189, 604, 579, 1038]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
12,8,image,,"[188, 1048, 580, 1480]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
12,9,image,,"[589, 604, 982, 1038]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
12,10,image,,"[590, 1050, 982, 1480]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,,unknown_like,empty,True,True
12,11,figure_title,Fig. 17. The FE-SEM images of human osteoblast MG-63 cells on PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (top) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (bottom) electrospun nanofibers at different magnifica,"[60, 1499, 1108, 1518]",figure_caption,0.92,"[""figure_title label: Fig. 17. The FE-SEM images of human osteoblast MG-63 cells o""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
13,0,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[452, 93, 758, 111]",reference_item,0.9,"[""header label""]",noise,0.9,reference_zone,unknown_like,none,True,True
13,1,number,189,"[1103, 94, 1128, 109]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,2,text,"7.12 ± 0.38 at the end of the cell culture period. In addition, according to results, in comparison with negative control (expanded by a factor of 6.77 ± 0.41 at seventh day of culture period) both fa","[79, 128, 591, 255]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,3,paragraph_title,3.5.3. Cell morphology study,"[81, 277, 302, 297]",sub_subsection_heading,0.85,"[""paragraph_title label with numbering: 3.5.3. Cell morphology study""]",sub_subsection_heading,0.85,body_zone,body_like,heading_numbered,True,True
13,4,text,The human osteoblast MG-63 cells morphologies on fabricated PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers were investigated using FE-SEM as shown,"[79, 297, 590, 405]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,5,paragraph_title,4. Conclusion,"[80, 426, 200, 445]",section_heading,0.85,"[""paragraph_title label with numbering: 4. Conclusion""]",section_heading,0.85,body_zone,body_like,heading_numbered,True,True
13,6,text,The design and fabrication of two novel nanofibrous electrically conductive scaffolds using electrospinning technique from AB₄ mikoarm H-shaped poly(ethylene glycol)s-modified polythiophene [PEGs-b-(P,"[78, 467, 592, 739]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,7,text,"The fabricated PEG₂₀₀₀-b-(PTh)₄/PCL and PEG₂₀₀₀-b-(PTh)₄/PCL electrospun nanofibers exhibited uniform and 3D interconnected pore structure, with average diameters in the size range of 100 ± 20 nm with","[79, 739, 592, 990]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,8,text,"In conclusion, it would be expected that more studies focus on design and tailoring conducting nanofibrous scaffolds with improved biological and physicochemical characteristics including biocompatibi","[79, 991, 591, 1159]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,9,paragraph_title,Acknowledgements,"[81, 1179, 243, 1199]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements""]",sub_subsection_heading,0.6,body_zone,body_like,short_fragment,True,True
13,10,text,"The authors are grateful to the Payame Noor University, University of Urmia, and Research Center for Pharmaceutical Nanotechnology, Tabriz University of Medical Sciences for partial financial support ","[78, 1221, 591, 1348]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,11,paragraph_title,References,"[82, 1369, 174, 1390]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,unknown_like,short_fragment,True,True
13,12,reference_content,"[1] F.M. Chen, X. Liu, Advancing biomaterials of human origin for tissue engineering, Prog. Polym. Sci. 53 (2016) 86168.","[88, 1408, 587, 1440]",reference_item,0.85,"[""reference content label: [1] F.M. Chen, X. Liu, Advancing biomaterials of human origi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,13,reference_content,"[2] S. Kim, H. Von-Recum, Endothelial stem cells and precursors for tissue engineering: cell source, differentiation, selection, and application, Tissue Eng. B 14 (2008) 133147.","[90, 1441, 588, 1487]",reference_item,0.85,"[""reference content label: [2] S. Kim, H. Von-Recum, Endothelial stem cells and precurs""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,14,reference_content,"[3] E.A. Makris, A.H. Gomoll, K.N. Malizos, J.C. Hu, K.A. Athanasiou, Repair and tissue engineering techniques for articular cartilage, Nat. Rev. Rheumatol. 11 (2015) 2134.","[625, 130, 1127, 177]",reference_item,0.85,"[""reference content label: [3] E.A. Makris, A.H. Gomoll, K.N. Malizos, J.C. Hu, K.A. At""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,15,reference_content,"[4] S. Hosseinzadeh, S.M. Rezayat, E. Vashegani-Farahani, M. Mahmoudifard, S. Zamanlui, M. Soleimani, Nanofibrous hydrogel with stable electrical conductivity for biological applications, Polymer 97 (","[626, 179, 1127, 226]",reference_item,0.85,"[""reference content label: [4] S. Hosseinzadeh, S.M. Rezayat, E. Vashegani-Farahani, M.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,16,reference_content,"[5] E. Tziampazis, A. Sambanis, Tissue engineering of a bioartificial pancreas: modeling the cell environment and device function, Biotechnol. Prog. 11 (1995) 1526.","[627, 228, 1127, 273]",reference_item,0.85,"[""reference content label: [5] E. Tziampazis, A. Sambanis, Tissue engineering of a bioa""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,17,reference_content,"[6] S.J. Cho, S.M. Jung, M. Kang, H.S. Shin, J.H. Youk, Preparation of hydrophilic PCL nanofiber scaffolds via electrospinning of PCL/PVP-b-PCL block copolymers for enhanced cell biocompatibility, Pol","[628, 274, 1127, 321]",reference_item,0.85,"[""reference content label: [6] S.J. Cho, S.M. Jung, M. Kang, H.S. Shin, J.H. Youk, Prep""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,18,reference_content,"[7] A.I. Cañas, J.P. Delgado, C. Gartner, Biocompatible scaffolds composed of chemically crosslinked chitosan and gelatin for tissue engineering, J. Appl. Polym. Sci. 133 (2016) 43814.","[627, 322, 1128, 368]",reference_item,0.85,"[""reference content label: [7] A.I. Ca\u00f1as, J.P. Delgado, C. Gartner, Biocompatible scaf""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,19,reference_content,"[8] E. Rossi, I. Gerges, A. Tocchio, M. Tamplenizza, P. Aprile, C. Recordati, F. Martello, I. Martin, P. Milani, C. Lenardi, Biologically and mechanically driven design of an RGD-mimetic macroporous f","[627, 370, 1127, 433]",reference_item,0.85,"[""reference content label: [8] E. Rossi, I. Gerges, A. Tocchio, M. Tamplenizza, P. Apri""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,20,reference_content,"[9] A. Mokhtarzadeh, A. Alibabahshi, M. Hejazi, Y. Omidi, J. Ezzati, Nazhad Dolatabadi, Bacterial-derived biopolymers: advanced natural nanomaterials for drug delivery and tissue engineering, Trend. A","[625, 434, 1128, 497]",reference_item,0.85,"[""reference content label: [9] A. Mokhtarzadeh, A. Alibabahshi, M. Hejazi, Y. Omidi, J.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,21,reference_content,"[10] S. Zaretsky, C.C.G. Scully, A.J. Lough, A.K. Yudin, Exocyclic control of turn induction in macrocyclic peptide scaffolds, Chem. Eur. J. 19 (2013) 1766817672.","[620, 498, 1128, 544]",reference_item,0.85,"[""reference content label: [10] S. Zaretsky, C.C.G. Scully, A.J. Lough, A.K. Yudin, Exo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,22,reference_content,"[11] I.C. Liao, F.T. Moutos, B.T. Estes, X. Zhao, F. Guilak, Composite three-dimensional woven scaffolds with interpenetrating network hydrogels to create functional synthetic articular cartilage, Adv","[620, 545, 1128, 607]",reference_item,0.85,"[""reference content label: [11] I.C. Liao, F.T. Moutos, B.T. Estes, X. Zhao, F. Guilak,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,23,reference_content,"[12] A. Rogina, L. Pribolsan, A. Hanzek, L. Gómez-Estrada, G. Gallego Ferrer, I. Marijanović, M. Ivanković, H. Ivanković, Macroporous poly(lactic acid) construct supporting the osteoinductive porous c","[620, 609, 1128, 671]",reference_item,0.85,"[""reference content label: [12] A. Rogina, L. Pribolsan, A. Hanzek, L. G\u00f3mez-Estrada, G""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,24,reference_content,"[13] K.R. Robinson, The responses of cells to electrical fields: a review, J. Cell Biol. 101 (1985) 20232037.","[620, 673, 1127, 703]",reference_item,0.85,"[""reference content label: [13] K.R. Robinson, The responses of cells to electrical fie""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,25,reference_content,"[14] S. Rangarajan, L. Madden, N. Bursac, Use of flow, electrical, and mechanical stimulation to promote engineering of striated muscles, Ann. Biomed. Eng. 42 (2014) 13911405.","[621, 705, 1127, 751]",reference_item,0.85,"[""reference content label: [14] S. Rangarajan, L. Madden, N. Bursac, Use of flow, elect""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,26,reference_content,"[15] A. Brevet, E. Pinto, J. Peacock, F.E. Stockdale, Myosin synthesis increased by electrical stimulation of skeletal muscle cell cultures, Science 193 (1976) 11521154.","[621, 754, 1128, 799]",reference_item,0.85,"[""reference content label: [15] A. Brevet, E. Pinto, J. Peacock, F.E. Stockdale, Myosin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,27,reference_content,"[16] C. Agudelo, M. Packirisamy, A. Geitmann, Influence of electric fields and conductivity on pollen tube growth assessed via electrical lab-on-chip, Sci. Rep. 6 (2016) 19812.","[620, 802, 1128, 847]",reference_item,0.85,"[""reference content label: [16] C. Agudelo, M. Packirisamy, A. Geitmann, Influence of e""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,28,reference_content,"[17] J. Li, F. Lin, Microfluidic devices for studying chemotaxis and electrotaxis, Trends Cell Biol. 21 (2011) 489497.","[621, 849, 1128, 878]",reference_item,0.85,"[""reference content label: [17] J. Li, F. Lin, Microfluidic devices for studying chemot""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,29,reference_content,"[18] D. landolo, A. Ravichandran, X. Liu, F. Wen, J.K.Y. Chan, M. Berggren, S.H. Teoh, D.T. Simon, Development and characterization of organic electronic scaffolds for bone tissue engineering, Adv. He","[621, 880, 1128, 928]",reference_item,0.85,"[""reference content label: [18] D. landolo, A. Ravichandran, X. Liu, F. Wen, J.K.Y. Cha""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,30,reference_content,"[19] F. Cavallo, Y. Huang, E.W. Dent, J.C. Williams, M.G. Lagally, Neurite guidance and three-dimensional confinement via compliant semiconductor scaffolds, ACS Nano 8 (2014) 1221912227.","[620, 929, 1128, 975]",reference_item,0.85,"[""reference content label: [19] F. Cavallo, Y. Huang, E.W. Dent, J.C. Williams, M.G. La""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,31,reference_content,"[20] A. Gelmi, A. Cieslar-Pobuda, E. de Muinck, M. Los, M. Rafat, E.W.H. Jager, Direct mechanical stimulation of stem cells: a beating electromechanically active scaffold for cardiac tissue engineerin","[620, 977, 1128, 1039]",reference_item,0.85,"[""reference content label: [20] A. Gelmi, A. Cieslar-Pobuda, E. de Muinck, M. Los, M. R""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,32,reference_content,"[21] M. Yazdimamaghani, M. Razavi, M. Mozafari, D. Vashaee, H. Kotturi, L. Tayebi, Biomineralization and biocompatibility studies of bone conductive scaffolds containing poly(3,4-ethylenedioxythiophen","[620, 1040, 1127, 1104]",reference_item,0.85,"[""reference content label: [21] M. Yazdimamaghani, M. Razavi, M. Mozafari, D. Vashaee, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,33,reference_content,"[22] R. Sarvari, B. Massoumi, M. Jaymand, Y. Beygi-Khosrowshahi, M. Abdollahi, Novel three-dimensional, conducting, biocompatible, porous, and elastic polyaniline-based scaffolds for regenerative ther","[620, 1105, 1128, 1165]",reference_item,0.85,"[""reference content label: [22] R. Sarvari, B. Massoumi, M. Jaymand, Y. Beygi-Khosrowsh""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,34,reference_content,"[23] M. Jaymand, R. Sarvari, M. Massoumi, M. Eskandani, Y. Beygi-Khosrowshahi, Development of novel electrically conductive scaffold based on hyperbranched polyester and polythiophene for tissue engin","[620, 1167, 1128, 1230]",reference_item,0.85,"[""reference content label: [23] M. Jaymand, R. Sarvari, M. Massoumi, M. Eskandani, Y. B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,35,reference_content,"[24] M. Jaymand, M. Hatamzadeh, Y. Omidi, Modification of polythiophene by the incorporation of processable polymeric chains: recent progress in synthesis and applications, Prog. Polym. Sci. 47 (2015)","[620, 1231, 1127, 1278]",reference_item,0.85,"[""reference content label: [24] M. Jaymand, M. Hatamzadeh, Y. Omidi, Modification of po""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,36,reference_content,"[25] I. Rajzer, M. Rom, E. Menaszek, P. Pasierb, Conductive PANI patterns on electrospun PCL/gelatin scaffolds modified with bioactive particles for bone tissue engineering, Mater. Lett. 138 (2015) 60","[621, 1279, 1128, 1326]",reference_item,0.85,"[""reference content label: [25] I. Rajzer, M. Rom, E. Menaszek, P. Pasierb, Conductive ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,37,reference_content,"[26] X. Wang, X. Gu, C. Yuan, S. Chen, P. Zhang, T. Zhang, J. Yao, F. Chen, G. Chen, Evaluation of biocompatibility of polypyrrole in vitro and in vivo, J. Biomed. Mater. Res. A 68 (2004) 411422.","[621, 1327, 1127, 1374]",reference_item,0.85,"[""reference content label: [26] X. Wang, X. Gu, C. Yuan, S. Chen, P. Zhang, T. Zhang, J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,38,reference_content,"[27] L. Ghasemi-Mobarakeh, M.P. Prabhakaran, M. Morshed, M.H. Nasr-Esfahani, H. Baharvand, S. Kiani, S.S. Al-Deyab, S. Ramakrishna, Application of conductive polymers, scaffolds and electrical stimula","[620, 1375, 1127, 1438]",reference_item,0.85,"[""reference content label: [27] L. Ghasemi-Mobarakeh, M.P. Prabhakaran, M. Morshed, M.H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
13,39,reference_content,"[28] R.J. Wade, J.A. Burdick, Advances in nanofibrous scaffolds for biomedical applications: from electrospinning to self-assembly, Nano Today 9 (2014) 722742.","[620, 1439, 1128, 1484]",reference_item,0.85,"[""reference content label: [28] R.J. Wade, J.A. Burdick, Advances in nanofibrous scaffo""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,0,number,190,"[64, 94, 90, 109]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
14,1,header,M. Hatamzadeh et al. / Polymer 107 (2016) 177190,"[433, 94, 739, 111]",reference_item,0.9,"[""header label""]",noise,0.9,reference_zone,unknown_like,none,True,True
14,2,reference_content,"[29] L.S. Nair, S. Bhattacharyya, C.T. Laurencin, Development of novel tissue engineering scaffolds via electrospinning, Expert. Opin. Biol. Th 4 (2004) 659668.","[64, 131, 569, 163]",reference_item,0.85,"[""reference content label: [29] L.S. Nair, S. Bhattacharyya, C.T. Laurencin, Developmen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,3,reference_content,"[30] B. Massoumi, M. Jaymand, Chemical and electrochemical grafting of polythiophene onto poly(methyl methacrylate), and its electrospun nanofibers with gelatin, J. Mater. Sci. Mater. Electron (2016),","[65, 163, 569, 225]",reference_item,0.85,"[""reference content label: [30] B. Massoumi, M. Jaymand, Chemical and electrochemical g""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,4,reference_content,"[31] B. Massoumi, R. Massoumi, N. Aali, M. Jaymand, Novel nanostructured star-shaped polythiophene, and its electrospun nanofibers with gelatin, J. Polym. Res. 23 (2016) 136.","[65, 227, 569, 273]",reference_item,0.85,"[""reference content label: [31] B. Massoumi, R. Massoumi, N. Aali, M. Jaymand, Novel na""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,5,reference_content,"[32] B. Massoumi, N. Aali, M. Jaymand, Novel nanostructured star-shaped poly-aniline derivatives and their electrospun nanofibers with gelatin, RSC Adv. 5 (2015) 107680107693.","[65, 275, 569, 320]",reference_item,0.85,"[""reference content label: [32] B. Massoumi, N. Aali, M. Jaymand, Novel nanostructured ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,6,reference_content,"[33] T. Jiang, E.J. Carbone, K.W.H. Lo, C.T. Laurencin, Electrospinning of polymer nanofibers for tissue regeneration, Prog. Polym. Sci. 46 (2015) 124.","[65, 322, 569, 354]",reference_item,0.85,"[""reference content label: [33] T. Jiang, E.J. Carbone, K.W.H. Lo, C.T. Laurencin, Elec""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,7,reference_content,"[34] B. Massoumi, S. Davtalab, M. Jaymand, A.A. Entezami, AB₂ Y-shaped miktoarm star conductive polyaniline-modified poly(ethylene glycol) and its electrospun nanofiber blend with poly(ε-caprolactone)","[64, 355, 569, 416]",reference_item,0.85,"[""reference content label: [34] B. Massoumi, S. Davtalab, M. Jaymand, A.A. Entezami, AB""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,8,reference_content,"[35] B. Massoumi, N. Poorgholy, M. Jaymand, Multistimuli responsive polymeric nanosystems for theranostic applications, Int. J. Polym. Mater. Polym. Biomater. 1 (2017) 3847.","[65, 418, 568, 465]",reference_item,0.85,"[""reference content label: [35] B. Massoumi, N. Poorgholy, M. Jaymand, Multistimuli res""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,9,reference_content,"[36] J.G. De Castro, B.V.M. Rodrigues, R. Ricci, M.M. Costa, A.F.C. Ribeiro, F.R. Marciano, A.O. Lobo, Designing a novel nanocomposite for bone tissue engineering using electrospun conductive PBAT/pol","[65, 467, 569, 544]",reference_item,0.85,"[""reference content label: [36] J.G. De Castro, B.V.M. Rodrigues, R. Ricci, M.M. Costa,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,10,reference_content,"[37] S.K. Misra, T.I. Ansari, S.P. Valappil, D. Mohn, S.E. Philip, W.J. Stark, I. Roy, J.C. Knowles, V. Salih, A.R. Boccaccini, Poly(3-hydroxybutyrate) multifunctional composite scaffolds for tissue e","[65, 545, 568, 609]",reference_item,0.85,"[""reference content label: [37] S.K. Misra, T.I. Ansari, S.P. Valappil, D. Mohn, S.E. P""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,11,reference_content,"[38] M. Hatamzadeh, M. Jaymand, Synthesis and characterization of polystyrene-graft-polythiophene via a combination of atom transfer radical polymerization and Grignard reaction, RSC Adv. 4 (2014) 167","[65, 610, 568, 656]",reference_item,0.85,"[""reference content label: [38] M. Hatamzadeh, M. Jaymand, Synthesis and characterizati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,12,reference_content,"[39] B. Massoumi, M. Javid, M. Hatamzadeh, M. Jaymand, Polystyrene-graft-poly(2,2'-bithiophene): synthesis, characterization, and properties, J. Mater. Sci. Mater. Electron. 26 (2015) 28872896.","[65, 658, 569, 703]",reference_item,0.85,"[""reference content label: [39] B. Massoumi, M. Javid, M. Hatamzadeh, M. Jaymand, Polys""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,13,reference_content,"[40] C. Gaut, K. Sugaya, Critical review on the physical and mechanical factors involved in tissue engineering of cartilage, Regen. Med. 10 (2015) 665679.","[65, 706, 569, 736]",reference_item,0.85,"[""reference content label: [40] C. Gaut, K. Sugaya, Critical review on the physical and""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,14,reference_content,"[41] J.A. Panadero, S. Lanceros-Mendez, J.L.G. Ribelles, Differentiation of mesenchymal stem cells for cartilage tissue engineering: individual and synergetic effects of three-dimensional environment ","[601, 131, 1107, 194]",reference_item,0.85,"[""reference content label: [41] J.A. Panadero, S. Lanceros-Mendez, J.L.G. Ribelles, Dif""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,15,reference_content,"[42] J.G. Hardy, J.Y. Lee, C.E. Schmidt, Biomimetic conducting polymer-based tissue scaffolds, Curr. Opin. Biotechnol. 24 (2013) 847854.","[602, 195, 1107, 226]",reference_item,0.85,"[""reference content label: [42] J.G. Hardy, J.Y. Lee, C.E. Schmidt, Biomimetic conducti""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,16,reference_content,"[43] H. Cho, S. Balaji, A.Q. Sheikh, J.R. Hurley, Y.F. Tian, J.H. Collier, T.M. Crombleholme, D.A. Narmoneva, Regulation of endothelial cell activation and angiogenesis by injectable peptide nanofiber","[601, 227, 1107, 289]",reference_item,0.85,"[""reference content label: [43] H. Cho, S. Balaji, A.Q. Sheikh, J.R. Hurley, Y.F. Tian,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,17,reference_content,"[44] J. Lewandowska-Lańcucka, S. Fiejdasz, Ł. Rodzik, A. Łatkiewicz, M. Nowakowska, Novel hybrid materials for preparation of bone tissue engineering scaffolds, J. Mater. Sci. Mater. Med. 26 (2015) 23","[601, 290, 1107, 337]",reference_item,0.85,"[""reference content label: [44] J. Lewandowska-La\u0144cucka, S. Fiejdasz, \u0141. Rodzik, A. \u0141at""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,18,reference_content,"[45] Y. Zhao, M. He, L. Zhao, S. Wang, Y. Li, L. Gan, M. Li, L. Xu, P.R. Chang, D.P. Anderson, Y. Chen, Epichlorohydrin-cross-linked hydroxyethyl cellulose/soy protein isolate composite films as bioco","[602, 338, 1108, 417]",reference_item,0.85,"[""reference content label: [45] Y. Zhao, M. He, L. Zhao, S. Wang, Y. Li, L. Gan, M. Li,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,19,reference_content,"[46] Y. Wu, L. Wang, B. Guo, Y. Shao, P.X. Ma, Electroactive biodegradable polyurethane significantly enhanced Schwann cells myelin gene expression and neurotrophin secretion for peripheral nerve tiss","[601, 418, 1107, 481]",reference_item,0.85,"[""reference content label: [46] Y. Wu, L. Wang, B. Guo, Y. Shao, P.X. Ma, Electroactive""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,20,reference_content,"[47] Y. Eitan, U. Sarig, N. Dahan, M. MacHluf, Acellular cardiac extracellular matrix as a scaffold for tissue engineering: in vitro cell support, remodeling, and biocompatibility, Tissue Eng. C 16 (2","[601, 482, 1108, 529]",reference_item,0.85,"[""reference content label: [47] Y. Eitan, U. Sarig, N. Dahan, M. MacHluf, Acellular car""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,21,reference_content,"[48] C.J. Bettinger, J.P. Bruggeman, A. Misra, J.T. Borenstein, R. Langer, Biocompatibility of biodegradable semiconducting melanin films for nerve tissue engineering, Biomaterials 30 (2009) 30503057","[601, 531, 1107, 576]",reference_item,0.85,"[""reference content label: [48] C.J. Bettinger, J.P. Bruggeman, A. Misra, J.T. Borenste""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,22,reference_content,"[49] B. Sitharaman, X. Shi, X.F. Walboomers, H. Liao, V. Cuijpers, L.J. Wilson, A.G. Mikos, J.A. Jansen, In vivo biocompatibility of ultra-short single-walled carbon nanotube/biodegradable polymer nan","[601, 578, 1107, 640]",reference_item,0.85,"[""reference content label: [49] B. Sitharaman, X. Shi, X.F. Walboomers, H. Liao, V. Cui""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,23,reference_content,"[50] B. Massoumi, M. Ramezani, M. Jaymand, M. Ahmadinejad, Multi-walled carbon nanotubes-g-[poly(ethylene glycol)-b-poly(ε-caprolactone)]: synthesis, characterization, and properties, J. Polym. Res. 2","[601, 641, 1107, 688]",reference_item,0.85,"[""reference content label: [50] B. Massoumi, M. Ramezani, M. Jaymand, M. Ahmadinejad, M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
14,24,reference_content,"[51] E.A. Rainbolt, K.E. Washington, M.C. Biewer, M.C. Stefan, Recent developments in micellar drug carriers featuring substituted poly(ε-caprolactone)s, Polym. Chem. 6 (2015) 23692381.","[602, 690, 1107, 735]",reference_item,0.85,"[""reference content label: [51] E.A. Rainbolt, K.E. Washington, M.C. Biewer, M.C. Stefa""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_bracket,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header_image [83, 141, 206, 252] non_body_insert 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False False
3 1 1 header Polymer 107 (2016) 177–190 [516, 91, 694, 112] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
4 1 2 header ELSEVIER [85, 257, 206, 281] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
5 1 3 header Contents lists available at ScienceDirect [449, 144, 769, 166] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
6 1 4 header Polymer [552, 193, 667, 225] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like short_fragment False False
7 1 5 header journal homepage: www.elsevier.com/locate/polymer [350, 256, 865, 278] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
8 1 6 header_image [1011, 135, 1126, 275] non_body_insert 0.2 ["unrecognized label 'header_image'"] unknown_structural 0.2 frontmatter_main_zone support_like empty False False
9 1 7 doc_title Novel nanofibrous electrically conductive scaffolds based on poly(ethylene glycol)s-modified polythiophene and poly(ε-caprolactone) for tissue engineering applications [79, 350, 866, 455] paper_title 0.6 ["page-1 frontmatter title guard: Novel nanofibrous electrically conductive scaffolds based on"] paper_title 0.6 frontmatter_main_zone support_like none True True
10 1 8 image [1007, 353, 1128, 403] media_asset 0.85 ["media label: image"] media_asset 0.85 frontmatter_main_zone support_like empty True True
11 1 9 text Maryam Hatamzadeh $ {}^{a,b} $, Peyman Najafi-Moghadam $ {}^{a} $, Ali Baradar-Khoshfetrat $ {}^{c} $, Mehdi Jaymand $ {}^{d,*} $, Bakhshali Massoumi $ {}^{b,**} $ [80, 469, 898, 523] authors 0.8 ["page-1 zone author_zone: Maryam Hatamzadeh $ {}^{a,b} $, Peyman Najafi-Moghadam $ {"] authors 0.8 frontmatter_main_zone support_like none True True
12 1 10 text $ ^{a} $ Department of Organic Chemistry, Faculty of Chemistry, University of Urmia, P.O. Box: 57561-51818, Urmia, Iran [79, 533, 755, 552] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{a} $ Department of Organic Chemistry, Faculty of Chemist"] affiliation 0.8 frontmatter_main_zone support_like affiliation_marker True True
13 1 11 text $ ^{b} $ Department of Chemistry, Payame Noor University, P.O. BOX: 19395-3697, Tehran, Iran [80, 551, 608, 569] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{b} $ Department of Chemistry, Payame Noor University, P."] affiliation 0.8 frontmatter_main_zone support_like affiliation_marker True True
14 1 12 text $ ^{d} $ Research Center for Pharmaceutical Nanotechnology, Tabriz University of Medical Sciences, P.O. BOX: 51656-65811, Tabriz, Iran [80, 584, 846, 603] affiliation 0.8 ["page-1 zone affiliation_zone: $ ^{d} $ Research Center for Pharmaceutical Nanotechnology, "] affiliation 0.8 frontmatter_main_zone support_like affiliation_marker True True
15 1 13 paragraph_title ARTICLE INFO [80, 648, 279, 669] frontmatter_noise 0.5 ["unnumbered paragraph_title on page 1 outside title zone: ARTICLE INFO"] section_heading 0.5 frontmatter_main_zone support_like short_fragment False False
16 1 14 text Article history: Received 24 August 2016 Received in revised form 27 October 2016 Accepted 8 November 2016 [81, 686, 257, 776] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Article history:\nReceived 24 August 2016\nReceived in revised"] frontmatter_noise 0.8 body_zone body_like none False False
17 1 15 text Keywords: Electrically conductive scaffold Biocompatibility Tissue engineering [81, 813, 276, 885] frontmatter_noise 0.7 ["frontmatter noise text: Keywords:\nElectrically conductive scaffold\nBiocompatibility\n"] frontmatter_noise 0.7 body_zone body_like none False False
18 1 16 paragraph_title A B S T R A C T [410, 648, 554, 669] section_heading 0.5 ["unnumbered paragraph_title on page 1 outside title zone: A B S T R A C T"] section_heading 0.5 body_zone body_like short_fragment True True
19 1 17 abstract This study explores the fabrication of electrically conductive nanofibers using electrospinning technique from AB₄ mikoarm H-shaped poly(ethylene glycol)s-modified polythiophene [PEGs-b-(PTH)₄] co-pol [406, 686, 1129, 997] body_paragraph 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 body_zone body_like none True True
20 1 18 text © 2016 Elsevier Ltd. All rights reserved. [848, 995, 1127, 1015] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: \u00a9 2016 Elsevier Ltd. All rights reserved."] frontmatter_noise 0.8 body_zone body_like none False False
21 1 19 paragraph_title 1. Introduction [82, 1111, 212, 1132] section_heading 0.85 ["paragraph_title label with numbering: 1. Introduction"] section_heading 0.85 body_zone body_like heading_numbered True True
22 1 20 text Tissue engineering (TE) is emerging as a relatively novel interdisciplinary field (combination of engineering, chemistry, biology, and materials sciences) for repair or replacement of failed tissues/o [79, 1153, 591, 1302] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Tissue engineering (TE) is emerging as a relatively novel in"] frontmatter_noise 0.8 body_zone body_like none False False
23 1 21 text [616, 1111, 1129, 1343] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
24 1 22 footnote * Corresponding author. [86, 1347, 248, 1366] footnote 0.7 ["footnote label: * Corresponding author."] footnote 0.7 body_zone body_like none True True
25 1 23 text It is well documented that each cell produces a membrane potential of a few millivolts (mV) to tens of millivolts, which depend on its type, tissue, and degree of differentiation. The electric charact [616, 1342, 1130, 1426] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
26 1 24 footnote ** Corresponding author. [85, 1367, 250, 1383] footnote 0.7 ["footnote label: ** Corresponding author."] footnote 0.7 body_zone body_like none True True
27 1 25 footnote E-mail addresses: m_jaymand@yahoo.com, m.jaymand@gmail.com, jaymandm@tbzmed.ac.ir (M. Jaymand), b_massoumi@pnu.ac.ir, bakhshalim@yahoo.com (B. Massoumi). [79, 1380, 591, 1436] footnote 0.7 ["footnote label: E-mail addresses: m_jaymand@yahoo.com, m.jaymand@gmail.com, "] footnote 0.7 body_zone body_like none True True
28 1 26 footer http://dx.doi.org/10.1016/j.polymer.2016.11.012 0032-3861/© 2016 Elsevier Ltd. All rights reserved. [81, 1453, 400, 1489] noise 0.9 ["footer label"] noise 0.9 body_zone body_like none False False
29 2 0 number 178 [64, 94, 90, 110] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
30 2 1 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [433, 92, 739, 111] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
31 2 2 text fields (EF), direct currents (DC), and ultra-low frequency electromagnetic fields (UL-EMF) comes from the segregation of charges by biological machines such as transporters, pumps, and ion channels wh [59, 129, 573, 379] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
32 2 3 text In this respect, electrically conductive biomaterials composed of an insulating synthetic/semi-synthetic or natural biopolymer and an intrinsically conducting polymer (ICP) have attracted great deal o [59, 380, 573, 673] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
33 2 4 text On the other hand, a suitable scaffold must have a porous structure in order to allow the diffusion of growth factors to cells that resulted in favor cell survival. In this context, the electrospinnin [60, 674, 572, 904] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
34 2 5 text The objective of this research was to fabricate nanofibrous electrically conductive scaffolds using electrospinning technique from AB₄ miktoarm H-shaped PEGs-modified PTh [PEG₂-b-(PTh)₄] copolymers an [58, 904, 573, 1283] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
35 2 6 paragraph_title 2. Experimental [60, 1301, 201, 1323] section_heading 0.85 ["paragraph_title label with numbering: 2. Experimental"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
36 2 7 paragraph_title 2.1. Materials [60, 1343, 171, 1365] subsection_heading 0.85 ["paragraph_title label with numbering: 2.1. Materials"] subsection_heading 0.85 body_zone body_like heading_numbered True True
37 2 8 text Poly(ε-caprolactone) ( $ M_n = 70000-90000 $ g mol $ ^{-1} $), poly(ethylene glycol) ( $ M_n = 2000 $ and 6000 g mol $ ^{-1} $), sodium hydride (NaH), 2-thiopheneacetic acid, N,N-dicyclohexyl carbodii [59, 1384, 572, 1491] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
38 2 9 text [596, 129, 1111, 319] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
39 2 10 paragraph_title 2.2. Synthesis of $ \alpha,\omega $-diepoxy-PEGs [598, 339, 865, 360] subsection_heading 0.85 ["paragraph_title label with numbering: 2.2. Synthesis of $ \\alpha,\\omega $-diepoxy-PEGs"] subsection_heading 0.85 body_zone body_like heading_numbered True True
40 2 11 text In a 250 ml dried three-necked round-bottom flask equipped with condenser, septum, gas inlet/outlet, and a magnetic stirrer, PEG2000 (10.00 g, 5 mmol) was dissolved in dried THF (100 ml). The solution [596, 380, 1110, 756] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
41 2 12 text The $ \alpha,\omega $-diepoxy-PEG $ _{6000} $ was synthesized by the same procedure with the appropriate amounts of PEG $ _{6000} $ (15.00 g; 2.5 mmol), dried THF (150 ml), NaH (144 mg; 6 mmol), and [596, 757, 1110, 843] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
42 2 13 paragraph_title 2.3. Synthesis of PEGs ends-caped tetraol $ [PEGs(OH)_{4}] $ [598, 862, 1007, 884] subsection_heading 0.85 ["paragraph_title label with numbering: 2.3. Synthesis of PEGs ends-caped tetraol $ [PEGs(OH)_{4}] "] subsection_heading 0.85 body_zone body_like heading_numbered True True
43 2 14 text In a typical experiment, a 100 ml round-bottom flask equipped with a condenser, and a magnetic stirrer, was charged with α,ω-diepoxy-PEG₂₀₀₀ (8.00 g, 4 mmol), and sulfuric acid solution (H₂SO₄; 50 ml, [595, 904, 1111, 1242] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
44 2 15 paragraph_title 2.4. Synthesis of thiophene-functionalized PEG₅ AB₄ macromonomers (ThPEGsM) [598, 1259, 988, 1302] subsection_heading 0.85 ["paragraph_title label with numbering: 2.4. Synthesis of thiophene-functionalized PEG\u2085 AB\u2084 macromon"] subsection_heading 0.85 body_zone body_like heading_numbered True True
45 2 16 text A 100 ml three-necked round-bottom flask equipped with condenser, gas inlet/outlet, and a magnetic stirrer, was charged with 2-thiopheneacetic acid (8 mmol, 1.13 g), DCC (10 mmol, 2.07 g), and dried T [596, 1321, 1111, 1491] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
46 3 0 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [452, 92, 759, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
47 3 1 number 179 [1103, 94, 1129, 109] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
48 3 2 text was stirred for another 48 h under an argon atmosphere at room temperature. Afterward, the reaction mixture was filtered using filter paper (Whatman) to remove dicyclohexyl urea salts, and the solvent [79, 130, 593, 256] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
49 3 3 paragraph_title 2.5. Synthesis of miktoarm H-shaped PEGs-b-(PTh) $ _{4} $ [80, 276, 472, 298] subsection_heading 0.85 ["paragraph_title label with numbering: 2.5. Synthesis of miktoarm H-shaped PEGs-b-(PTh) $ _{4} $"] subsection_heading 0.85 body_zone body_like heading_numbered True True
50 3 4 text In a typical experiment, a 250 ml three-necked round-bottom flask equipped with a condenser, dropping funnel, gas inlet/outlet, and a magnetic stirrer, was charged with ThPEG $ _{2000} $M (2.00 g, 1 m [78, 317, 592, 631] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
51 3 5 text Furthermore, the crude product was extracted whit THF in a Soxhlet apparatus for about 24 h, in order to remove any homo-PTh chains. According to our testes, the synthesized $ PEG_{2000}-b-(PTh)_{4} [79, 632, 593, 821] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
52 3 6 paragraph_title 2.6. Fabrication of PEGs-b-(PTh) $ _{4} $/PCL electrospun nanofibers [79, 841, 535, 863] subsection_heading 0.85 ["paragraph_title label with numbering: 2.6. Fabrication of PEGs-b-(PTh) $ _{4} $/PCL electrospun na"] subsection_heading 0.85 body_zone body_like heading_numbered True True
53 3 7 text The PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL nanofibers were prepared by electrospinning of the same volume solutions of the synthesized polymers (dimethylsulfoxid [78, 883, 593, 990] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
54 3 8 paragraph_title 2.7. Biocompatibility experiments [80, 1009, 335, 1030] subsection_heading 0.85 ["paragraph_title label with numbering: 2.7. Biocompatibility experiments"] subsection_heading 0.85 body_zone body_like heading_numbered True True
55 3 9 paragraph_title 2.7.1. Cell culture [80, 1050, 219, 1070] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.7.1. Cell culture"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
56 3 10 text The human osteoblast MG-63 cells were cultured into flasks and kept in a humidified incubator with CO₂ (5%) at 37 °C. Cells were grown (up 70% confluency) in the Dulbecco's modified Eagle's medium (DM [79, 1071, 593, 1199] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
57 3 11 paragraph_title 2.7.2. Cell viability assay [80, 1218, 273, 1239] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.7.2. Cell viability assay"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
58 3 12 text For cytotoxicity study, 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assay was performed as described in our previous works [22,23]. Briefly, 12 well plates were coated well with [77, 1240, 594, 1492] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
59 3 13 text [616, 129, 1128, 190] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
60 3 14 paragraph_title 2.7.3. Cell growth assay [618, 213, 805, 233] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.7.3. Cell growth assay"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
61 3 15 text Cell growth rate was quantified using direct counting by hemocytometer. Briefly, the well plates were coated well with presterilized PEG2000-b-(PTH)4/PCL or PEG6000-b-(PTH)4/PCL electrospun nanofibers [616, 234, 1130, 466] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
62 3 16 paragraph_title 2.7.4. Cell morphology study [618, 485, 841, 505] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 2.7.4. Cell morphology study"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
63 3 17 text The cell attachment performance of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers were analyzed after 24 h of cell culture using FE-SEM. For t [615, 506, 1130, 696] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
64 3 18 paragraph_title 2.8. Characterization [618, 715, 783, 736] subsection_heading 0.85 ["paragraph_title label with numbering: 2.8. Characterization"] subsection_heading 0.85 body_zone body_like heading_numbered True True
65 3 19 text Fourier transform infrared (FTIR) spectra of the synthesized samples were collected on a Shimadzu 8400S FTIR (Shimadzu, Kyoto, Japan) in the range of 4000 to 400 cm⁻¹ with a resolution of 4 cm⁻¹ using [604, 755, 1133, 1492] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
66 4 0 number 180 [64, 94, 89, 109] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
67 4 1 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [433, 92, 739, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
68 4 2 text triplicates. [62, 129, 147, 151] unknown_structural 0.3 ["short text, uncertain role"] unknown_structural 0.3 body_zone body_like short_fragment False True
69 4 3 paragraph_title 3. Results and discussion [61, 171, 272, 192] section_heading 0.85 ["paragraph_title label with numbering: 3. Results and discussion"] section_heading 0.85 body_zone body_like heading_numbered True True
70 4 4 text Motivational designs of polymeric materials for biomedical applications have been developed progressively during the last decade. In this context, the development of electrically conductive biomateria [60, 213, 573, 404] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
71 4 5 paragraph_title 3.1. Synthesis of $ \alpha,\omega $-diepoxylated PEGs [62, 422, 359, 444] subsection_heading 0.85 ["paragraph_title label with numbering: 3.1. Synthesis of $ \\alpha,\\omega $-diepoxylated PEGs"] subsection_heading 0.85 body_zone body_like heading_numbered True True
72 4 6 text The FTIR spectra of the pure PEG₂₀₀₀, and α,ω-diepoxylated PEG₂₀₀₀ and PEG₆₀₀₀ are shown in Fig. 1. The FTIR spectrum of the pure PEG₂₀₀₀ (Fig. 1a) shows the characteristic absorption bands related to [60, 464, 574, 739] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
73 4 7 paragraph_title 3.2. Synthesis of ThPEGsM macromonomers [62, 757, 392, 779] subsection_heading 0.85 ["paragraph_title label with numbering: 3.2. Synthesis of ThPEGsM macromonomers"] subsection_heading 0.85 body_zone body_like heading_numbered True True
74 4 8 text The ThPEGsM macromonomers were synthesized through the Steglich esterification of PEGs ends-caped tetraol $ [PEGs(OH)_4] $ with 2-thiopheneacetic acid in the presence of DCC and DMAP as coupling agen [61, 798, 572, 945] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 4 9 text As seen in FTIR spectra of the PEG2000(OH)₄ (Fig. 2a) and PEG6000(OH)₄ (Fig. 2b), after acidic hydrolysis of α,ω-diepoxylated PEGs to PEGs(OH)₄ the most distinctive feature in the FTIR spectra are the [59, 949, 573, 1241] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
76 4 10 text The successful synthesis of ThPEGsM macromonomers are further verified by means of $ ^{1} $H NMR spectroscopy (Fig. 3). The $ ^{1} $H NMR spectra of the both ThPEGsM macromonomers shows the characte [60, 1240, 572, 1492] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
77 4 11 image [606, 133, 1100, 1313] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
78 4 12 figure_title Scheme 1. The overall methodologies for synthesis of H-shaped miktoarm PEGs-b-(PTh) $ _{4} $. [597, 1330, 1108, 1367] figure_caption 0.85 ["figure_title label: Scheme 1. The overall methodologies for synthesis of H-shape"] figure_caption 0.85 body_zone legend_like none True True
79 4 13 text data revealed that the degree of functionalization were 82 and 76% by mol for ThPEG $ _{2000} $M and ThPEG $ _{6000} $M, respectively. [597, 1401, 1110, 1446] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
80 5 0 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [452, 92, 758, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
81 5 1 number 181 [1103, 94, 1127, 110] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
82 5 2 image [82, 130, 582, 763] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
83 5 3 figure_title Scheme 2. The overall strategy for the fabrication of electrically conductive nanofibrous scaffolds composed of PEGs-b-(PTh) $ _{4} $ and PCL for tissue engineering applications. [79, 782, 590, 836] figure_caption 0.85 ["figure_title label: Scheme 2. The overall strategy for the fabrication of electr"] figure_caption 0.85 body_zone legend_like none True True
84 5 4 paragraph_title 3.3. Characterization of H-shaped miktoarm PEGs-b-(PTh) $ _{4} $ [80, 871, 524, 893] subsection_heading 0.85 ["paragraph_title label with numbering: 3.3. Characterization of H-shaped miktoarm PEGs-b-(PTh) $ _{"] subsection_heading 0.85 body_zone body_like heading_numbered True True
85 5 5 paragraph_title 3.3.1. FTIR spectroscopy [81, 914, 264, 933] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.1. FTIR spectroscopy"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
86 5 6 text The FTIR spectra of the synthesized homo-PTh and H-shaped miktoarm PEGs-b-(PTh)₄ are shown in Fig. 4. The most important bands in the FTIR spectrum of the homo-PTh are weak aromatic α and β hydrogen's [79, 933, 593, 1204] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
87 5 7 paragraph_title 3.3.2. $ ^{1}H $ NMR spectroscopy [81, 1233, 295, 1253] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: 3.3.2. $ ^{1}H $ NMR spectroscopy"] subsection_heading 0.6 body_zone body_like none True True
88 5 8 text The synthesized H-shaped mikroarm PEGs-b-(PTh) $ _{4} $ samples were further characterized by means of $ {}^{1} $H NMR spectroscopy as shown in Fig. 5. The $ {}^{1} $H NMR spectra of both samples sh [78, 1255, 591, 1420] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
89 5 9 paragraph_title 3.3.3. UV-vis spectroscopy [81, 1448, 289, 1468] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.3. UV-vis spectroscopy"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
90 5 10 text The optical characteristics of the synthesized homo-PTh, H- [102, 1469, 590, 1490] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
91 5 11 chart [621, 131, 1113, 960] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
92 5 12 figure_title Fig. 1. The FTIR spectra of pure PEG $ _{2000} $ (a), $ \alpha $, $ \omega $-diepoxylated PEG $ _{2000} $ (b), and $ \alpha $, $ \omega $-diepoxylated PEG $ _{6000} $ (c). [617, 985, 1124, 1021] figure_caption 0.92 ["figure_title label: Fig. 1. The FTIR spectra of pure PEG $ _{2000} $ (a), $ \\al"] figure_caption 0.92 display_zone legend_like figure_number True True
93 5 13 text shaped mikroarm PEG $ _{2000} $-b-(PTh) $ _{4} $ and PEG $ _{6000} $-b-(PTh) $ _{4} $ samples were investigated using UV–vis spectroscopy. The samples for UV–vis spectroscopy were prepared by dissolvi [614, 1056, 1130, 1161] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
94 5 14 text As can be seen in Fig. 6, the UV–vis spectra of all samples were characterized by an electronic transition. The maximum absorption peaks were observed at 605, and 598, and 587 nm for homo-PTh, $ PEG_ [616, 1162, 1130, 1353] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
95 5 15 paragraph_title 3.3.4. Morphology study [619, 1385, 808, 1405] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.4. Morphology study"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
96 5 16 text As shown in Fig. 7, the surface morphologies of the synthesized H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ and PEG $ _{6000} $-b-(PTh) $ _{4} $ copolymers were observed using FE-SEM. As can be [618, 1407, 1129, 1492] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
97 6 0 number 182 [64, 93, 89, 111] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
98 6 1 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [433, 92, 739, 112] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
99 6 2 chart [67, 130, 554, 1198] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
100 6 3 figure_title Fig. 2. The FTIR spectra of the PEG $ _{2000} $(OH) $ _{4} $ (a), PEG $ _{6000} $(OH) $ _{4} $ (b), ThPEG $ _{2000} $M (c), a ThPEG $ _{6000} $M (d). [59, 1218, 551, 1255] figure_caption 0.92 ["figure_title label: Fig. 2. The FTIR spectra of the PEG $ _{2000} $(OH) $ _{4} $"] figure_caption 0.92 display_zone legend_like figure_number True True
101 6 4 text diameters in the size range of $ 80 \pm 20 $ nm. These morphologies may be originated from the growth of PTh chains from ThPEGsM macromonomer. [60, 1291, 572, 1356] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
102 6 5 paragraph_title 3.3.5. Thermal property study [61, 1385, 290, 1405] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.5. Thermal property study"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
103 6 6 text Thermal characteristics of the obtained polymers upon heating under nitrogen atmosphere were evaluated using TGA. Characteristic TGA curves of PEG $ _{2000} $, PEG $ _{2000-b} $-(PTh) $ _{4} $, PEG $ [60, 1406, 570, 1491] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 6 7 image [656, 132, 1067, 525] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
105 6 8 figure_title (a) [1028, 357, 1065, 388] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
106 6 9 chart [636, 579, 1068, 876] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
107 6 10 figure_title Fig. 3. The $ {}^{1} $H NMR spectra of the ThPEG $ _{2000} $M (a) and ThPEG $ _{6000} $M (b) macromonomers. [597, 887, 1107, 924] figure_caption 0.92 ["figure_title label: Fig. 3. The $ {}^{1} $H NMR spectra of the ThPEG $ _{2000} "] figure_caption 0.92 display_zone legend_like figure_number True True
108 6 11 text decomposition of PEG $ _{2000} $ (Fig. 8a) was occurring in one step around 210–440 °C, and after which the loss rate slows down. The residue at 700 °C for pure PEG $ _{2000} $ is 3 wt%. The character [597, 960, 1110, 1087] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
109 6 12 text In contrast, the main decomposition of $ PEG_{2000}-b-(PTh)_4 $ (Fig. 8c) was occurring in a two-step; the first step related to the decomposition of the PEG chain (210–400 °C), whereas the second st [596, 1086, 1110, 1297] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
110 6 13 paragraph_title 3.3.6. Electroactivity behaviors [600, 1322, 836, 1342] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.3.6. Electroactivity behaviors"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
111 6 14 text The electroactivity behaviors of the PEG $ _{2000-b} $-(PTh) $ _{4} $ and PEG $ _{6000-b} $-(PTh) $ _{4} $ copolymers were evaluated in the range of 10–40 mV s $ ^{-1} $ scan rate, in the acetonitrile [597, 1341, 1111, 1491] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
112 7 0 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [452, 92, 758, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
113 7 1 number 183 [1103, 93, 1128, 111] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
114 7 2 chart [86, 129, 577, 1065] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
115 7 3 figure_title Fig. 4. The FTIR spectra of the synthesized homo-PTh (a), H-shaped miktoarm $ PEG_{2000} $-b-(PTh) $ _{4} $ (b), and $ PEG_{6000} $-b-(PTh) $ _{4} $ (c) copolymers. [78, 1088, 589, 1126] figure_caption 0.92 ["figure_title label: Fig. 4. The FTIR spectra of the synthesized homo-PTh (a), H-"] figure_caption 0.92 display_zone legend_like figure_number True True
116 7 4 text and 0.85 V versus Ag/AgCl electrode, respectively. In contrast, the $ PEG_{6000} $-b-(PTh) $ _{4} $ sample (Fig. 9b) showed a typical redox couple with anodic and cathodic peaks at approximately 1.65 [78, 1160, 590, 1244] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
117 7 5 text In addition, the relationship between the peak current sizes (anodic peaks) versus scan rate in the range of 10–40 mV s⁻¹ for the PEG₂₀₀₀-b-(PTh)₄ and PEG₆₀₀₀-b-(PTh)₄ copolymers are shown in Fig. 9c. [79, 1245, 591, 1373] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
118 7 6 paragraph_title 3.4. Characterization of electrospun nanofibers [80, 1406, 434, 1428] subsection_heading 0.85 ["paragraph_title label with numbering: 3.4. Characterization of electrospun nanofibers"] subsection_heading 0.85 body_zone body_like heading_numbered True True
119 7 7 text Nanofibrous polymer-based scaffolds have attracted considerable attention, in part due to physicochemical and biological [79, 1447, 592, 1492] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
120 7 8 chart [656, 127, 1088, 509] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
121 7 9 figure_title Fig. 5. The $ {}^{1} $H NMR spectra of the synthesized H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ (a), and PEG $ _{6000} $-b-(PTh) $ _{4} $ (b) copolymers. [616, 522, 1129, 561] figure_caption 0.92 ["figure_title label: Fig. 5. The $ {}^{1} $H NMR spectra of the synthesized H-sh"] figure_caption 0.92 display_zone legend_like figure_number True True
122 7 10 text mimicking of native ECM. Some of the physicochemical and biological properties of the fabricated nanofibrous scaffolds including morphology, mechanical properties, electrical conductivity, hydrophilic [617, 594, 1129, 702] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
123 7 11 paragraph_title 3.4.1. Morphology study [619, 728, 807, 749] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.4.1. Morphology study"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
124 7 12 text The morphology and topography of the scaffold have pivotal roles on its performance in TE. In this context, nanofibrous polymer-based scaffolds that fabricated using electrospinning technique have att [616, 750, 1129, 875] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
125 7 13 text The surface morphologies of the fabricated $ PEG_{2000}-b-(PTh)_{4}/PCL $ and $ PEG_{6000}-b-(PTh)_{4}/PCL $ electrospun nanofibers were investigated by means of FE-SEM as shown in Fig. 10. The FE-S [616, 876, 1130, 1066] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
126 7 14 paragraph_title 3.4.2. Mechanical properties [619, 1093, 838, 1114] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.4.2. Mechanical properties"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
127 7 15 text Another topic must be considered in TE is mechanical properties, mainly due to direct influence of environment surrounding cells in TE performances (e.g., differentiation process) [40,41]. The represe [615, 1114, 1130, 1305] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
128 7 16 figure_title Table 1 Summary of the obtained results from $ {}^{1} $H NMR spectroscopy of PEGs-b-(PTh) $ _{4} $ samples. [617, 1342, 1127, 1392] table_caption 0.9 ["table prefix matched: Table 1\nSummary of the obtained results from $ {}^{1} $H NM"] table_caption 0.9 display_zone table_caption_like table_number True True
129 7 17 table <table><tr><td>Sample</td><td>PEG (mol%)</td><td>PTh (mol%)</td><td>PEG (wt%)</td><td>PTh (wt%)</td><td>$ M_{w} $ of PTh (g mol $ ^{-1} $)</td></tr><tr><td>PEG $ _{2000} $-b-(PTh) $ _{4} $</td><td>46< [622, 1397, 1122, 1484] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
130 8 0 number 184 [64, 94, 90, 110] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
131 8 1 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [433, 92, 739, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
132 8 2 chart [65, 129, 568, 497] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
133 8 3 figure_title Fig. 6. The electronic spectra of the homo-PTh (a), H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ (b), and PEG $ _{6000} $-b-(PTh) $ _{4} $ (c). [59, 514, 570, 552] figure_caption 0.92 ["figure_title label: Fig. 6. The electronic spectra of the homo-PTh (a), H-shaped"] figure_caption 0.92 display_zone legend_like figure_number True True
134 8 4 paragraph_title 3.4.3. Electrical conductivity [62, 586, 279, 606] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.4.3. Electrical conductivity"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
135 8 5 text The motivation toward electrically conductive nanofibers for TE applications is originated from simultaneously providing topographical and electrical cues which promote the regeneration of injured tis [60, 607, 571, 776] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
136 8 6 text The electrical conductivities of the synthesized polymers and fabricated electrospun nanofibers were measured by the four-probe technique at room temperature as described in our pervious works and the [59, 775, 572, 966] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
137 8 7 chart [636, 128, 1070, 505] media_asset 0.85 ["media label: chart"] media_asset 0.85 body_zone unknown_like empty True True
138 8 8 figure_title Fig. 8. TGA curves of the pure PEG $ _{2000} $ (a), PEG $ _{6000} $-b-(PTh) $ _{4} $ (b), PEG $ _{2000} $-b-(PTh) $ _{4} $ (c), and pure PTh (d). [598, 523, 1108, 561] figure_caption 0.92 ["figure_title label: Fig. 8. TGA curves of the pure PEG $ _{2000} $ (a), PEG $ _{"] figure_caption 0.92 display_zone legend_like figure_number True True
139 8 9 text electrical conductivities of the PEGs-b-(PTh) $ _{4} $/PCL samples were decreased significantly, since PCL is not a conductive material. In conclusion, the conductivities of electrospun nanofibers wer [597, 595, 1110, 681] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
140 8 10 paragraph_title 3.4.4. Hydrophilicity [599, 706, 749, 726] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.4.4. Hydrophilicity"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
141 8 11 text It is well accepted that the surface properties of the scaffold can influence adversely the TE performances (e.g., cell attachment and proliferation). Among them, the characteristic of hydrophilicity [597, 726, 1109, 832] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
142 8 12 text The surface hydrophilicities of PEG₂₀₀₀-b-(PTh)₄/PCL and PEG₆₀₀₀-b-(PTh)₄/PCL electrospun nanofibers were measured by water drop contact angle method at room temperature versus the PCL electrospun nan [597, 832, 1111, 979] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
143 8 13 image [189, 1021, 576, 1451] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
144 8 14 image [595, 1022, 984, 1451] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
145 8 15 figure_title Fig. 7. The FE-SEM images of the H-shaped miktoarm PEG $ _{2000} $-b-(PTh) $ _{4} $ (left) and PEG $ _{6000} $-b-(PTh) $ _{4} $ (right). [263, 1471, 904, 1491] figure_caption 0.92 ["figure_title label: Fig. 7. The FE-SEM images of the H-shaped miktoarm PEG $ _{2"] figure_caption 0.92 display_zone legend_like figure_number True True
146 9 0 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [452, 92, 759, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
147 9 1 number 185 [1103, 94, 1128, 110] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
148 9 2 chart [89, 131, 418, 427] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
149 9 3 chart [441, 133, 772, 427] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
150 9 4 chart [786, 128, 1121, 427] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
151 9 5 figure_title Fig. 9. Cyclic voltammetry curves (CVs) of the PEG₂₀₀₀-b-(PTh)₄ (a) and PEG₆₀₀₀-b-(PTh)₄ (b) copolymers in acetonitrile–TEAFB, solvent–electrolyte couple (0.1 mol⁻¹), between 0 and + 2.00 V versus the [78, 443, 1131, 516] figure_caption 0.92 ["figure_title label: Fig. 9. Cyclic voltammetry curves (CVs) of the PEG\u2082\u2080\u2080\u2080-b-(PT"] figure_caption 0.92 display_zone legend_like figure_number True True
152 9 6 image [208, 563, 596, 994] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
153 9 7 image [615, 563, 1003, 993] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
154 9 8 image [208, 1015, 598, 1444] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
155 9 9 image [615, 1013, 1003, 1444] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
156 9 10 figure_title Fig. 10. The FE-SEM images of PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a and b), and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (c and d) electrospun nanofibers at different magnifications. [159, 1462, 1050, 1482] figure_caption 0.92 ["figure_title label: Fig. 10. The FE-SEM images of PEG $ _{2000} $-b-(PTh) $ _{4}"] figure_caption 0.92 display_zone legend_like figure_number True True
157 10 0 number 186 [64, 94, 90, 110] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
158 10 1 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [432, 92, 740, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
159 10 2 figure_title Table 2 [62, 129, 113, 147] table_caption 0.9 ["table prefix matched: Table 2"] table_caption 0.9 display_zone table_caption_like table_number True True
160 10 3 figure_title Mechanical properties of PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers (n = 3). [61, 139, 707, 166] figure_caption 0.85 ["figure_title label: Mechanical properties of PEG $ _{2000} $-b-(PTh) $ _{4} $/PC"] figure_caption 0.85 legend_like none True True
161 10 4 table <table><tr><td>Sample</td><td>Young&#x27;s modulus (MPa)</td><td>Tensile strength (MPa)</td><td>Elongation at break (%)</td></tr><tr><td>PEG $ _{2000} $-b-(Th) $ _{4} $/PCL</td><td>121 $ \pm $ 4.37</ [65, 164, 1107, 242] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
162 10 5 figure_title Table 3 [118, 282, 171, 299] table_caption 0.9 ["table prefix matched: Table 3"] table_caption 0.9 display_zone table_caption_like table_number True True
163 10 6 figure_title The electrical properties of the samples. [118, 299, 368, 319] figure_caption_candidate 0.85 ["figure_title label: The electrical properties of the samples."] figure_caption 0.85 unknown_like none False False
164 10 7 table <table><tr><td>Sample</td><td>Volume specific resistivity ( $ \rho $; $ \Omega $ cm)</td><td>Electrical conductivity ( $ \sigma $; S cm $ ^{-1} $)</td></tr><tr><td>PTh</td><td>1.31</td><td>0.76</td>< [122, 321, 1051, 445] table_html 0.95 ["inline table HTML"] table_html 0.95 unknown_like none True False
165 10 8 vision_footnote $ ^{a} $ Electrospun nanofibers were fabricated as given in experimental section. [130, 448, 595, 469] footnote 0.7 ["vision_footnote label: $ ^{a} $ Electrospun nanofibers were fabricated as given in "] footnote 0.7 unknown_like affiliation_marker True True
166 10 9 text calculated to be $ 127 \pm 2.8^\circ $, $ 85 \pm 2.2^\circ $ and $ 79 \pm 2.4^\circ $, respectively. [61, 503, 562, 526] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
167 10 10 paragraph_title 3.4.5. In vitro degradability [61, 548, 273, 569] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.4.5. In vitro degradability"] sub_subsection_heading 0.85 body_zone unknown_like heading_numbered True True
168 10 11 text For clinical applications, structural and chemical degradation of scaffolds are pivotal parameters to provide temporary support of tissue growth and subsequently allow for integration of formed neo-ti [59, 569, 574, 741] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
169 10 12 text [597, 503, 1110, 628] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 unknown_like empty True True
170 10 13 text As shown in Fig. 13, both PEG $ _{2000-b} $-(PTh) $ _{4} $/PCL and PEG $ _{6000-b} $-(PTh) $ _{4} $/PCL electrospun nanofibers have a fast mass loss up to fourth week with a linear degradation trend, [597, 630, 1111, 757] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
171 10 14 chart [64, 773, 570, 1209] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
172 10 15 figure_title Fig. 11. The stress–strain curves of $ PEG_{2000}-b-(PTh)_{4}/PCL $ (a) and $ PEG_{6000}-b-(PTh)_{4}/PCL $ (b) electrospun nanofibers. [60, 1226, 573, 1264] figure_caption 0.92 ["figure_title label: Fig. 11. The stress\u2013strain curves of $ PEG_{2000}-b-(PTh)_{"] figure_caption 0.92 display_zone legend_like figure_number True True
173 10 16 chart [601, 810, 1105, 1211] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
174 10 17 figure_title Fig. 13. Degradation profiles of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (b) electrospun nanofibers in PBS. [597, 1226, 1109, 1264] figure_caption 0.92 ["figure_title label: Fig. 13. Degradation profiles of the PEG $ _{2000} $-b-(PTh)"] figure_caption 0.92 display_zone legend_like figure_number True True
175 10 18 figure_title (a) [259, 1305, 287, 1327] figure_inner_text 0.9 ["panel label / figure inner text: (a)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
176 10 19 figure_title (b) [483, 1305, 510, 1327] figure_inner_text 0.9 ["panel label / figure inner text: (b)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
177 10 20 figure_title (c) [705, 1305, 733, 1327] figure_inner_text 0.9 ["panel label / figure inner text: (c)"] figure_inner_text 0.9 display_zone legend_like panel_label True True
178 10 21 image [256, 1355, 467, 1456] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
179 10 22 image [480, 1352, 691, 1454] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
180 10 23 image [702, 1347, 914, 1454] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
181 10 24 figure_title Fig. 12. The Photographs of water drops on pure PCL (a), PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (b) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (c) electrospun nanofibers. [178, 1471, 989, 1492] figure_caption 0.92 ["figure_title label: Fig. 12. The Photographs of water drops on pure PCL (a), PEG"] figure_caption 0.92 display_zone legend_like figure_number True True
182 11 0 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [452, 92, 759, 111] noise 0.9 ["header label"] noise 0.9 unknown_like none False False
183 11 1 number 187 [1102, 93, 1128, 110] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
184 11 2 text PCL sample. The mass loss for PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers were found to be 31.2, and 33.5 wt%, respectively at sixth week. [79, 128, 590, 191] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
185 11 3 text The in vitro degradability of the electrospun nanofibers was further evaluated by means of FE-SEM observation. As seen in FE-SEM images (Fig. 14), both PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _ [78, 193, 591, 298] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
186 11 4 paragraph_title 3.5. Biocompatibility [82, 338, 242, 359] subsection_heading 0.85 ["paragraph_title label with numbering: 3.5. Biocompatibility"] subsection_heading 0.85 body_zone unknown_like heading_numbered True True
187 11 5 text The biocompatibility of any material is the first and fundamental requirement for scaffolding in part due to its direct influence on cells attachment, proliferation, migration, differentiation, and ne [79, 379, 591, 570] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
188 11 6 chart [655, 131, 1090, 509] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
189 11 7 image [209, 588, 595, 1019] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
190 11 8 figure_title Fig. 15. In vitro cytotoxic effects of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (b) electrospun nanofibers on human osteoblast MG-63 cells (c: negative con [616, 522, 1129, 559] figure_caption 0.92 ["figure_title label: Fig. 15. In vitro cytotoxic effects of the PEG $ _{2000} $-b"] figure_caption 0.92 display_zone legend_like figure_number True True
191 11 9 image [615, 588, 1004, 1018] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
192 11 10 image [208, 1037, 595, 1469] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
193 11 11 image [615, 1039, 1003, 1469] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
194 11 12 figure_title Fig. 14. The FE-SEM images of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (top) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (bottom) electrospun nanofibers at different magnifications after 15 days soaking [78, 1489, 1126, 1509] figure_caption 0.92 ["figure_title label: Fig. 14. The FE-SEM images of the PEG $ _{2000} $-b-(PTh) $ "] figure_caption 0.92 display_zone legend_like figure_number True True
195 12 0 chart [64, 88, 564, 509] media_asset 0.85 ["media label: chart"] media_asset 0.85 unknown_like empty True True
196 12 1 figure_title Fig. 16. The human osteoblast MG-63 cells growth performances of the PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (a) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (b) electrospun nanofibers (c: negative control). [59, 530, 570, 568] figure_caption 0.92 ["figure_title label: Fig. 16. The human osteoblast MG-63 cells growth performance"] figure_caption 0.92 display_zone legend_like figure_number True True
197 12 2 text MTT assay, respectively as discussed in the following sections. [597, 129, 1076, 151] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
198 12 3 paragraph_title 3.5.1. Cytotoxic effects of the nanofibers [599, 174, 902, 194] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.5.1. Cytotoxic effects of the nanofibers"] sub_subsection_heading 0.85 body_zone unknown_like heading_numbered True True
199 12 4 text The potential cytotoxic effects of the fabricated scaffolds on human osteoblast MG-63 cells were evaluated by means of the MTT assay and the results obtained are summarized in Fig. 15. As can be seen [597, 195, 1111, 322] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
200 12 5 paragraph_title 3.5.2. Cell growth assay [600, 343, 786, 364] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.5.2. Cell growth assay"] sub_subsection_heading 0.85 body_zone unknown_like heading_numbered True True
201 12 6 text The cell growth performances of the fabricated scaffolds was investigated at an initial seeding density of $ 1 \times 10^5 $ cells per $ cm^2 $ using the human osteoblast MG-63 cells as shown in Fig [597, 367, 1112, 577] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone unknown_like none True True
202 12 7 image [189, 604, 579, 1038] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
203 12 8 image [188, 1048, 580, 1480] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
204 12 9 image [589, 604, 982, 1038] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
205 12 10 image [590, 1050, 982, 1480] media_asset 0.85 ["media label: image"] media_asset 0.85 unknown_like empty True True
206 12 11 figure_title Fig. 17. The FE-SEM images of human osteoblast MG-63 cells on PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL (top) and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL (bottom) electrospun nanofibers at different magnifica [60, 1499, 1108, 1518] figure_caption 0.92 ["figure_title label: Fig. 17. The FE-SEM images of human osteoblast MG-63 cells o"] figure_caption 0.92 display_zone legend_like figure_number True True
207 13 0 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [452, 93, 758, 111] reference_item 0.9 ["header label"] noise 0.9 reference_zone unknown_like none True True
208 13 1 number 189 [1103, 94, 1128, 109] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
209 13 2 text 7.12 ± 0.38 at the end of the cell culture period. In addition, according to results, in comparison with negative control (expanded by a factor of 6.77 ± 0.41 at seventh day of culture period) both fa [79, 128, 591, 255] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
210 13 3 paragraph_title 3.5.3. Cell morphology study [81, 277, 302, 297] sub_subsection_heading 0.85 ["paragraph_title label with numbering: 3.5.3. Cell morphology study"] sub_subsection_heading 0.85 body_zone body_like heading_numbered True True
211 13 4 text The human osteoblast MG-63 cells morphologies on fabricated PEG $ _{2000} $-b-(PTh) $ _{4} $/PCL and PEG $ _{6000} $-b-(PTh) $ _{4} $/PCL electrospun nanofibers were investigated using FE-SEM as shown [79, 297, 590, 405] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
212 13 5 paragraph_title 4. Conclusion [80, 426, 200, 445] section_heading 0.85 ["paragraph_title label with numbering: 4. Conclusion"] section_heading 0.85 body_zone body_like heading_numbered True True
213 13 6 text The design and fabrication of two novel nanofibrous electrically conductive scaffolds using electrospinning technique from AB₄ mikoarm H-shaped poly(ethylene glycol)s-modified polythiophene [PEGs-b-(P [78, 467, 592, 739] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
214 13 7 text The fabricated PEG₂₀₀₀-b-(PTh)₄/PCL and PEG₂₀₀₀-b-(PTh)₄/PCL electrospun nanofibers exhibited uniform and 3D interconnected pore structure, with average diameters in the size range of 100 ± 20 nm with [79, 739, 592, 990] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
215 13 8 text In conclusion, it would be expected that more studies focus on design and tailoring conducting nanofibrous scaffolds with improved biological and physicochemical characteristics including biocompatibi [79, 991, 591, 1159] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
216 13 9 paragraph_title Acknowledgements [81, 1179, 243, 1199] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Acknowledgements"] sub_subsection_heading 0.6 body_zone body_like short_fragment True True
217 13 10 text The authors are grateful to the Payame Noor University, University of Urmia, and Research Center for Pharmaceutical Nanotechnology, Tabriz University of Medical Sciences for partial financial support [78, 1221, 591, 1348] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
218 13 11 paragraph_title References [82, 1369, 174, 1390] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone unknown_like short_fragment True True
219 13 12 reference_content [1] F.M. Chen, X. Liu, Advancing biomaterials of human origin for tissue engineering, Prog. Polym. Sci. 53 (2016) 86–168. [88, 1408, 587, 1440] reference_item 0.85 ["reference content label: [1] F.M. Chen, X. Liu, Advancing biomaterials of human origi"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
220 13 13 reference_content [2] S. Kim, H. Von-Recum, Endothelial stem cells and precursors for tissue engineering: cell source, differentiation, selection, and application, Tissue Eng. B 14 (2008) 133–147. [90, 1441, 588, 1487] reference_item 0.85 ["reference content label: [2] S. Kim, H. Von-Recum, Endothelial stem cells and precurs"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
221 13 14 reference_content [3] E.A. Makris, A.H. Gomoll, K.N. Malizos, J.C. Hu, K.A. Athanasiou, Repair and tissue engineering techniques for articular cartilage, Nat. Rev. Rheumatol. 11 (2015) 21–34. [625, 130, 1127, 177] reference_item 0.85 ["reference content label: [3] E.A. Makris, A.H. Gomoll, K.N. Malizos, J.C. Hu, K.A. At"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
222 13 15 reference_content [4] S. Hosseinzadeh, S.M. Rezayat, E. Vashegani-Farahani, M. Mahmoudifard, S. Zamanlui, M. Soleimani, Nanofibrous hydrogel with stable electrical conductivity for biological applications, Polymer 97 ( [626, 179, 1127, 226] reference_item 0.85 ["reference content label: [4] S. Hosseinzadeh, S.M. Rezayat, E. Vashegani-Farahani, M."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
223 13 16 reference_content [5] E. Tziampazis, A. Sambanis, Tissue engineering of a bioartificial pancreas: modeling the cell environment and device function, Biotechnol. Prog. 11 (1995) 15–26. [627, 228, 1127, 273] reference_item 0.85 ["reference content label: [5] E. Tziampazis, A. Sambanis, Tissue engineering of a bioa"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
224 13 17 reference_content [6] S.J. Cho, S.M. Jung, M. Kang, H.S. Shin, J.H. Youk, Preparation of hydrophilic PCL nanofiber scaffolds via electrospinning of PCL/PVP-b-PCL block copolymers for enhanced cell biocompatibility, Pol [628, 274, 1127, 321] reference_item 0.85 ["reference content label: [6] S.J. Cho, S.M. Jung, M. Kang, H.S. Shin, J.H. Youk, Prep"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
225 13 18 reference_content [7] A.I. Cañas, J.P. Delgado, C. Gartner, Biocompatible scaffolds composed of chemically crosslinked chitosan and gelatin for tissue engineering, J. Appl. Polym. Sci. 133 (2016) 43814. [627, 322, 1128, 368] reference_item 0.85 ["reference content label: [7] A.I. Ca\u00f1as, J.P. Delgado, C. Gartner, Biocompatible scaf"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
226 13 19 reference_content [8] E. Rossi, I. Gerges, A. Tocchio, M. Tamplenizza, P. Aprile, C. Recordati, F. Martello, I. Martin, P. Milani, C. Lenardi, Biologically and mechanically driven design of an RGD-mimetic macroporous f [627, 370, 1127, 433] reference_item 0.85 ["reference content label: [8] E. Rossi, I. Gerges, A. Tocchio, M. Tamplenizza, P. Apri"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
227 13 20 reference_content [9] A. Mokhtarzadeh, A. Alibabahshi, M. Hejazi, Y. Omidi, J. Ezzati, Nazhad Dolatabadi, Bacterial-derived biopolymers: advanced natural nanomaterials for drug delivery and tissue engineering, Trend. A [625, 434, 1128, 497] reference_item 0.85 ["reference content label: [9] A. Mokhtarzadeh, A. Alibabahshi, M. Hejazi, Y. Omidi, J."] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
228 13 21 reference_content [10] S. Zaretsky, C.C.G. Scully, A.J. Lough, A.K. Yudin, Exocyclic control of turn induction in macrocyclic peptide scaffolds, Chem. Eur. J. 19 (2013) 17668–17672. [620, 498, 1128, 544] reference_item 0.85 ["reference content label: [10] S. Zaretsky, C.C.G. Scully, A.J. Lough, A.K. Yudin, Exo"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
229 13 22 reference_content [11] I.C. Liao, F.T. Moutos, B.T. Estes, X. Zhao, F. Guilak, Composite three-dimensional woven scaffolds with interpenetrating network hydrogels to create functional synthetic articular cartilage, Adv [620, 545, 1128, 607] reference_item 0.85 ["reference content label: [11] I.C. Liao, F.T. Moutos, B.T. Estes, X. Zhao, F. Guilak,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
230 13 23 reference_content [12] A. Rogina, L. Pribolsan, A. Hanzek, L. Gómez-Estrada, G. Gallego Ferrer, I. Marijanović, M. Ivanković, H. Ivanković, Macroporous poly(lactic acid) construct supporting the osteoinductive porous c [620, 609, 1128, 671] reference_item 0.85 ["reference content label: [12] A. Rogina, L. Pribolsan, A. Hanzek, L. G\u00f3mez-Estrada, G"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
231 13 24 reference_content [13] K.R. Robinson, The responses of cells to electrical fields: a review, J. Cell Biol. 101 (1985) 2023–2037. [620, 673, 1127, 703] reference_item 0.85 ["reference content label: [13] K.R. Robinson, The responses of cells to electrical fie"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
232 13 25 reference_content [14] S. Rangarajan, L. Madden, N. Bursac, Use of flow, electrical, and mechanical stimulation to promote engineering of striated muscles, Ann. Biomed. Eng. 42 (2014) 1391–1405. [621, 705, 1127, 751] reference_item 0.85 ["reference content label: [14] S. Rangarajan, L. Madden, N. Bursac, Use of flow, elect"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
233 13 26 reference_content [15] A. Brevet, E. Pinto, J. Peacock, F.E. Stockdale, Myosin synthesis increased by electrical stimulation of skeletal muscle cell cultures, Science 193 (1976) 1152–1154. [621, 754, 1128, 799] reference_item 0.85 ["reference content label: [15] A. Brevet, E. Pinto, J. Peacock, F.E. Stockdale, Myosin"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
234 13 27 reference_content [16] C. Agudelo, M. Packirisamy, A. Geitmann, Influence of electric fields and conductivity on pollen tube growth assessed via electrical lab-on-chip, Sci. Rep. 6 (2016) 19812. [620, 802, 1128, 847] reference_item 0.85 ["reference content label: [16] C. Agudelo, M. Packirisamy, A. Geitmann, Influence of e"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
235 13 28 reference_content [17] J. Li, F. Lin, Microfluidic devices for studying chemotaxis and electrotaxis, Trends Cell Biol. 21 (2011) 489–497. [621, 849, 1128, 878] reference_item 0.85 ["reference content label: [17] J. Li, F. Lin, Microfluidic devices for studying chemot"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
236 13 29 reference_content [18] D. landolo, A. Ravichandran, X. Liu, F. Wen, J.K.Y. Chan, M. Berggren, S.H. Teoh, D.T. Simon, Development and characterization of organic electronic scaffolds for bone tissue engineering, Adv. He [621, 880, 1128, 928] reference_item 0.85 ["reference content label: [18] D. landolo, A. Ravichandran, X. Liu, F. Wen, J.K.Y. Cha"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
237 13 30 reference_content [19] F. Cavallo, Y. Huang, E.W. Dent, J.C. Williams, M.G. Lagally, Neurite guidance and three-dimensional confinement via compliant semiconductor scaffolds, ACS Nano 8 (2014) 12219–12227. [620, 929, 1128, 975] reference_item 0.85 ["reference content label: [19] F. Cavallo, Y. Huang, E.W. Dent, J.C. Williams, M.G. La"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
238 13 31 reference_content [20] A. Gelmi, A. Cieslar-Pobuda, E. de Muinck, M. Los, M. Rafat, E.W.H. Jager, Direct mechanical stimulation of stem cells: a beating electromechanically active scaffold for cardiac tissue engineerin [620, 977, 1128, 1039] reference_item 0.85 ["reference content label: [20] A. Gelmi, A. Cieslar-Pobuda, E. de Muinck, M. Los, M. R"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
239 13 32 reference_content [21] M. Yazdimamaghani, M. Razavi, M. Mozafari, D. Vashaee, H. Kotturi, L. Tayebi, Biomineralization and biocompatibility studies of bone conductive scaffolds containing poly(3,4-ethylenedioxythiophen [620, 1040, 1127, 1104] reference_item 0.85 ["reference content label: [21] M. Yazdimamaghani, M. Razavi, M. Mozafari, D. Vashaee, "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
240 13 33 reference_content [22] R. Sarvari, B. Massoumi, M. Jaymand, Y. Beygi-Khosrowshahi, M. Abdollahi, Novel three-dimensional, conducting, biocompatible, porous, and elastic polyaniline-based scaffolds for regenerative ther [620, 1105, 1128, 1165] reference_item 0.85 ["reference content label: [22] R. Sarvari, B. Massoumi, M. Jaymand, Y. Beygi-Khosrowsh"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
241 13 34 reference_content [23] M. Jaymand, R. Sarvari, M. Massoumi, M. Eskandani, Y. Beygi-Khosrowshahi, Development of novel electrically conductive scaffold based on hyperbranched polyester and polythiophene for tissue engin [620, 1167, 1128, 1230] reference_item 0.85 ["reference content label: [23] M. Jaymand, R. Sarvari, M. Massoumi, M. Eskandani, Y. B"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
242 13 35 reference_content [24] M. Jaymand, M. Hatamzadeh, Y. Omidi, Modification of polythiophene by the incorporation of processable polymeric chains: recent progress in synthesis and applications, Prog. Polym. Sci. 47 (2015) [620, 1231, 1127, 1278] reference_item 0.85 ["reference content label: [24] M. Jaymand, M. Hatamzadeh, Y. Omidi, Modification of po"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
243 13 36 reference_content [25] I. Rajzer, M. Rom, E. Menaszek, P. Pasierb, Conductive PANI patterns on electrospun PCL/gelatin scaffolds modified with bioactive particles for bone tissue engineering, Mater. Lett. 138 (2015) 60 [621, 1279, 1128, 1326] reference_item 0.85 ["reference content label: [25] I. Rajzer, M. Rom, E. Menaszek, P. Pasierb, Conductive "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
244 13 37 reference_content [26] X. Wang, X. Gu, C. Yuan, S. Chen, P. Zhang, T. Zhang, J. Yao, F. Chen, G. Chen, Evaluation of biocompatibility of polypyrrole in vitro and in vivo, J. Biomed. Mater. Res. A 68 (2004) 411–422. [621, 1327, 1127, 1374] reference_item 0.85 ["reference content label: [26] X. Wang, X. Gu, C. Yuan, S. Chen, P. Zhang, T. Zhang, J"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
245 13 38 reference_content [27] L. Ghasemi-Mobarakeh, M.P. Prabhakaran, M. Morshed, M.H. Nasr-Esfahani, H. Baharvand, S. Kiani, S.S. Al-Deyab, S. Ramakrishna, Application of conductive polymers, scaffolds and electrical stimula [620, 1375, 1127, 1438] reference_item 0.85 ["reference content label: [27] L. Ghasemi-Mobarakeh, M.P. Prabhakaran, M. Morshed, M.H"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
246 13 39 reference_content [28] R.J. Wade, J.A. Burdick, Advances in nanofibrous scaffolds for biomedical applications: from electrospinning to self-assembly, Nano Today 9 (2014) 722–742. [620, 1439, 1128, 1484] reference_item 0.85 ["reference content label: [28] R.J. Wade, J.A. Burdick, Advances in nanofibrous scaffo"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
247 14 0 number 190 [64, 94, 90, 109] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
248 14 1 header M. Hatamzadeh et al. / Polymer 107 (2016) 177–190 [433, 94, 739, 111] reference_item 0.9 ["header label"] noise 0.9 reference_zone unknown_like none True True
249 14 2 reference_content [29] L.S. Nair, S. Bhattacharyya, C.T. Laurencin, Development of novel tissue engineering scaffolds via electrospinning, Expert. Opin. Biol. Th 4 (2004) 659–668. [64, 131, 569, 163] reference_item 0.85 ["reference content label: [29] L.S. Nair, S. Bhattacharyya, C.T. Laurencin, Developmen"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
250 14 3 reference_content [30] B. Massoumi, M. Jaymand, Chemical and electrochemical grafting of polythiophene onto poly(methyl methacrylate), and its electrospun nanofibers with gelatin, J. Mater. Sci. Mater. Electron (2016), [65, 163, 569, 225] reference_item 0.85 ["reference content label: [30] B. Massoumi, M. Jaymand, Chemical and electrochemical g"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
251 14 4 reference_content [31] B. Massoumi, R. Massoumi, N. Aali, M. Jaymand, Novel nanostructured star-shaped polythiophene, and its electrospun nanofibers with gelatin, J. Polym. Res. 23 (2016) 136. [65, 227, 569, 273] reference_item 0.85 ["reference content label: [31] B. Massoumi, R. Massoumi, N. Aali, M. Jaymand, Novel na"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
252 14 5 reference_content [32] B. Massoumi, N. Aali, M. Jaymand, Novel nanostructured star-shaped poly-aniline derivatives and their electrospun nanofibers with gelatin, RSC Adv. 5 (2015) 107680–107693. [65, 275, 569, 320] reference_item 0.85 ["reference content label: [32] B. Massoumi, N. Aali, M. Jaymand, Novel nanostructured "] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
253 14 6 reference_content [33] T. Jiang, E.J. Carbone, K.W.H. Lo, C.T. Laurencin, Electrospinning of polymer nanofibers for tissue regeneration, Prog. Polym. Sci. 46 (2015) 1–24. [65, 322, 569, 354] reference_item 0.85 ["reference content label: [33] T. Jiang, E.J. Carbone, K.W.H. Lo, C.T. Laurencin, Elec"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
254 14 7 reference_content [34] B. Massoumi, S. Davtalab, M. Jaymand, A.A. Entezami, AB₂ Y-shaped miktoarm star conductive polyaniline-modified poly(ethylene glycol) and its electrospun nanofiber blend with poly(ε-caprolactone) [64, 355, 569, 416] reference_item 0.85 ["reference content label: [34] B. Massoumi, S. Davtalab, M. Jaymand, A.A. Entezami, AB"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
255 14 8 reference_content [35] B. Massoumi, N. Poorgholy, M. Jaymand, Multistimuli responsive polymeric nanosystems for theranostic applications, Int. J. Polym. Mater. Polym. Biomater. 1 (2017) 38–47. [65, 418, 568, 465] reference_item 0.85 ["reference content label: [35] B. Massoumi, N. Poorgholy, M. Jaymand, Multistimuli res"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
256 14 9 reference_content [36] J.G. De Castro, B.V.M. Rodrigues, R. Ricci, M.M. Costa, A.F.C. Ribeiro, F.R. Marciano, A.O. Lobo, Designing a novel nanocomposite for bone tissue engineering using electrospun conductive PBAT/pol [65, 467, 569, 544] reference_item 0.85 ["reference content label: [36] J.G. De Castro, B.V.M. Rodrigues, R. Ricci, M.M. Costa,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
257 14 10 reference_content [37] S.K. Misra, T.I. Ansari, S.P. Valappil, D. Mohn, S.E. Philip, W.J. Stark, I. Roy, J.C. Knowles, V. Salih, A.R. Boccaccini, Poly(3-hydroxybutyrate) multifunctional composite scaffolds for tissue e [65, 545, 568, 609] reference_item 0.85 ["reference content label: [37] S.K. Misra, T.I. Ansari, S.P. Valappil, D. Mohn, S.E. P"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
258 14 11 reference_content [38] M. Hatamzadeh, M. Jaymand, Synthesis and characterization of polystyrene-graft-polythiophene via a combination of atom transfer radical polymerization and Grignard reaction, RSC Adv. 4 (2014) 167 [65, 610, 568, 656] reference_item 0.85 ["reference content label: [38] M. Hatamzadeh, M. Jaymand, Synthesis and characterizati"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
259 14 12 reference_content [39] B. Massoumi, M. Javid, M. Hatamzadeh, M. Jaymand, Polystyrene-graft-poly(2,2'-bithiophene): synthesis, characterization, and properties, J. Mater. Sci. Mater. Electron. 26 (2015) 2887–2896. [65, 658, 569, 703] reference_item 0.85 ["reference content label: [39] B. Massoumi, M. Javid, M. Hatamzadeh, M. Jaymand, Polys"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
260 14 13 reference_content [40] C. Gaut, K. Sugaya, Critical review on the physical and mechanical factors involved in tissue engineering of cartilage, Regen. Med. 10 (2015) 665–679. [65, 706, 569, 736] reference_item 0.85 ["reference content label: [40] C. Gaut, K. Sugaya, Critical review on the physical and"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
261 14 14 reference_content [41] J.A. Panadero, S. Lanceros-Mendez, J.L.G. Ribelles, Differentiation of mesenchymal stem cells for cartilage tissue engineering: individual and synergetic effects of three-dimensional environment [601, 131, 1107, 194] reference_item 0.85 ["reference content label: [41] J.A. Panadero, S. Lanceros-Mendez, J.L.G. Ribelles, Dif"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
262 14 15 reference_content [42] J.G. Hardy, J.Y. Lee, C.E. Schmidt, Biomimetic conducting polymer-based tissue scaffolds, Curr. Opin. Biotechnol. 24 (2013) 847–854. [602, 195, 1107, 226] reference_item 0.85 ["reference content label: [42] J.G. Hardy, J.Y. Lee, C.E. Schmidt, Biomimetic conducti"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
263 14 16 reference_content [43] H. Cho, S. Balaji, A.Q. Sheikh, J.R. Hurley, Y.F. Tian, J.H. Collier, T.M. Crombleholme, D.A. Narmoneva, Regulation of endothelial cell activation and angiogenesis by injectable peptide nanofiber [601, 227, 1107, 289] reference_item 0.85 ["reference content label: [43] H. Cho, S. Balaji, A.Q. Sheikh, J.R. Hurley, Y.F. Tian,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
264 14 17 reference_content [44] J. Lewandowska-Lańcucka, S. Fiejdasz, Ł. Rodzik, A. Łatkiewicz, M. Nowakowska, Novel hybrid materials for preparation of bone tissue engineering scaffolds, J. Mater. Sci. Mater. Med. 26 (2015) 23 [601, 290, 1107, 337] reference_item 0.85 ["reference content label: [44] J. Lewandowska-La\u0144cucka, S. Fiejdasz, \u0141. Rodzik, A. \u0141at"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
265 14 18 reference_content [45] Y. Zhao, M. He, L. Zhao, S. Wang, Y. Li, L. Gan, M. Li, L. Xu, P.R. Chang, D.P. Anderson, Y. Chen, Epichlorohydrin-cross-linked hydroxyethyl cellulose/soy protein isolate composite films as bioco [602, 338, 1108, 417] reference_item 0.85 ["reference content label: [45] Y. Zhao, M. He, L. Zhao, S. Wang, Y. Li, L. Gan, M. Li,"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
266 14 19 reference_content [46] Y. Wu, L. Wang, B. Guo, Y. Shao, P.X. Ma, Electroactive biodegradable polyurethane significantly enhanced Schwann cells myelin gene expression and neurotrophin secretion for peripheral nerve tiss [601, 418, 1107, 481] reference_item 0.85 ["reference content label: [46] Y. Wu, L. Wang, B. Guo, Y. Shao, P.X. Ma, Electroactive"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
267 14 20 reference_content [47] Y. Eitan, U. Sarig, N. Dahan, M. MacHluf, Acellular cardiac extracellular matrix as a scaffold for tissue engineering: in vitro cell support, remodeling, and biocompatibility, Tissue Eng. C 16 (2 [601, 482, 1108, 529] reference_item 0.85 ["reference content label: [47] Y. Eitan, U. Sarig, N. Dahan, M. MacHluf, Acellular car"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
268 14 21 reference_content [48] C.J. Bettinger, J.P. Bruggeman, A. Misra, J.T. Borenstein, R. Langer, Biocompatibility of biodegradable semiconducting melanin films for nerve tissue engineering, Biomaterials 30 (2009) 3050–3057 [601, 531, 1107, 576] reference_item 0.85 ["reference content label: [48] C.J. Bettinger, J.P. Bruggeman, A. Misra, J.T. Borenste"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
269 14 22 reference_content [49] B. Sitharaman, X. Shi, X.F. Walboomers, H. Liao, V. Cuijpers, L.J. Wilson, A.G. Mikos, J.A. Jansen, In vivo biocompatibility of ultra-short single-walled carbon nanotube/biodegradable polymer nan [601, 578, 1107, 640] reference_item 0.85 ["reference content label: [49] B. Sitharaman, X. Shi, X.F. Walboomers, H. Liao, V. Cui"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
270 14 23 reference_content [50] B. Massoumi, M. Ramezani, M. Jaymand, M. Ahmadinejad, Multi-walled carbon nanotubes-g-[poly(ethylene glycol)-b-poly(ε-caprolactone)]: synthesis, characterization, and properties, J. Polym. Res. 2 [601, 641, 1107, 688] reference_item 0.85 ["reference content label: [50] B. Massoumi, M. Ramezani, M. Jaymand, M. Ahmadinejad, M"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True
271 14 24 reference_content [51] E.A. Rainbolt, K.E. Washington, M.C. Biewer, M.C. Stefan, Recent developments in micellar drug carriers featuring substituted poly(ε-caprolactone)s, Polym. Chem. 6 (2015) 2369–2381. [602, 690, 1107, 735] reference_item 0.85 ["reference content label: [51] E.A. Rainbolt, K.E. Washington, M.C. Biewer, M.C. Stefa"] reference_item 0.85 reference_zone reference_like reference_numeric_bracket True True

View file

@ -0,0 +1,334 @@
page,block_id,raw_label,content_preview,bbox,role,role_confidence,evidence,seed_role,seed_confidence,zone,style_family,marker_type,render_default,index_default
1,0,header,ICRS Recommendation Papers,"[121, 78, 355, 103]",noise,0.9,"[""header label""]",noise,0.9,frontmatter_main_zone,support_like,none,False,False
1,1,doc_title,International Cartilage Repair Society (ICRS) Recommended Guidelines for Histological Endpoints for Cartilage Repair Studies in Animal Models and Clinical Trials,"[120, 132, 853, 289]",paper_title,0.8,"[""page-1 zone title_zone: International Cartilage Repair Society (ICRS) Recommended Gu""]",paper_title,0.8,frontmatter_main_zone,support_like,none,True,True
1,2,text,"Cartilage
2(2) 153172
© The Author(s) 2011
Reprints and permission:
sagepub.com/journalsPermissions.nav
DOI: 10.1177/1947603510397535
http://cart.sagepub.com
SAGE","[885, 113, 1104, 264]",frontmatter_noise,0.8,"[""page-1 zone journal_furniture_zone: Cartilage\n2(2) 153\u2013172\n\u00a9 The Author(s) 2011\nReprints and per""]",frontmatter_noise,0.8,frontmatter_main_zone,support_like,none,False,False
1,3,text,"Caroline Hoemann $ ^{1} $, Rita Kandel $ ^{2} $, Sally Roberts $ ^{3} $, Daniel B.F. Saris $ ^{4} $, Laura Creemers $ ^{4} $, Pierre Mainil-Varlet $ ^{5} $, Stephane Méthot $ ^{6} $, Anthony P. Hollan","[117, 356, 872, 445]",authors,0.8,"[""page-1 zone author_zone: Caroline Hoemann $ ^{1} $, Rita Kandel $ ^{2} $, Sally Rober""]",authors,0.8,frontmatter_main_zone,support_like,none,True,True
1,4,paragraph_title,Abstract,"[119, 476, 212, 500]",abstract_heading,0.95,"[""abstract heading""]",abstract_heading,0.95,frontmatter_main_zone,heading_like,short_fragment,True,True
1,5,abstract,"Cartilage repair strategies aim to resurface a lesion with osteochondral tissue resembling native cartilage, but a variety of repair tissues are usually observed. Histology is an important structural ","[117, 505, 1114, 869]",abstract_body,0.85,"[""abstract label from Paddle OCR""]",abstract_body,0.85,frontmatter_main_zone,support_like,none,True,True
1,6,paragraph_title,Keywords,"[120, 901, 219, 924]",structured_insert,0.9,"[""frontmatter noise: Keywords""]",frontmatter_noise,0.9,frontmatter_main_zone,heading_like,short_fragment,False,False
1,7,paragraph_title,Introduction,"[120, 1019, 268, 1044]",section_heading,0.9,"[""explicit scholarly heading: Introduction""]",section_heading,0.9,body_zone,heading_like,canonical_section_name,True,True
1,8,text,"articular cartilage, cartilage repair, histology, animal models, collagen type II, collagen type I, polarized light microscopy, biopsy, fibrocartilage, glycosaminoglycan, subchondral bone, tidemark","[119, 932, 1110, 981]",frontmatter_noise,0.7,"[""keyword-like block: articular cartilage, cartilage repair, histology, animal mod""]",frontmatter_noise,0.7,frontmatter_main_zone,support_like,none,False,False
1,9,text,"A variety of articular cartilage repair treatments are in use or in development for clinical use. $ ^{1-5} $ Prior to adopting novel methods that employ scaffolds, cells, biologics, and/or tissues, sa","[117, 1057, 603, 1443]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
1,10,footnote," $ ^{1} $Department of Chemical Engineering, Institute of Biomedical Engineering, École Polytechnique, Montréal, Quebec, Canada
$ ^{2} $BioEngineering of Skeletal Tissues Team, Department of Patholog","[628, 1080, 1092, 1180]",footnote,0.7,"[""footnote label: $ ^{1} $Department of Chemical Engineering, Institute of Bio""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,11,footnote," $ ^{3} $Spinal Studies & ISTM (Keele University), Robert Jones & Agnes Hunt Orthopaedic Hospital, Oswestry, Shropshire, UK","[629, 1181, 1090, 1220]",footnote,0.7,"[""footnote label: $ ^{3} $Spinal Studies & ISTM (Keele University), Robert Jon""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,12,footnote," $ ^{4} $Department of Orthopaedics, University Medical Center Utrecht, Utrecht, the Netherlands","[628, 1222, 1069, 1258]",footnote,0.7,"[""footnote label: $ ^{4} $Department of Orthopaedics, University Medical Cente""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,13,footnote," $ ^{5} $Aginko Research, Bern, Switzerland","[629, 1261, 872, 1281]",footnote,0.7,"[""footnote label: $ ^{5} $Aginko Research, Bern, Switzerland""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,14,footnote," $ ^{6} $Piramal Healthcare (Canada), Montréal, Quebec, Canada
$ ^{7} $University of Bristol, University Walk, Clifton, Bristol, UK","[629, 1281, 1009, 1322]",footnote,0.7,"[""footnote label: $ ^{6} $Piramal Healthcare (Canada), Montr\u00e9al, Quebec, Canad""]",footnote,0.7,body_zone,body_like,affiliation_marker,True,True
1,15,paragraph_title,Corresponding Author:,"[629, 1339, 812, 1359]",frontmatter_support,0.75,"[""page-1 correspondence support: Corresponding Author:""]",frontmatter_support,0.75,frontmatter_main_zone,support_like,none,True,True
1,16,footnote,"C.D. Hoemann, Department of Chemical Engineering, École Polytechnique, 2900 Boulevard Edouard Montpetit, Montréal, QC, Canada H3C 3A7
Email: caroline.hoemann@polymtl.ca","[627, 1353, 1066, 1440]",footnote,0.7,"[""footnote label: C.D. Hoemann, Department of Chemical Engineering, \u00c9cole Poly""]",footnote,0.7,body_zone,body_like,none,True,True
2,0,figure_title,Table I. The Zonal Variation Seen in Articular Cartilage,"[172, 1011, 196, 1434]",table_caption,0.9,"[""table prefix matched: Table I. The Zonal Variation Seen in Articular Cartilage""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
2,1,number,154,"[97, 1446, 131, 1470]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
2,2,table,<table><tr><td></td><td>General Comments</td><td>Superficial Zone</td><td>Midzone</td><td>Deep Zone</td></tr><tr><td>Cells</td><td>Chondrocyte morphology varies throughout depth of cartilage; no infla,"[208, 148, 944, 1441]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
2,3,vision_footnote,Changes in osteoarthritis: vascular invasion of the tidemark from the subchondral bone and reduplication of the tidemark is seen in aging and osteoarthritis.,"[991, 382, 1013, 1430]",footnote,0.7,"[""vision_footnote label: Changes in osteoarthritis: vascular invasion of the tidemark""]",footnote,0.7,body_zone,body_like,none,True,True
3,0,header,Hoemann et al.,"[122, 82, 244, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,1,number,155,"[1076, 81, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
3,2,image,,"[189, 149, 1045, 669]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
3,3,figure_title,"Figure I. Different features of the osteochondral junction in normal and repair cartilage are revealed by hematoxylin and eosin (H & E) (A, C, E, G) and Safranin O/fast green/iron hematoxylin (SafO) (","[116, 691, 1111, 884]",figure_caption,0.85,"[""figure_title label: Figure I. Different features of the osteochondral junction i""]",figure_caption,0.85,,reference_like,citation_line,True,True
3,4,text,processing and standardized assessments that will facilitate compliance with FDA recommendations and that will also allow comparison between studies.,"[118, 936, 601, 1008]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,5,text,Histological evaluation of cartilage repair tissue must consider a variety of complicated structural features that allow cartilage to carry out its biomechanical function. Articular cartilage has a st,"[118, 1009, 603, 1416]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,6,text,Articular cartilage is structurally organized into 3 distinct zones (Table 1). $ ^{15} $ The superficial zone is a relatively thin layer with horizontally oriented collagen bundles and flattened chond,"[119, 1416, 602, 1465]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
3,7,text,,"[626, 935, 1112, 1467]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,0,number,156,"[98, 81, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,1,header,Cartilage 2(2),"[972, 80, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
4,2,paragraph_title,Previous Animal and Clinical Studies of Cartilage Repair Using Histological Endpoint Data,"[93, 160, 524, 245]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Previous Animal and Clinical Studies of Cartilage Repair Usi""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
4,3,text,"The major advantage of animal studies is that it is possible to control the lesion size, defect location, and timing of analysis; it is also possible to analyze the full width of the repaired defect a","[93, 257, 577, 617]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,4,text,Prospective human clinical studies with histological endpoints analyze biopsies collected during a second-look arthroscopy (Table 2). A 2-mm-diameter biopsy taken from the center of a lesion provides ,"[92, 615, 578, 1170]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,5,text,"In human clinical studies, repair cartilage histological findings have been most frequently reported as the predominant repair tissue type of each specimen, often using the following terminology: hyal","[92, 1168, 577, 1435]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,6,text,,"[600, 159, 1086, 497]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
4,7,text,"In comparison to the small tissue volume analyzed by biopsy, complementary macroscopic imaging methods such as MRI can give a more global assessment of fill, are relatively noninvasive, and can be per","[600, 494, 1086, 1097]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,8,text,"Ideally, histological structural analyses should generate unbiased quantitative assessment of extracellular matrix, cell, and tissue organization relative to its similarity to normal native cartilage.","[601, 1097, 1085, 1219]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
4,9,text,1. What is the (average) thickness and volume of the repair cartilage?,"[626, 1240, 1063, 1288]",body_paragraph,0.6,"[""reference-like pattern: 1. What is the (average) thickness and volume of the repair ""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
4,10,text,2. Is any implanted (foreign) material still present? Are there any signs of inflammatory or immune response to the implanted material?,"[625, 1288, 1063, 1360]",body_paragraph,0.6,"[""reference-like pattern: 2. Is any implanted (foreign) material still present? Are th""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
4,11,text,3. What portion of the repair cartilage is hyaline?,"[626, 1360, 1051, 1384]",body_paragraph,0.6,"[""reference-like pattern: 3. What portion of the repair cartilage is hyaline?""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
4,12,text,4. Is the articular surface smooth and intact? Is the overall structure intact or disintegrated?,"[625, 1385, 1062, 1434]",body_paragraph,0.6,"[""reference-like pattern: 4. Is the articular surface smooth and intact? Is the overal""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
5,0,figure_title,Table 2. Published Histological Analyses of Human Repair Cartilage,"[191, 959, 214, 1458]",table_caption,0.9,"[""table prefix matched: Table 2. Published Histological Analyses of Human Repair Car""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
5,1,table,"<table><tr><td colspan=""5"">Patient</td></tr></table>","[226, 125, 1056, 1472]",table_html,0.95,"[""inline table HTML""]",table_html,0.95,body_zone,body_like,none,True,False
5,2,number,157,"[1072, 1479, 1104, 1501]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,0,number,158,"[98, 82, 132, 102]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,1,header,Cartilage 2(2),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
6,2,paragraph_title,Table 3. Guidelines for Histological Processing and Analyses of Repair,"[95, 147, 616, 171]",table_caption,0.9,"[""table prefix matched: Table 3. Guidelines for Histological Processing and Analyses""]",table_caption,0.9,display_zone,table_caption_like,table_number,True,True
6,3,paragraph_title,1. Lesion size and location,"[96, 186, 293, 207]",section_heading,0.85,"[""paragraph_title label with numbering: 1. Lesion size and location""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
6,4,text,"• Human: 2-mm diameter, ~1-cm deep biopsy from estimated geometric center of initial lesion, perpendicular to surface. Sample includes bone, full-thickness repair.","[114, 213, 1057, 255]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,5,text,"• Animal: sample block includes entire defect, flanking articular cartilage, subchondral bone encompassing potential regions of bone resorption.","[111, 256, 1076, 298]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,6,paragraph_title,2. Timing of biopsy and sample recovery,"[95, 303, 394, 325]",section_heading,0.85,"[""paragraph_title label with numbering: 2. Timing of biopsy and sample recovery""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
6,7,text,"• Human biopsy: 12-month or 24-month outcome, one biopsy per lesion. Macroscopic ICRS score. Video document and detailed description of biopsy site.","[113, 330, 1062, 371]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,8,text,"• Animal: acute defect (0-3 days) and long-term repair: ≥2 months (rabbit) or ≥6 months (large animal), with and without treatment. Exact endpoints can be tailored to individual studies and should pro","[112, 373, 1081, 436]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,9,paragraph_title,3. Histoprocessing (for cartilage-bone analysis),"[96, 441, 439, 463]",section_heading,0.85,"[""paragraph_title label with numbering: 3. Histoprocessing (for cartilage-bone analysis)""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
6,10,text,• Fixation in 10% normal buffered formalin or buffered 4% paraformaldehyde.,"[114, 467, 689, 489]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,11,text,• Human: decalcify biopsies with bone for ~30 hours in 0.5 N HCl/0.1% glutaraldehyde $ ^{115} $ or formic acid $ ^{105} $ or ~2 weeks in 0.5 M EDTA at 4 °C.,"[114, 488, 1060, 530]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,12,text,• Animal: decalcify ~10 days (rabbit distal femur) or weeks (large animal samples) in 0.5 N HCl (with or without 0.1% glutaraldehyde) $ ^{43} $ or longer in 10% EDTA/0.1% paraformaldehyde at 4 °C. Pos,"[114, 532, 1067, 615]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,13,text,"• For each specimen, collect serial sections from at least 2 predetermined levels (fixed distance to each other in the repair tissue). 5-μm paraffin sections (human, sheep, horse) or 8- to 10-μm cryos","[114, 615, 1078, 679]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,14,text,• Tissue sections processed separately for electron microscopic analysis of matrix (optional).,"[127, 678, 826, 701]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,15,paragraph_title,4. Staining,"[95, 705, 176, 727]",section_heading,0.85,"[""paragraph_title label with numbering: 4. Staining""]",section_heading,0.85,body_zone,reference_like,reference_numeric_dot,True,True
6,16,text,"• H&E (cartilage-bone interface, cell morphology, tidemark, abnormal calcification).","[114, 732, 724, 753]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,17,text,• Safranin O or toluidine blue (glycosaminoglycan content).,"[115, 753, 556, 774]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,18,text,• Collagen immunostaining for collagen type I and type II.,"[114, 774, 543, 795]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,19,text,• Unstained sections (for polarized light microscopy [PLM]).,"[114, 795, 562, 816]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,20,text,"• Recut and stain any torn, folded, or poorly stained sections. Verify complete set of sections (use the best section free of folds, tears).","[114, 814, 1046, 837]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,21,text,• Blind sections or digital scans prior to scoring.,"[114, 838, 477, 859]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,22,paragraph_title,5. Evaluation methods $ ^{a} $,"[96, 863, 267, 885]",section_heading,0.85,"[""paragraph_title label with numbering: 5. Evaluation methods $ ^{a} $""]",section_heading,0.85,body_zone,body_like,heading_numbered,True,True
6,23,text,• Must be performed by 2 or 3 trained and blinded observers. Blinded consensus for outlier scores.,"[114, 890, 876, 911]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,24,text,• Determine implant presence/absence.,"[115, 913, 424, 932]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,25,text,"• Histological scoring: ICRS-II (human, animal) or O'Driscoll (animal) that also assesses adjacent cartilage and cartilage-repair integration. Can use other scoring systems or evaluate predominant tis","[113, 934, 1070, 975]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,26,text,"• Histomorphometry: repair tissue thickness, total soft tissue volume above bone (for human biopsies where bone occupies ≥50% of section width) or above the projected tidemark (for animal sections wit","[115, 975, 1077, 1059]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,27,text,• PLM for collagen fibril orientation (semiquantitative scoring system). $ ^{22} $,"[115, 1058, 647, 1080]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,28,text,"• Optional: immunostain for specific markers of interest. Electron microscopy for cell morphology and collagen fibril diameter, orientation. Subchondral bone structure and repair (bone volume fraction","[113, 1082, 1061, 1145]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
6,29,text," $ ^{a} $As our understanding of cartilage repair and chondrocyte biology improves, these recommendations may have to be modified.","[95, 1155, 923, 1177]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,affiliation_marker,True,True
6,30,text,"5. Does the repair tissue have zonal organization, uniform collagen type II, little or no collagen type I, and appropriate collagen fiber orientation?","[118, 1224, 551, 1296]",body_paragraph,0.6,"[""reference-like pattern: 5. Does the repair tissue have zonal organization, uniform c""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
6,31,text,6. Are there viable cells with the appropriate morphology to form and maintain a hyaline extracellular matrix?,"[119, 1298, 550, 1366]",body_paragraph,0.6,"[""reference-like pattern: 6. Are there viable cells with the appropriate morphology to""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
6,32,text,"7. Does the repair tissue (animal studies) have good lateral integration with adjacent cartilage?
8. Is the repair cartilage fully integrated with subchondral bone, and has the tidemark been regenerat","[118, 1368, 552, 1417]",body_paragraph,0.6,"[""reference-like pattern: 7. Does the repair tissue (animal studies) have good lateral""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
6,33,text,,"[627, 1224, 1061, 1294]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
6,34,text,9. Does the subchondral bone plate and underlying bone have a normal structure?,"[627, 1297, 1061, 1344]",body_paragraph,0.6,"[""reference-like pattern: 9. Does the subchondral bone plate and underlying bone have ""]",reference_item,0.6,,reference_like,reference_numeric_dot,True,True
6,35,text,A rigorous experimental design with an appropriate control group needs to consider 1) location of the biopsy or,"[603, 1368, 1086, 1418]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,0,header,Hoemann et al.,"[121, 81, 245, 105]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,1,number,159,"[1075, 81, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
7,2,text,"section within the animal defect, 2) timing of postoperative biopsy or sample recovery, 3) method of histoprocessing, 4) stains utilized, and 5) validated and blinded evaluation methods amenable to st","[117, 144, 603, 386]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,3,paragraph_title,Lesion Size and Location,"[118, 419, 408, 446]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Lesion Size and Location""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
7,4,text,"In the human knee joint, the medial femoral condyle is the most frequent site of deep grade III and IV lesions. $ ^{79} $ Human lesions treated by cartilage repair vary from 0.5 to 12 cm $ ^{2} $ 1,56","[117, 454, 603, 1057]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,5,text,"Animal models of cartilage repair have important differences when compared to the clinical situation. Humans present with existent defects, whereas in most animal models, the defects are treated immed","[117, 1058, 603, 1442]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,6,text,,"[625, 144, 1111, 363]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
7,7,paragraph_title,Timing of Biopsy and Sample Recovery Human Biopsy Collection,"[626, 395, 1075, 458]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Timing of Biopsy and Sample Recovery Human Biopsy Collection""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
7,8,text,"The timing of biopsy collection is important. In many studies, biopsies were collected as they became available (3-36 months postoperatively) $ ^{62,70,83,84,96,97} $ (Table 2). The FDA draft recommen","[624, 479, 1112, 1298]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
7,9,text,"A clinical biopsy is obtained during a second-look arthroscopy. During the procedure, it is essential to document and score the general intra-articular findings. Utilization of a validated scoring sys","[624, 1295, 1112, 1442]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,0,number,160,"[98, 81, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,1,header,Cartilage 2(2),"[973, 80, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
8,2,text,"been used to describe articular cartilage repair; however, the score was originally designed to describe a cartilage injury and therefore is not recommended. The defect size, integration, and repair a","[92, 144, 579, 1418]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,3,image,,"[608, 148, 830, 420]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,4,image,,"[855, 152, 1080, 421]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,5,image,,"[612, 433, 834, 574]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,6,image,,"[858, 432, 1076, 568]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
8,7,figure_title,"Figure 2. Appearance of human 2-mm-diameter biopsy obtained with a Jamshidi 11-gauge needle (A, C) and corresponding decalcified Safranin O-stained paraffin section (B, D). Samples were obtained ex vi","[601, 593, 1086, 839]",figure_caption,0.92,"[""figure_title label: Figure 2. Appearance of human 2-mm-diameter biopsy obtained ""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
8,8,text,"values, which may reduce bias. Some features can still be scored even if the biopsy is not complete.","[601, 864, 1084, 914]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
8,9,paragraph_title,Animal Sample Collection,"[602, 948, 840, 974]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Animal Sample Collection""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
8,10,text,"In animal studies, a rigorous study design includes histological characterization of the acute defect in a separate group of animals (with and without implanted material, also to assess debridement le","[600, 984, 1086, 1419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,0,header,Hoemann et al.,"[122, 82, 244, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,1,number,161,"[1075, 81, 1107, 104]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
9,2,image,,"[124, 153, 597, 496]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
9,3,figure_title,"Figure 3. Histoprocessing and histomorphometry of large animal defects. The example is taken from a sheep cartilage repair model (6 months repair $ ^{43} $). In this unilateral cartilage repair model,","[118, 515, 602, 771]",figure_caption,0.92,"[""figure_title label: Figure 3. Histoprocessing and histomorphometry of large anim""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
9,4,text,"At necropsy, the joint and repair tissue should be photodocumented (preferably with a ruler and label carrying the date and sample identity). The repair tissue should be evaluated for tissue color, ho","[117, 816, 604, 1419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,5,text,,"[627, 144, 1112, 242]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
9,6,paragraph_title,Histoprocessing,"[629, 276, 817, 303]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Histoprocessing""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
9,7,text,"Once the osteochondral sample is taken, it should be processed immediately. In the majority of animal cartilage repair studies, osteochondral samples are fixed in formalin-based buffer and decalcified","[626, 312, 1113, 1199]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
9,8,text,"Samples may also be embedded nondecalcified in plastic; however, it should be noted that collagen immunostaining of thinner plastic sections can be technically challenging compared to paraffin or cryo","[626, 1199, 1112, 1420]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,0,number,162,"[98, 81, 132, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,1,header,Cartilage 2(2),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
10,2,text,"vibratome sections may also be frozen, substituted with plastic, and submitted to ultrastructural studies by electron microscopy. $ ^{106} $ For structural endpoint analyses, all samples in a given st","[92, 144, 577, 432]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,3,text,"Biopsies can be fixed most conveniently in 10% neutral buffered formalin for a minimum of 24 hours (up to 1 week). Fresh 4% paraformaldehyde can also be used, but it is relatively unstable and should ","[93, 432, 577, 816]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,4,text,"To analyze cartilage-bone integration and subchondral bone structure, repair biopsies should include bone and should be decalcified intact. Decalcification can be accomplished using acid or EDTA. Acid","[92, 817, 575, 1419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,5,image,,"[611, 152, 1080, 738]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
10,6,figure_title,"Figure 4. Example of standardized histoprocessing to evaluate a human biopsy (A-D, from cadaveric knee medial femoral condyle) or sheep hyaline repair cartilage 6-month repair after treatment with mic","[602, 760, 1086, 992]",figure_caption,0.92,"[""figure_title label: Figure 4. Example of standardized histoprocessing to evaluat""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
10,7,text,"in decalcification solutions, especially during long decalcification procedures. Commercially available decalcification solutions are another alternative, but these tend to be more expensive and utili","[601, 1032, 1086, 1368]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
10,8,text,"Once decalcified, animal osteochondral sample blocks can be trimmed further, firstly to remove excess bone,","[602, 1369, 1086, 1417]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,0,header,Hoemann et al.,"[121, 81, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,1,number,163,"[1075, 81, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
11,2,text,"which allows adequate infiltration with embedding media, and secondly to generate a cut surface inside the repaired defect from which sections will be collected. Given the typical heterogeneity of car","[117, 142, 603, 769]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,3,text,"Paraffin embedding uses organic solvents to dehydrate the tissue and can be used to embed and section large sample blocks (2-3 cm³). For plastic embedding, the infiltration times should be increased a","[117, 767, 603, 1154]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,4,text,"Once a sample is embedded, any number of sections can be collected from the specimen. Ideally, sections need to be collected and stained so as to minimize bias in the analysis, a notion that is well d","[117, 1152, 603, 1420]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,5,text,,"[625, 144, 1112, 290]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
11,6,paragraph_title,"Staining, Immunostaining, and Routine Light Microscopy","[626, 322, 1067, 380]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Staining, Immunostaining, and Routine Light Microscopy""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
11,7,text,The selection of stains utilized to visualize the tissue will depend on what parameter is being examined. Similar stains are used in the evaluation of human biopsies and animal repair cartilage. Routi,"[626, 383, 1112, 652]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,8,paragraph_title,Routine Histostaining and Polarized Light Microscopy,"[626, 683, 1007, 739]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Routine Histostaining and Polarized Light Microscopy""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
11,9,text,"Hematoxylin and eosin (H&E) staining of the tissue section will allow evaluation of the overall tissue, cell morphology, presence of abnormal calcification, and the bone-cartilage interface (Fig. 1). ","[626, 744, 1112, 1032]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
11,10,text,Safranin O and toluidine blue are most frequently utilized to stain proteoglycans and demonstrate their presence and location within the tissue. Safranin O/fast green/iron hematoxylin stain provides t,"[625, 1031, 1113, 1419]",body_paragraph,0.78,"[""default body_paragraph for text label"", ""late role resolution: non-body family 'reference_like' overrides body_paragraph"", ""style_family_authority=reference_marker"", ""context_source=block""]",body_paragraph,0.6,,reference_like,citation_line,True,True
12,0,number,164,"[97, 81, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,1,header,Cartilage 2(2),"[972, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
12,2,text,"be done at the right pH (pH ≤1). Thionin is a nonmetachromatic purple stain that is simple to perform $ ^{114} $ but, like toluidine blue, generates a similar hue for hyaline and fibrous tissue. To co","[92, 144, 577, 312]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,3,text,PLM is used to determine the presence of organized collagen fibrils in the matrix. PLM can be carried out on either unstained sections mounted with permanent mounting media $ ^{22} $ or H&E-stained se,"[92, 313, 577, 482]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,4,paragraph_title,Immunohistochemical Staining,"[94, 516, 376, 543]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Immunohistochemical Staining""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
12,5,text,"Adult hyaline articular cartilage is comprised of a wide variety of matrix molecules organized in a particular manner; to date, no single marker specific for hyaline cartilage has been identified. Hya","[91, 549, 578, 1345]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,6,text,"For research purposes, additional markers have been used to analyze repair cartilage, including collagen type IIa, $ ^{69} $ a propeptide domain isoform of collagen type II expressed in fetal cartilag","[92, 1344, 578, 1419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,7,text,,"[600, 143, 1086, 408]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
12,8,text,"To summarize, cartilage structural characterization minimally includes immunostaining for collagen type II and collagen type I, in combination with staining with H&E to assess osteochondral tissue fea","[600, 409, 1086, 627]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,9,paragraph_title,Evaluation,"[602, 659, 731, 685]",sub_subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level sub_subsection_heading: Evaluation""]",sub_subsection_heading,0.6,body_zone,heading_like,short_fragment,True,True
12,10,text,Stained sections should be evaluated to determine how closely the structure and organization of the repair tissue resembles normal adult articular cartilage. Histological evaluation can be qualitative,"[601, 696, 1087, 1249]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
12,11,text,"Once the satisfactory quality of the sample and sections is established, the level and type of evaluation (i.e., qualitative/quantitative) will depend on the particular study or purpose of the investi","[600, 1248, 1086, 1419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,0,header,Hoemann et al.,"[121, 82, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,1,number,165,"[1076, 82, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
13,2,text,"fibrous, or none of these (Table 2). Such an analysis facilitates comparison of new data with the literature. However, it is in the interest of the investigator to analyze and quantify a variety of hi","[117, 144, 604, 699]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,3,paragraph_title,Establishing the Region of Interest,"[120, 732, 435, 759]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Establishing the Region of Interest""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
13,4,text,"Objective scoring and good interreader agreement depend on the ability to score the same region of interest in a blinded sample. In normal osteochondral samples, this is not an issue; however, in repa","[117, 768, 603, 1249]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,5,text,"In animal cartilage repair studies, the acute defect may or may not include subchondral bone damage, and during repair, extensive subchondral bone resorption can sometimes occur. $ ^{38,42,43,120} $ W","[117, 1248, 603, 1419]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,6,image,,"[636, 156, 1102, 336]",media_asset,0.85,"[""media label: image""]",media_asset,0.85,body_zone,unknown_like,empty,True,True
13,7,figure_title,Figure 5. Histomorphometry of chondral versus subchondral soft repair tissues. The example is from a 2-month repair of a trochlear full-thickness rabbit knee defect with two 0.9-mm microdrill holes. $,"[627, 352, 1110, 502]",figure_caption,0.92,"[""figure_title label: Figure 5. Histomorphometry of chondral versus subchondral so""]",figure_caption,0.92,display_zone,legend_like,figure_number,True,True
13,8,text,"to thinning of the articular layer and the presence of bone in the cartilage defect area. $ ^{109} $ To specifically analyze chondral repair tissue versus subchondral repair tissue, a curved “projecte","[625, 552, 1111, 699]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
13,9,paragraph_title,Histological Scoring,"[629, 732, 812, 760]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Histological Scoring""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
13,10,text,"Histological scoring provides an important outcome measure of preclinical and clinical repair cartilage. Before undertaking histological assessments of cartilage repair, it is essential that the reade","[627, 769, 1112, 1418]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,0,number,166,"[98, 82, 133, 103]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
14,1,header,Cartilage 2(2),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
14,2,text,"Although outside the scope of this article, a well-defined preplanned statistical analysis accounting for multiple outcome measures is essential to ensure proper control of type I and type II errors a","[91, 144, 577, 312]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,3,text,"In animal models for which whole joints are available for study, a variety of cartilage histological grading systems for cartilage repair tissue have been developed (recently reviewed by Rutgers et al","[92, 312, 578, 745]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,4,text,"To specifically evaluate the quality of repair tissue in patient biopsies, the Histological Endpoint Committee of the International Cartilage Repair Society (ICRS) developed a Visual Assessment Histol","[91, 745, 578, 1418]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,5,paragraph_title,Histomorphometric Evaluation of Cartilage,"[602, 145, 997, 174]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Histomorphometric Evaluation of Cartilage""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
14,6,text,"Quantitative histomorphometry can be performed on human biopsies and animal repair tissue, using histomorphometric software. Negative controls using omission of primary antibody, isotype antibodies or","[600, 192, 1085, 576]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,7,text,"Repair tissue area can be measured using volume tools and thresholding software (for example, ImageJ, NIH, Bethesda, MD and Northern Eclipse, Mississauga, ON, Canada). Manual or automatic thresholding","[600, 576, 1086, 985]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,8,text,"A cautionary note in using percentage staining as the main structural outcome should be made. Strong staining for collagen type II and Safranin O can be obtained in structurally disintegrated samples,","[600, 985, 1086, 1132]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
14,9,paragraph_title,Evaluation of Subchondral Bone,"[602, 1164, 898, 1191]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Evaluation of Subchondral Bone""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
14,10,text,"The importance of subchondral bone health in cartilage repair is being increasingly recognized. $ ^{[68,89,102,125,127]} $ In animal cartilage repair models, subchondral cysts are abnormal and can be ","[600, 1199, 1086, 1418]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,0,header,Hoemann et al.,"[121, 82, 245, 104]",noise,0.9,"[""header label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
15,1,number,167,"[1075, 81, 1110, 104]",noise,0.9,"[""page number label""]",noise,0.9,body_zone,body_like,short_fragment,False,False
15,2,text,75% of the bone area is occupied by a cyst). The average score is used as the final cyst score for a particular defect. $ ^{43} $,"[119, 145, 602, 192]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,3,text,"Subchondral bone is histologically evaluated in the ICRS-I and ICRS-II scales, but the current scoring systems are limited in that different subchondral repair tissues can yield a similar score. For e","[118, 193, 604, 651]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,4,paragraph_title,Collagen Structural Organization,"[120, 684, 421, 711]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Collagen Structural Organization""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
15,5,text,"Collagen organization in adult hyaline articular cartilage is important for maintenance of tissue load-bearing capacity. $ ^{128} $ To observe zonal collagen organization, PLM can be performed on H&E-","[118, 720, 603, 1323]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
15,6,paragraph_title,Conclusions,"[120, 1356, 264, 1382]",section_heading,0.9,"[""explicit scholarly heading: Conclusions""]",section_heading,0.9,tail_nonref_hold_zone,heading_like,canonical_section_name,True,True
15,7,text,"Preclinical studies and RCTs for new cartilage repair strategies have successfully applied histological structural endpoints to evaluate the effects of treatment; in such studies, a control group must","[118, 1391, 602, 1467]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,tail_nonref_hold_zone,unknown_like,none,True,True
15,8,text,,"[626, 145, 1112, 577]",ocr_text_missing,0.8,"[""ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available""]",ocr_text_missing,0.8,body_zone,body_like,empty,True,True
15,9,paragraph_title,Acknowledgments and Funding,"[628, 601, 931, 625]",subsection_heading,0.6,"[""unnumbered paragraph_title, inferred level subsection_heading: Acknowledgments and Funding""]",subsection_heading,0.6,body_zone,heading_like,none,True,True
15,10,text,The authors thank Drs. Alberto Restrepo and Matthew Shive for advice on biopsy retrieval methods; Dr. William Stanish and Piramal Healthcare for providing selected human osteochondral samples; Gaoping,"[626, 648, 1113, 1011]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,11,paragraph_title,Declaration of Conflicting Interests,"[628, 1025, 967, 1050]",backmatter_boundary_candidate,0.5,"[""backmatter boundary candidate: Declaration of Conflicting Interests""]",backmatter_boundary_candidate,0.5,body_zone,heading_like,none,True,True
15,12,text,S. Méthot is an employee of Piramal Healthcare. None of the other authors has any conflicts or apparent conflicts of interest to declare in relation to this article.,"[627, 1057, 1110, 1128]",body_paragraph,0.6,"[""default body_paragraph for text label""]",body_paragraph,0.6,body_zone,body_like,none,True,True
15,13,paragraph_title,References,"[630, 1145, 740, 1168]",reference_heading,0.9,"[""references heading: References""]",reference_heading,0.9,reference_zone,heading_like,short_fragment,True,True
15,14,reference_content,"1. Alford JW, Cole BJ. Cartilage restoration, part 2: techniques, outcomes, and future directions. Am J Sports Med. 2005;33(3):443-60.","[641, 1179, 1108, 1245]",reference_item,0.85,"[""reference content label: 1. Alford JW, Cole BJ. Cartilage restoration, part 2: techni""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,15,reference_content,"2. Mithoefer K, McAdams TR, Scopp JM, Mandelbaum BR. Emerging options for treatment of articular cartilage injury in the athlete. Clin Sports Med. 2009;28(1):25-40.","[639, 1251, 1108, 1318]",reference_item,0.85,"[""reference content label: 2. Mithoefer K, McAdams TR, Scopp JM, Mandelbaum BR. Emergin""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,16,reference_content,"3. Cole BJ, Pascual-Garrido C, Grumet RC. Surgical management of articular cartilage defects in the knee. J Bone Joint Surg Am. 2009;91A(7):1778-90.","[640, 1323, 1109, 1390]",reference_item,0.85,"[""reference content label: 3. Cole BJ, Pascual-Garrido C, Grumet RC. Surgical managemen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
15,17,reference_content,"4. Bedi A, Feeley BT, Williams RJ. Management of articular cartilage defects of the knee. J Bone Joint Surg Am. 2010;92A(4):994-1009.","[640, 1395, 1110, 1461]",reference_item,0.85,"[""reference content label: 4. Bedi A, Feeley BT, Williams RJ. Management of articular c""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,0,number,168,"[98, 82, 132, 103]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
16,1,header,Cartilage 2(2),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
16,2,reference_content,"5. van Osch G, Brittberg M, Dennis JE, Bastiaansen-Jenniskens YM, Erben RG, Konttinen YT, Luyten FP. Cartilage repair: past and future. Lessons for regenerative medicine. J Cell Mol Med. 2009;13(5):79","[105, 147, 574, 238]",reference_item,0.85,"[""reference content label: 5. van Osch G, Brittberg M, Dennis JE, Bastiaansen-Jennisken""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,3,reference_content,"6. McFarland R, Kaiser A. Guidance for industry: preparation of IDEs and INDs for products intended to repair or replace knee cartilage. Rockville, MD: U.S. Department of Health and Human Services; 20","[105, 243, 574, 382]",reference_item,0.85,"[""reference content label: 6. McFarland R, Kaiser A. Guidance for industry: preparation""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,4,reference_content,"7. FDA. 38th meeting, topic I: Cellular, Tissue, and Gene Therapies Advisory Committee. Rockville, MD: U.S. Food and Drug Administration; 2005. Available from: http://www.fda.gov/ohrms/dockets/ac/05/t","[106, 387, 574, 478]",reference_item,0.85,"[""reference content label: 7. FDA. 38th meeting, topic I: Cellular, Tissue, and Gene Th""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,5,reference_content,"8. Hollander AP, Pidoux I, Reiner A, Rorabeck C, Bourne R, Poole AR. Damage to type II collagen in aging and osteoarthritis starts at the articular surface, originates around chondrocytes, and extends","[106, 483, 575, 599]",reference_item,0.85,"[""reference content label: 8. Hollander AP, Pidoux I, Reiner A, Rorabeck C, Bourne R, P""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,6,reference_content,9. Mankin HJ. The reaction of articular cartilage to injury and osteoarthritis (first of two parts). N Engl J Med. 1974;291(24):1285-92.,"[103, 603, 574, 647]",reference_item,0.85,"[""reference content label: 9. Mankin HJ. The reaction of articular cartilage to injury ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,7,reference_content,"10. Sabatini M, Lesur C, Thomas M, Chomel A, Anract P, de Nanteuil G, Pastoureau P. Effect of inhibition of matrix metalloproteinases on cartilage loss in vitro and in a guinea pig model of osteoarthr","[100, 651, 574, 742]",reference_item,0.85,"[""reference content label: 10. Sabatini M, Lesur C, Thomas M, Chomel A, Anract P, de Na""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,8,reference_content,"11. Pastoureau P, Hunziker E, Pelletier JP. Cartilage bone and synovial histomorphometry in animal models of osteoarthritis. Osteoarthritis Cartilage. 2010;18:S106-12.","[98, 747, 574, 814]",reference_item,0.85,"[""reference content label: 11. Pastoureau P, Hunziker E, Pelletier JP. Cartilage bone a""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,9,reference_content,"12. Kraus VB, Nevitt M, Sandell LJ. Summary of the OA biomarkers workshop 2009 biochemical biomarkers: biology, validation, and clinical studies. Osteoarthritis Cartilage. 2010;18(6):742-5.","[99, 819, 573, 911]",reference_item,0.85,"[""reference content label: 12. Kraus VB, Nevitt M, Sandell LJ. Summary of the OA biomar""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,10,reference_content,"13. Mankin HJ, Dorfman H, Lippiello L, Zarins A. Biochemical and metabolic abnormalities in articular cartilage from osteo-arthritic human hips. II: correlation of morphology with biochemical and meta","[99, 915, 573, 1030]",reference_item,0.85,"[""reference content label: 13. Mankin HJ, Dorfman H, Lippiello L, Zarins A. Biochemical""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,11,reference_content,"14. Hoemann CD. Molecular and biochemical assays of cartilage components. In: De Ceuninck F, Sabatini M, Pastoureau P, editors. Cartilage and osteoarthritis. Totowa, NJ: Humana Press; 2004:127-156.","[99, 1035, 573, 1125]",reference_item,0.85,"[""reference content label: 14. Hoemann CD. Molecular and biochemical assays of cartilag""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,12,reference_content,"15. Hunziker EB, Quinn TM, Hauselmann HJ. Quantitative structural organization of normal adult human articular cartilage. Osteoarthritis Cartilage. 2002;10(7):564-72.","[99, 1131, 573, 1199]",reference_item,0.85,"[""reference content label: 15. Hunziker EB, Quinn TM, Hauselmann HJ. Quantitative struc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,13,reference_content,"16. Li LP, Buschmann MD, Shirazi-Adl A. A fibril reinforced nonhomogeneous poroelastic model for articular cartilage: inhomogeneous response in unconfined compression. J Biomech. 2000;33(12):1533-41.","[100, 1203, 574, 1294]",reference_item,0.85,"[""reference content label: 16. Li LP, Buschmann MD, Shirazi-Adl A. A fibril reinforced ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,14,reference_content,"17. Armstrong CG, Mow VC. Variations in the intrinsic mechanical properties of human articular cartilage with age, degeneration, and water content. J Bone Joint Surg Am. 1087-64(1):88-94","[99, 1299, 573, 1390]",reference_item,0.85,"[""reference content label: 17. Armstrong CG, Mow VC. Variations in the intrinsic mechan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,15,reference_content,"18. TreppoS, KoeppH, QuanEC, ColeAA, KuettnerKE, Grodzinsky AJ. Comparison of biomechanical and biochemical properties","[98, 1394, 574, 1440]",reference_item,0.85,"[""reference content label: 18. TreppoS, KoeppH, QuanEC, ColeAA, KuettnerKE, Grodzinsky ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,16,reference_content,of cartilage from human knee and ankle pairs. J Orthop Res. 2000;18(5):739-48.,"[630, 147, 1082, 190]",reference_item,0.85,"[""reference content label: of cartilage from human knee and ankle pairs. J Orthop Res. ""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
16,17,reference_content,"19. Laasanen MS, Toyras J, Korhonen RK, Rieppo J, Saarakkala S, Nieminen MT, et al. Biomechanical properties of knee articular cartilage. Biorheology. 2003;40(1-3):133-40.","[607, 195, 1083, 263]",reference_item,0.85,"[""reference content label: 19. Laasanen MS, Toyras J, Korhonen RK, Rieppo J, Saarakkala""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,18,reference_content,"20. Legare A, Garon M, Guardo R, Savard P, Poole AR, Buschmann MD. Detection and analysis of cartilage degeneration by spatially resolved streaming potentials. J Orthop Res. 2002;20(4):819-26.","[606, 267, 1083, 358]",reference_item,0.85,"[""reference content label: 20. Legare A, Garon M, Guardo R, Savard P, Poole AR, Buschma""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,19,reference_content,"21. Rieppo J, Hyttinen MM, Halmesmaki E, Ruotsalainen H, Vasara A, Kiviranta I, et al. Changes in spatial collagen content and collagen network architecture in porcine articular cartilage during growt","[606, 363, 1083, 477]",reference_item,0.85,"[""reference content label: 21. Rieppo J, Hyttinen MM, Halmesmaki E, Ruotsalainen H, Vas""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,20,reference_content,"22. Changoor A, Tran-Khanh N, Methot S, Garon M, Hurtig M, Shive MS, Buschmann MB. A polarized light microscopy method for accurate and reliable grading of collagen organization in cartilage repair. O","[606, 482, 1083, 574]",reference_item,0.85,"[""reference content label: 22. Changoor A, Tran-Khanh N, Methot S, Garon M, Hurtig M, S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,21,reference_content,"23. Gilmore RS, Palfrey AJ. A histological study of human femoral condylar articular cartilage. J Anat. 1987;155:77-85.","[605, 578, 1083, 623]",reference_item,0.85,"[""reference content label: 23. Gilmore RS, Palfrey AJ. A histological study of human fe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,22,reference_content,"24. Wang FY, Ying Z, Duan XJ, Tan HB, Yang B, Guo L, et al. Histomorphometric analysis of adult articular calcified cartilage zone. J Struct Biol. 2009;168(3):359-65.","[607, 627, 1083, 695]",reference_item,0.85,"[""reference content label: 24. Wang FY, Ying Z, Duan XJ, Tan HB, Yang B, Guo L, et al. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,23,reference_content,"25. Gannon JM, Walker G, Fischer M, Carpenter R, Thompson RC, Oegema TR. Localization of Type-X collagen in canine growth plate and adult canine articular-cartilage. J Orthop Res. 1991;9(4):485-94.","[605, 699, 1083, 790]",reference_item,0.85,"[""reference content label: 25. Gannon JM, Walker G, Fischer M, Carpenter R, Thompson RC""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,24,reference_content,"26. Oegema TR, Carpenter RJ, Hofmeister F, Thompson RC. The interaction of the zone of calcified cartilage and subchondral bone in osteoarthritis. Microsc Res Tech. 1997;37(4):324-32.","[606, 795, 1083, 886]",reference_item,0.85,"[""reference content label: 26. Oegema TR, Carpenter RJ, Hofmeister F, Thompson RC. The ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,25,reference_content,"27. Gomoll A, Madry H, Knutsen G, van Dijk N, Seil R, Brittberg M, Kon E. The subchondral bone in articular cartilage repair: current problems in the surgical management. Knee Surg Sports Traumatol Ar","[606, 891, 1083, 983]",reference_item,0.85,"[""reference content label: 27. Gomoll A, Madry H, Knutsen G, van Dijk N, Seil R, Brittb""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,26,reference_content,28. Madry H. The subchondral bone: a new frontier in articular cartilage repair. Knee Surg Sports Traumatol Arthrosc. 2010;18(4):417-8.,"[605, 987, 1083, 1054]",reference_item,0.85,"[""reference content label: 28. Madry H. The subchondral bone: a new frontier in articul""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,27,reference_content,"29. Madry H, van Dijk C, Mueller-Gerbl M. The basic science of the subchondral bone. Knee Surg Sports Traumatol Arthrosc. 2010;18(4):419-33.","[605, 1059, 1084, 1126]",reference_item,0.85,"[""reference content label: 29. Madry H, van Dijk C, Mueller-Gerbl M. The basic science ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,28,reference_content,"30. Johnson DL, Urban WP, Caborn DNM, Vanarthos WJ, Carlson CS. Articular cartilage changes seen with magnetic resonance imaging-detected bone bruises associated with acute anterior cruciate ligament ","[605, 1131, 1084, 1223]",reference_item,0.85,"[""reference content label: 30. Johnson DL, Urban WP, Caborn DNM, Vanarthos WJ, Carlson ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,29,reference_content,"31. Burr DB, Schaffler MB. The involvement of subchondral mineralized tissues in osteoarthrosis: quantitative microscopic evidence. Microsc Res Tech. 1997;37(4):343-57.","[606, 1227, 1083, 1294]",reference_item,0.85,"[""reference content label: 31. Burr DB, Schaffler MB. The involvement of subchondral mi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,30,reference_content,"32. Wei XC, Messner K. Maturation-dependent durability of spontaneous cartilage repair in rabbit knee joint. J Biomed Mater Res. 1999;46(4):539-48.","[606, 1299, 1085, 1367]",reference_item,0.85,"[""reference content label: 32. Wei XC, Messner K. Maturation-dependent durability of sp""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
16,31,reference_content,"33. Shapiro F, Koide S, Glimcher MJ. Cell origin and differentiation in the repair of full-thickness defects of articular cartilage. J Bone Joint Surg Am. 1993;75A(4):532-53.","[606, 1371, 1084, 1439]",reference_item,0.85,"[""reference content label: 33. Shapiro F, Koide S, Glimcher MJ. Cell origin and differe""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,0,header,Hoemann et al.,"[122, 82, 244, 104]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
17,1,number,169,"[1076, 82, 1109, 103]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
17,2,reference_content,"34. Shamis LD, Bramlage LR, Gabel AA, Weisbrode S. Effect of subchondral drilling on repair of partial-thickness cartilage defects of third carpal bones in horses. Am J Vet Res. 1989;50(2):290-5.","[122, 146, 601, 237]",reference_item,0.85,"[""reference content label: 34. Shamis LD, Bramlage LR, Gabel AA, Weisbrode S. Effect of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,3,reference_content,"35. Breinan HA, Martin SD, Hsu HP, Spector M. Healing of canine articular cartilage defects treated with microfracture, a type-II collagen matrix, or cultured autologous chondrocytes. J Orthop Res. 20","[123, 243, 600, 335]",reference_item,0.85,"[""reference content label: 35. Breinan HA, Martin SD, Hsu HP, Spector M. Healing of can""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,4,reference_content,"36. Frisbie DD, Trotter GW, Powers BE, Rodkey WG, Steadman JR, Howard RD, et al. Arthroscopic subchondral bone plate microfracture technique augments healing of large chondral defects in the radial ca","[124, 339, 600, 454]",reference_item,0.85,"[""reference content label: 36. Frisbie DD, Trotter GW, Powers BE, Rodkey WG, Steadman J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,5,reference_content,"37. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous repair of full-thickness defects of articular cartilage in a goat model: a preliminary study. J Bone Joint Surg Am. 2001;83A(1):53-64.","[123, 459, 599, 549]",reference_item,0.85,"[""reference content label: 37. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,6,reference_content,"38. Gill TJ, McCulloch PC, Glasson SS, Blanchet T, Morris EA. Chondral defect repair after the microfracture procedure: a nonhuman primate model. Am J Sports Med. 2005;33(5):680-5.","[123, 555, 600, 623]",reference_item,0.85,"[""reference content label: 38. Gill TJ, McCulloch PC, Glasson SS, Blanchet T, Morris EA""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,7,reference_content,"39. Fortier LA, Potter HG, Rickey EJ, Schnabel LV, Foo LF, Chong LR, et al. Concentrated bone marrow aspirate improves full-thickness cartilage repair compared with microfracture in the equine model. ","[124, 628, 600, 719]",reference_item,0.85,"[""reference content label: 39. Fortier LA, Potter HG, Rickey EJ, Schnabel LV, Foo LF, C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,8,reference_content,"40. Vachon AM, McIlwraith CW, Keeley FW. Biochemical-study of repair of induced osteochondral defects of the distal portion of the radial carpal bone in horses by use of periosteal autografts. Am J Ve","[124, 724, 599, 815]",reference_item,0.85,"[""reference content label: 40. Vachon AM, McIlwraith CW, Keeley FW. Biochemical-study o""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,9,reference_content,"41. O'Driscoll SW, Keeley FW, Salter RB. Durability of regenerated articular cartilage produced by free autogenous periosteal grafts in major full-thickness defects in joint surfaces under the influen","[123, 819, 600, 935]",reference_item,0.85,"[""reference content label: 41. O'Driscoll SW, Keeley FW, Salter RB. Durability of regen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,10,reference_content,"42. Hurtig MB, Fretz PB, Doige CE, Schnurr DL. Effects of lesion size and location on equine articular cartilage repair. Can J Vet Res. 1988;52(1):137-46.","[123, 939, 599, 1007]",reference_item,0.85,"[""reference content label: 42. Hurtig MB, Fretz PB, Doige CE, Schnurr DL. Effects of le""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,11,reference_content,"43. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, Shive MS, Buschmann MD. Chitosan-glycerol phosphate/blood implants improve hyaline cartilage repair in ovine microfracture defects. J Bone Jo","[123, 1011, 600, 1103]",reference_item,0.85,"[""reference content label: 43. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,12,reference_content,"44. Hoemann CD, Chen G, Marchand C, Sun J, Tran-Khanh N, Chevrier A, et al. Scaffold-guided subchondral bone repair: implication of neutrophils and alternatively activated arginase-1+ macrophages. Am ","[123, 1107, 599, 1199]",reference_item,0.85,"[""reference content label: 44. Hoemann CD, Chen G, Marchand C, Sun J, Tran-Khanh N, Che""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,13,reference_content,"45. Driesang IM, Hunziker EB. Delamination rates of tissue flaps used in articular cartilage repair. J Orthop Res. 2000;18(6):909-11.","[123, 1202, 599, 1247]",reference_item,0.85,"[""reference content label: 45. Driesang IM, Hunziker EB. Delamination rates of tissue f""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,14,reference_content,"46. Dell'Accio F, Vanlauwe J, Bellemans J, Neys J, De Bari C, Luyten FP. Expanded phenotypically stable chondrocytes persist in the repair tissue and contribute to cartilage matrix formation and struc","[124, 1252, 600, 1367]",reference_item,0.85,"[""reference content label: 46. Dell'Accio F, Vanlauwe J, Bellemans J, Neys J, De Bari C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,15,reference_content,"47. Chen G, Sun J, Lascau-Coman V, Chevrier A, Marchand C, Hoemann CD. Acute osteoclast activity following subchondral drilling is promoted by chitosan and associated with improved cartilage tissue in","[122, 1371, 599, 1464]",reference_item,0.85,"[""reference content label: 47. Chen G, Sun J, Lascau-Coman V, Chevrier A, Marchand C, H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,16,reference_content,"48. Mainil-Varlet P, Rieser F, Grogan S, Mueller W, Saager C, Jakob RP. Articular cartilage repair using a tissue-engineered cartilage-like implant: an animal study. Osteoarthritis Cartilage. 2001;9:S","[632, 147, 1109, 238]",reference_item,0.85,"[""reference content label: 48. Mainil-Varlet P, Rieser F, Grogan S, Mueller W, Saager C""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,17,reference_content,"49. Erggelet C, Neumann K, Endres M, Haberstroh K, Sittinger M, Kaps C. Regeneration of ovine articular cartilage defects by cell-free polymer-based implants. Biomaterials. 2007;28(36):5570-80.","[631, 242, 1109, 334]",reference_item,0.85,"[""reference content label: 49. Erggelet C, Neumann K, Endres M, Haberstroh K, Sittinger""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,18,reference_content,"50. Dorotka R, Windberger U, Macfelda K, Bindreiter U, Toma C, Nehrer S. Repair of articular cartilage defects treated by microfracture and a three-dimensional collagen matrix. Biomaterials. 2005;26(1","[631, 339, 1109, 430]",reference_item,0.85,"[""reference content label: 50. Dorotka R, Windberger U, Macfelda K, Bindreiter U, Toma ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,19,reference_content,"51. Convery FR, Akeson WH, Keown GH. The repair of large osteochondral defects: an experimental study in horses. Clin Orthop Relat Res. 1972;82:253-62.","[632, 435, 1109, 503]",reference_item,0.85,"[""reference content label: 51. Convery FR, Akeson WH, Keown GH. The repair of large ost""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,20,reference_content,"52. Chevrier A, Hoemann CD, Sun J, Buschmann MD. Chitosanglycerol phosphate/blood implants increase cell recruitment, transient vascularization and subchondral bone remodeling in drilled cartilage def","[631, 507, 1109, 622]",reference_item,0.85,"[""reference content label: 52. Chevrier A, Hoemann CD, Sun J, Buschmann MD. Chitosangly""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,21,reference_content,"53. Frisbie DD, Oxford JT, Southwood L, Trotter GW, Rodkey WG, Steadman JR, et al. Early events in cartilage repair after subchondral bone microfracture. Clin Orthop Relat Res. 2003;407:215-27.","[632, 627, 1109, 718]",reference_item,0.85,"[""reference content label: 53. Frisbie DD, Oxford JT, Southwood L, Trotter GW, Rodkey W""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,22,reference_content,54. Hunziker EB. Articular cartilage repair: basic science and clinical progress. A review of the current status and prospects. Osteoarthritis Cartilage. 2002;10(6):432-63.,"[632, 724, 1109, 791]",reference_item,0.85,"[""reference content label: 54. Hunziker EB. Articular cartilage repair: basic science a""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,23,reference_content,"55. Rutgers M, van Pelt MJP, Dhert WJA, Creemers LB, Saris DBF. Evaluation of histological scoring systems for tissue-engineered, repaired and osteoarthritic cartilage. Osteoarthritis Cartilage. In pr","[633, 795, 1108, 887]",reference_item,0.85,"[""reference content label: 55. Rutgers M, van Pelt MJP, Dhert WJA, Creemers LB, Saris D""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,24,reference_content,"56. Knutsen G, Engebretsen L, Ludvigsen TC, Drogset JO, Grontvedt T, Solheim E, et al. Autologous chondrocyte implantation compared with microfracture in the knee: a randomized trial. J Bone Joint Sur","[632, 892, 1108, 983]",reference_item,0.85,"[""reference content label: 56. Knutsen G, Engebretsen L, Ludvigsen TC, Drogset JO, Gron""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,25,reference_content,"57. Knutsen G, Drogset JO, Engebretsen L, Grontvedt T, Isaksen V, Ludvigsen TC, et al. A randomized trial comparing autologous chondrocyte implantation with microfracture. J Bone Joint Surg Am. 2007;8","[632, 988, 1109, 1079]",reference_item,0.85,"[""reference content label: 57. Knutsen G, Drogset JO, Engebretsen L, Grontvedt T, Isaks""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,26,reference_content,"58. Brun P, Dickinson S, Zavan B, Cortivo R, Hollander A, Abatangelo G. Characteristics of repair tissue in second-look and third-look biopsies from patients treated with engineered cartilage: relatio","[632, 1084, 1109, 1198]",reference_item,0.85,"[""reference content label: 58. Brun P, Dickinson S, Zavan B, Cortivo R, Hollander A, Ab""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,27,reference_content,"59. Gikas PD, Morris T, Carrington R, Skinner J, Bentley G, Briggs T. A correlation between the timing of biopsy after autologous chondrocyte implantation and the histological appearance. J Bone Joint","[632, 1203, 1109, 1295]",reference_item,0.85,"[""reference content label: 59. Gikas PD, Morris T, Carrington R, Skinner J, Bentley G, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,28,reference_content,"60. Mainil-Varlet P, Van Damme B, Nesic D, Knutsen G, Kandel R, Roberts S. A new histology scoring system for the assessment of the quality of human cartilage repair: ICRS II. Am J Sports Med. 2010;38","[632, 1299, 1109, 1390]",reference_item,0.85,"[""reference content label: 60. Mainil-Varlet P, Van Damme B, Nesic D, Knutsen G, Kandel""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
17,29,reference_content,"61. Saris DB, Vanlauwe J, Victor J, Haspl M, Bohnsack M, Fortems Y, et al. Characterized chondrocyte implantation results in better structural repair when treating symptomatic","[632, 1395, 1110, 1464]",reference_item,0.85,"[""reference content label: 61. Saris DB, Vanlauwe J, Victor J, Haspl M, Bohnsack M, For""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
18,0,number,170,"[98, 82, 132, 102]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
18,1,header,Cartilage 2(2),"[973, 81, 1084, 106]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
18,2,reference_content,cartilage defects of the knee in a randomized controlled trial versus microfracture. Am J Sports Med. 2008;36(2):235-46.,"[122, 147, 574, 191]",reference_item,0.85,"[""reference content label: cartilage defects of the knee in a randomized controlled tri""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
18,3,reference_content,"62. Briggs TWR, Mahroof S, David LA, Flannelly DJ, Pringle J, Bayliss M. Histological evaluation of chondral defects after autologous chondrocyte implantation of the knee. J Bone Joint Surg Br. 2003;8","[98, 195, 575, 287]",reference_item,0.85,"[""reference content label: 62. Briggs TWR, Mahroof S, David LA, Flannelly DJ, Pringle J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,4,reference_content,"63. Frisbie DD, Morisset S, Ho CP, Rodkey WG, Steadman JR, McIlwraith CW. Effects of calcified cartilage on healing of chondral defects treated with microfracture in horses. Am J Sports Med. 2006;34(1","[98, 291, 575, 382]",reference_item,0.85,"[""reference content label: 63. Frisbie DD, Morisset S, Ho CP, Rodkey WG, Steadman JR, M""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,5,reference_content,64. Insall JN. Intra-articular surgery for degenerative arthritis of the knee: a report of the work of the late K. H. Pridie. J Bone Joint Surg Br. 1967;49(2):211-28.,"[97, 387, 575, 454]",reference_item,0.85,"[""reference content label: 64. Insall JN. Intra-articular surgery for degenerative arth""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,6,reference_content,"65. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongialization: a new treatment for diseased patellae. Clin Orthop Relat Res. 1979;144:74-83.","[98, 459, 574, 526]",reference_item,0.85,"[""reference content label: 65. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongializati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,7,reference_content,"66. Bouwmeester P, Kuijer R, Terwindt-Rouwenhorst E, van der Linden T, Bulstra K. Histological and biochemical evaluation of perichondrial transplants in human articular cartilage defects. J Orthop Re","[98, 531, 574, 623]",reference_item,0.85,"[""reference content label: 66. Bouwmeester P, Kuijer R, Terwindt-Rouwenhorst E, van der""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,8,reference_content,"67. Nehrer S, Spector M, Minas T. Histologic analysis of tissue after failed cartilage repair procedures. Clin Orthop. 1999;365:149-62.","[97, 627, 573, 694]",reference_item,0.85,"[""reference content label: 67. Nehrer S, Spector M, Minas T. Histologic analysis of tis""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,9,reference_content,"68. Mainil-Varlet P, Aigner T, Brittberg M, Bullough P, Hollander A, Hunziker E, et al. Histological assessment of cartilage repair: a report by the Histology Endpoint Committee of the International C","[98, 699, 575, 814]",reference_item,0.85,"[""reference content label: 68. Mainil-Varlet P, Aigner T, Brittberg M, Bullough P, Holl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,10,reference_content,"69. Roberts S, Menage J, Sandell LJ, Evans EH, Richardson JB. Immunohistochemical study of collagen types I and II and procollagen IIA in human cartilage repair tissue following autologous chondrocyte","[98, 819, 573, 912]",reference_item,0.85,"[""reference content label: 69. Roberts S, Menage J, Sandell LJ, Evans EH, Richardson JB""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,11,reference_content,"70. Hollander AP, Dickinson SC, Sims TJ, Brun P, Cortivo R, Kon E, et al. Maturation of tissue engineered cartilage implanted in injured and osteoarthritic human knees. Tissue Eng. 2006;12(7):1787-98.","[98, 916, 574, 983]",reference_item,0.85,"[""reference content label: 70. Hollander AP, Dickinson SC, Sims TJ, Brun P, Cortivo R, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,12,reference_content,"71. ClinicalTrials. A Randomized, Comparative Multicenter Clinical Trial Evaluating BST-CarGel™ and Microfracture in Repair of Focal Articular Cartilage Lesions on the Femoral Condyle. Montreal, Canad","[99, 988, 573, 1102]",reference_item,0.85,"[""reference content label: 71. ClinicalTrials. A Randomized, Comparative Multicenter Cl""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,13,reference_content,"72. Moriya T, Wada Y, Watanabe A, Sasho T, Nakagawa K, Mainil-Varlet P, Moriya H. Evaluation of reparative cartilage after autologous chondrocyte implantation for osteochondritis dissecans: histology,","[99, 1107, 574, 1222]",reference_item,0.85,"[""reference content label: 72. Moriya T, Wada Y, Watanabe A, Sasho T, Nakagawa K, Maini""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,14,reference_content,"73. Peterfy CG, Guermazi A, Zaim S, Tirman PFJ, Miaux Y, White D, et al. Whole-organ magnetic resonance imaging score (WORMS) of the knee in osteoarthritis. Osteoarthritis Cartilage. 2004;12(3):177-90","[98, 1227, 574, 1318]",reference_item,0.85,"[""reference content label: 73. Peterfy CG, Guermazi A, Zaim S, Tirman PFJ, Miaux Y, Whi""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,15,reference_content,"74. Mithoefer K, Williams RJ 3rd, Warren RF, Potter HG, Spock CR, Jones EC, et al. The microfracture technique for the treatment of articular cartilage lesions in the knee: a prospective cohort study.","[98, 1323, 575, 1415]",reference_item,0.85,"[""reference content label: 74. Mithoefer K, Williams RJ 3rd, Warren RF, Potter HG, Spoc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,16,reference_content,"75. Watanabe A, Wada Y, Obata T, Ueda T, Tamura M, Ikehira H, Moriya H. Delayed gadolinium-enhanced MR to determine glycosaminoglycan concentration in reparative cartilage after autologous chondrocyte","[606, 147, 1084, 262]",reference_item,0.85,"[""reference content label: 75. Watanabe A, Wada Y, Obata T, Ueda T, Tamura M, Ikehira H""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
18,17,reference_content,"76. Tins BJ, McCall IW, Takahashi T, Cassar-Pullicino V, Roberts S, Ashton B, Richardson J. Autologous chondrocyte implantation in knee joint: MR imaging and histologic features at 1-year follow-up. R","[607, 267, 1084, 358]",reference_item,0.85,"[""reference content label: 76. Tins BJ, McCall IW, Takahashi T, Cassar-Pullicino V, Rob""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,18,reference_content,"77. Mithoefer K, Saris DBF, Farr J, Kon E, Zaslav K, Cole BJ et al. Guidelines for the design and conduct of clinical studies in knee articular cartilage repair: international cartilage repair society","[606, 363, 1084, 501]",reference_item,0.85,"[""reference content label: 77. Mithoefer K, Saris DBF, Farr J, Kon E, Zaslav K, Cole BJ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,19,reference_content,"78. Trattnig S, Winalski CS, Marlovits S, Jurvelin JS, Welsch GH, and Potter HG. Magnetic resonance imaging of cartilage repair: a review. Cartilage 2011;2:5-26.","[606, 507, 1083, 575]",reference_item,0.85,"[""reference content label: 78. Trattnig S, Winalski CS, Marlovits S, Jurvelin JS, Welsc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,20,reference_content,"79. Curl WW, Krome J, Gordon ES, Rushing J, Smith BP, Poehling GG. Cartilage injuries: a review of 31,516 knee arthroscopies. Arthroscopy. 1997;13(4):456-60.","[606, 578, 1083, 647]",reference_item,0.85,"[""reference content label: 79. Curl WW, Krome J, Gordon ES, Rushing J, Smith BP, Poehli""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,21,reference_content,"80. Steadman JR, Rodkey WG, Singleton SB, Briggs KK. Microfracture technique for full-thickness chondral defects: technique and clinical results. Oper Tech Orthop. 1997;7(4):300-4.","[606, 651, 1083, 741]",reference_item,0.85,"[""reference content label: 80. Steadman JR, Rodkey WG, Singleton SB, Briggs KK. Microfr""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
18,22,reference_content,"81. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O, Peterson L. Treatment of deep cartilage defects in the knee with autologous chondrocyte transplantation. N Engl J Med. 1994;331(14):889-95","[606, 746, 1084, 837]",reference_item,0.85,"[""reference content label: 81. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,23,reference_content,"82. Shive MS, Hoemann CD, Restrepo A, Hurtig MB, Duval N, Ranger P, et al. BST-CarGel: in situ chondroinduction for cartilage repair. Oper Tech Orthop. 2006;16(4):271-8.","[606, 843, 1083, 912]",reference_item,0.85,"[""reference content label: 82. Shive MS, Hoemann CD, Restrepo A, Hurtig MB, Duval N, Ra""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,24,reference_content,"83. Henderson I, Francisco R, Oakes B, Cameron J. Autologous chondrocyte implantation for treatment of focal chondral defects of the knee: a clinical, arthroscopic, MRI and histologic evaluation at 2 ","[606, 916, 1083, 1007]",reference_item,0.85,"[""reference content label: 83. Henderson I, Francisco R, Oakes B, Cameron J. Autologous""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,25,reference_content,"84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghinelli D, Gobbi A, et al. Articular cartilage engineering with Hyalograft (R) C: 3-year clinical results. Clin Orthop Relat Res. 2005;435:96-1","[606, 1011, 1083, 1102]",reference_item,0.85,"[""reference content label: 84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghin""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
18,26,reference_content,"85. Peterson L, Minas T, Brittberg M, Lindahl A. Treatment of osteochondritis dissecans of the knee with autologous chondrocyte transplantation: results at two to ten years. J Bone Joint Surg Am. 2003","[606, 1107, 1084, 1198]",reference_item,0.85,"[""reference content label: 85. Peterson L, Minas T, Brittberg M, Lindahl A. Treatment o""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
18,27,reference_content,"86. Henderson I, Lavigne P, Valenzuela H, Oakes B. Autologous chondrocyte implantation: superior biologic properties of hyaline cartilage repairs. Clin Orthop Relat Res. 2007;455:253-61.","[605, 1203, 1083, 1271]",reference_item,0.85,"[""reference content label: 86. Henderson I, Lavigne P, Valenzuela H, Oakes B. Autologou""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,28,reference_content,"87. Vasara AI, Hyttinen MM, Lammi MJ, Lammi PE, Langsjo TK, Lindahl A, et al. Subchondral bone reaction associated with chondral defect and attempted cartilage repair in goats. Calcif Tissue Int. 2004","[605, 1276, 1083, 1366]",reference_item,0.85,"[""reference content label: 87. Vasara AI, Hyttinen MM, Lammi MJ, Lammi PE, Langsjo TK, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
18,29,reference_content,"88. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of","[605, 1371, 1086, 1416]",reference_item,0.85,"[""reference content label: 88. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Cap""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,0,header,Hoemann et al.,"[122, 82, 244, 104]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
19,1,number,171,"[1076, 81, 1108, 103]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
19,2,reference_content,"large, full-thickness defects of articular-cartilage. J Bone Joint Surg Am. 1994;76A(4):579-92.","[160, 147, 599, 191]",reference_item,0.85,"[""reference content label: large, full-thickness defects of articular-cartilage. J Bone""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
19,3,reference_content,"89. Hoemann CD, Sun J, McKee MD, Chevrier A, Rossomacha E, Rivard GE, et al. Chitosan-glycerol phosphate/blood implants elicit hyaline cartilage repair integrated with porous subchondral bone in micro","[132, 196, 600, 309]",reference_item,0.85,"[""reference content label: 89. Hoemann CD, Sun J, McKee MD, Chevrier A, Rossomacha E, R""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,4,reference_content,"90. Brittberg M, Nilsson A, Lindahl A, Ohlsson C, Peterson L. Rabbit articular cartilage defects treated with autologous cultured chondrocytes. Clin Orthop Relat Res. 1996;326:270-83.","[132, 314, 599, 383]",reference_item,0.85,"[""reference content label: 90. Brittberg M, Nilsson A, Lindahl A, Ohlsson C, Peterson L""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,5,reference_content,"91. Ahern BJ, Parvizi J, Boston R, Schaer TP. Preclinical animal models in single site cartilage defect testing: a systematic review. Osteoarthritis Cartilage. 2009;17(6):705-13.","[131, 387, 599, 454]",reference_item,0.85,"[""reference content label: 91. Ahern BJ, Parvizi J, Boston R, Schaer TP. Preclinical an""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,6,reference_content,"92. Frisbie DD, Cross MW, McIlwraith CW. A comparative study of articular cartilage thickness in the stifle of animal species used in human pre-clinical studies compared to articular cartilage thickne","[132, 459, 599, 574]",reference_item,0.85,"[""reference content label: 92. Frisbie DD, Cross MW, McIlwraith CW. A comparative study""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,7,reference_content,"93. Temple MM, Bae WC, Chen MQ, Lotz M, Amiel D, Coufts RD, Sah RL. Age- and site-associated biomechanical weakening of human articular cartilage of the femoral condyle. Osteoarthritis Cartilage. 2007","[132, 579, 599, 670]",reference_item,0.85,"[""reference content label: 93. Temple MM, Bae WC, Chen MQ, Lotz M, Amiel D, Coufts RD, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,8,reference_content,"94. Nixon AJ, Fortier LA, Williams J, Mohammed H. Enhanced repair of extensive articular defects by insulin-like growth factor-I-laden fibrin composites. J Orthop Res. 1999;17(4):475-87.","[132, 675, 599, 743]",reference_item,0.85,"[""reference content label: 94. Nixon AJ, Fortier LA, Williams J, Mohammed H. Enhanced r""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,9,reference_content,"95. Breinan HA, Minas T, Hsu HP, Nehrer S, Sledge CB, Spector M. Effect of cultured autologous chondrocytes on repair of chondral defects in a canine model. J Bone Joint Surg Am. 1997;79(10):1439-51.","[132, 747, 599, 837]",reference_item,0.85,"[""reference content label: 95. Breinan HA, Minas T, Hsu HP, Nehrer S, Sledge CB, Specto""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,10,reference_content,"96. Roberts S, McCall I, Darby A, Menage J, Evans H, Harrison P, Richardson J. Autologous chondrocyte implantation for cartilage repair: monitoring its success by magnetic resonance imaging and histol","[132, 843, 600, 935]",reference_item,0.85,"[""reference content label: 96. Roberts S, McCall I, Darby A, Menage J, Evans H, Harriso""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,11,reference_content,"97. Horas U, Pelinkovic D, Herr G, Aigner T, Schnettler R. Autologous chondrocyte implantation and osteochondral cylinder transplantation in cartilage repair of the knee joint: a prospective, comparat","[132, 939, 599, 1030]",reference_item,0.85,"[""reference content label: 97. Horas U, Pelinkovic D, Herr G, Aigner T, Schnettler R. A""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,12,reference_content,"98. Saris DBF, Vanlauwe J, Victor J, Almqvist KF, Verdonk R, Bellemans J, Luyten FP. Treatment of symptomatic cartilage defects of the knee: characterized chondrocyte implantation results in better cl","[132, 1035, 600, 1174]",reference_item,0.85,"[""reference content label: 98. Saris DBF, Vanlauwe J, Victor J, Almqvist KF, Verdonk R,""]",reference_item,0.85,reference_zone,reference_like,heading_numbered,True,True
19,13,reference_content,"99. Bartlett W, Skinner JA, Gooding CR, Carrington RWJ, Flanagan AM, Briggs TWR, Bentley G. Autologous chondrocyte implantation versus matrix-induced autologous chondrocyte implantation for osteochond","[130, 1179, 600, 1294]",reference_item,0.85,"[""reference content label: 99. Bartlett W, Skinner JA, Gooding CR, Carrington RWJ, Flan""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,14,reference_content,"100. Hendrickson DA, Nixon AJ, Grande DA, Todhunter RJ, Minor RM, Erb H, Lust G. Chondrocyte-fibrin matrix transplants for resurfacing extensive articular-cartilage defects. I Orthon Res. 1004·12(A)·A","[125, 1299, 599, 1390]",reference_item,0.85,"[""reference content label: 100. Hendrickson DA, Nixon AJ, Grande DA, Todhunter RJ, Mino""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,15,reference_content,"101. Hurtig M, Buschmann MD, Fortier L, Hoemann CD, Hunziker EB, Jurvelin JS, et al. Pre-Clinical Studies for Cartilage","[124, 1394, 601, 1440]",reference_item,0.85,"[""reference content label: 101. Hurtig M, Buschmann MD, Fortier L, Hoemann CD, Hunziker""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,16,reference_content,Repair: Recommendations from the International Cartilage Repair Society. In Press.,"[669, 147, 1108, 191]",reference_item,0.85,"[""reference content label: Repair: Recommendations from the International Cartilage Rep""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
19,17,reference_content,"102. Pineda S, Pollack A, Stevenson S, Goldberg V, Caplan A. A semiquantitative scale for histologic grading of articular-cartilage repair. Acta Anatomica. 1992;143(4):335-40.","[633, 195, 1109, 263]",reference_item,0.85,"[""reference content label: 102. Pineda S, Pollack A, Stevenson S, Goldberg V, Caplan A.""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,18,reference_content,"103. Selmi TAS, Verdonk P, Chambat P, Dubrana F, Potel JF, Barnouin L, Neyret P. Autologous chondrocyte implantation in a novel alginate-agarose hydrogel: outcome at two years. J Bone Joint Surg Br. 2","[634, 267, 1108, 358]",reference_item,0.85,"[""reference content label: 103. Selmi TAS, Verdonk P, Chambat P, Dubrana F, Potel JF, B""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,19,reference_content,"104. Henderson IJP, Tuy B, Connell D, Oakes B, Hettwer WH. Prospective clinical study of autologous chondrocyte implantation and correlation with MRI at three and 12 months. J Bone Joint Surg Br. 2003","[633, 363, 1109, 454]",reference_item,0.85,"[""reference content label: 104. Henderson IJP, Tuy B, Connell D, Oakes B, Hettwer WH. P""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,20,reference_content,105. Kristensen HK. An improved method of decalcification. Stain Technol. 1948;23(3):151-4.,"[633, 459, 1107, 502]",reference_item,0.85,"[""reference content label: 105. Kristensen HK. An improved method of decalcification. S""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,21,reference_content,"106 Hunziker EB, Michel M, Studer D. Ultrastructure of adult human articular cartilage matrix after cryotechnical processing. Microsc Res Tech. 1997;37(4):271-84.","[634, 507, 1109, 575]",reference_item,0.85,"[""reference content label: 106 Hunziker EB, Michel M, Studer D. Ultrastructure of adult""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,22,reference_content,"107. Chevrier A, Rossomacha E, Buschmann MD, Hoemann CD. Optimization of histoprocessing methods to detect glycosaminoglycan, collagen type II, and collagen type I in decalcified rabbit osteochondral ","[634, 579, 1109, 670]",reference_item,0.85,"[""reference content label: 107. Chevrier A, Rossomacha E, Buschmann MD, Hoemann CD. Opt""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
19,23,reference_content,108. Rosen AD. End-point determination in EDTA decalcification using ammonium oxalate. Stain Technol. 1981;56(1):48-9.,"[633, 675, 1107, 719]",reference_item,0.85,"[""reference content label: 108. Rosen AD. End-point determination in EDTA decalcificati""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,24,reference_content,"109. Qiu YS, Shahgaldi BF, Revell WJ, Heatley FW. Observations of subchondral plate advancement during osteochondral repair: a histomorphometric and mechanical study in the rabbit femoral condyle. Ost","[633, 723, 1109, 815]",reference_item,0.85,"[""reference content label: 109. Qiu YS, Shahgaldi BF, Revell WJ, Heatley FW. Observatio""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,25,reference_content,"110. Hoemann CD, Sun J, Legare A, McKee MD, Buschmann MD. Tissue engineering of cartilage using an injectable and adhesive chitosan-based cell-delivery vehicle. Osteoarthritis Cartilage. 2005;13(4):31","[633, 819, 1109, 911]",reference_item,0.85,"[""reference content label: 110. Hoemann CD, Sun J, Legare A, McKee MD, Buschmann MD. Ti""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,26,reference_content,"111. Niederauer GG, Slivka MA, Leatherbury NC, Korvick DL, Harroff HH, Ehler WC, et al. Evaluation of multiphase implants for repair of focal osteochondral defects in goats. Biomaterials. 2000;21(24):","[633, 915, 1109, 1007]",reference_item,0.85,"[""reference content label: 111. Niederauer GG, Slivka MA, Leatherbury NC, Korvick DL, H""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,27,reference_content,"112. Griffiths G. Quantitative aspects of immunocytochemistry: Estimation of volume density and surface density in practice. In: Griffiths G, editor. Fine structure immunocytochemistry. 377-383 Berlin","[633, 1011, 1108, 1102]",reference_item,0.85,"[""reference content label: 112. Griffiths G. Quantitative aspects of immunocytochemistr""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,28,reference_content,113. Rosenberg L. Chemical basis for the histological use of safranin O in the study of articular cartilage. J Bone Joint Surg Am. 1971;53(1):69-82.,"[633, 1106, 1108, 1174]",reference_item,0.85,"[""reference content label: 113. Rosenberg L. Chemical basis for the histological use of""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,29,reference_content,"114. Bulstra SK, Drukker J, Kuijer R, Buurman WA, Vanderlinden AJ. Thionin staining of paraffin and plastic embedded sections of cartilage. Biotech Histochem. 1993;68(1):20-8.","[633, 1179, 1109, 1247]",reference_item,0.85,"[""reference content label: 114. Bulstra SK, Drukker J, Kuijer R, Buurman WA, Vanderlind""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,30,reference_content,"115. Hoemann CD, Tran-Khanh N, Lascau-Coman V, Garon M, Chen H, Jarry C, et al. Quantitative histomorphometry of collagen types I & II and safranin-O in human osteochondral biopsies. Miami: 2009. Conf","[634, 1251, 1110, 1367]",reference_item,0.85,"[""reference content label: 115. Hoemann CD, Tran-Khanh N, Lascau-Coman V, Garon M, Chen""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
19,31,reference_content,"116. Zhu Y, Oganesian A, Keene DR, Sandell LJ. Type IIA procollagen containing the cysteine-rich amino propeptide is deposited in the extracellular matrix of prechondrogenic","[633, 1371, 1111, 1440]",reference_item,0.85,"[""reference content label: 116. Zhu Y, Oganesian A, Keene DR, Sandell LJ. Type IIA proc""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,0,number,172,"[98, 82, 132, 103]",noise,0.9,"[""page number label""]",noise,0.9,,unknown_like,short_fragment,False,False
20,1,header,Cartilage 2(2),"[973, 82, 1084, 105]",noise,0.9,"[""header label""]",noise,0.9,,unknown_like,short_fragment,False,False
20,2,reference_content,tissue and binds to TGF-beta 1 and BMP-2. J Cell Biol. 1999;144(5):1069-80.,"[135, 147, 572, 190]",reference_item,0.85,"[""reference content label: tissue and binds to TGF-beta 1 and BMP-2. J Cell Biol. 1999;""]",reference_item,0.85,reference_zone,unknown_like,none,True,True
20,3,reference_content,"117. Roberts S, Hollander AP, Caterson B, Menage J, Richardson JB. Matrix turnover in human cartilage repair tissue in autologous chondrocyte implantation. Arthritis Rheum. 2001;44(11):2586-98.","[100, 195, 573, 286]",reference_item,0.85,"[""reference content label: 117. Roberts S, Hollander AP, Caterson B, Menage J, Richards""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,4,reference_content,"118. Kreuz PC, Erggelet C, Steinwachs MR, Krause SJ, Lahm A, Niemeyer P, et al. Microfracture of chondral defects in the knee associated with different results in patients aged 40 years or younger? Ar","[99, 291, 574, 383]",reference_item,0.85,"[""reference content label: 118. Kreuz PC, Erggelet C, Steinwachs MR, Krause SJ, Lahm A,""]",reference_item,0.85,reference_zone,unknown_like,heading_numbered,True,True
20,5,reference_content,"119. Temple-Wong MM, Bae WC, Chen MQ, Bugbee WD, Amiel D, Coutts RD, et al. Biomechanical, structural, and biochemical indices of degenerative and osteoarthritic deterioration of adult human articular","[100, 387, 574, 503]",reference_item,0.85,"[""reference content label: 119. Temple-Wong MM, Bae WC, Chen MQ, Bugbee WD, Amiel D, Co""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,6,reference_content,"120. von Rechenberg B, Akens MK, Nadler D, Bittmann P, Zlinszky K, Kutter A, et al. Changes in subchondral bone in cartilage resurfacing: an experimental study in sheep using different types of osteoc","[99, 507, 575, 623]",reference_item,0.85,"[""reference content label: 120. von Rechenberg B, Akens MK, Nadler D, Bittmann P, Zlins""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,7,reference_content,"121. Méthot S, Hoemann CD, Rossomacha E, Restrepo A, Stanish WD, MacDonald P, et al. ICRS histology scores of biopsies from an interim analysis of a randomized controlled clinical trial show significa","[99, 628, 574, 791]",reference_item,0.85,"[""reference content label: 121. M\u00e9thot S, Hoemann CD, Rossomacha E, Restrepo A, Stanish""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,8,reference_content,"122. Shrout PE, Fleiss JL. Intraclass correlations: uses in assessing rater reliability. Psychol Bull. 1979;86:420-8.","[98, 795, 574, 839]",reference_item,0.85,"[""reference content label: 122. Shrout PE, Fleiss JL. Intraclass correlations: uses in ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,9,reference_content,"123. Roos EM, Engelhart L, Ranstam J, Anderson AF, Irrgang JJ, Marx RG, Tegner Y, Davis AM. ICRS recommendation document: patient-reported outcome instruments for use in patients with articular cartil","[607, 148, 1084, 285]",reference_item,0.85,"[""reference content label: 123. Roos EM, Engelhart L, Ranstam J, Anderson AF, Irrgang J""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,10,reference_content,"124. O'Driscoll SW, Marx RG, Beaton DE, Miura Y, Gallay SH, Fitzsimmons JS. Validation of a simple histological-histochemical cartilage scoring system. Tissue Eng. 2001;7(3):313-20.","[607, 291, 1083, 381]",reference_item,0.85,"[""reference content label: 124. O'Driscoll SW, Marx RG, Beaton DE, Miura Y, Gallay SH, ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,11,reference_content,"125. Igarashi T, Iwasaki N, Kasahara Y, Minami A. A cellular implantation system using an injectable ultra-purified alginate gel for repair of osteochondral defects in a rabbit model. J Biomed Mater R","[608, 386, 1083, 478]",reference_item,0.85,"[""reference content label: 125. Igarashi T, Iwasaki N, Kasahara Y, Minami A. A cellular""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,12,reference_content,"126. Hoemann CD, Tran-Khanh N, Méthot S, Chen G, Marchand C, Lascau-Coman V, et al. Correlation of tissue histomorphometry with ICRS histology scores in biopsies obtained from a randomized controlled ","[608, 482, 1084, 647]",reference_item,0.85,"[""reference content label: 126. Hoemann CD, Tran-Khanh N, M\u00e9thot S, Chen G, Marchand C,""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,13,reference_content,"127. Minas T, Gomoll AH, Rosenberger R, Royce RO, Bryant T. Increased failure rate of autologous chondrocyte implantation after previous treatment with marrow stimulation techniques. Am J Sports Med. ","[609, 651, 1083, 743]",reference_item,0.85,"[""reference content label: 127. Minas T, Gomoll AH, Rosenberger R, Royce RO, Bryant T. ""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
20,14,reference_content,"128. Rieppo J, Toyras J, Nieminen MT, Kovanen V, Hyttinen MM, Korhonen RK, et al. Structure-function relationships in enzymatically modified articular cartilage. Cells Tissues Organs. 2003;175(3):121-","[608, 747, 1084, 838]",reference_item,0.85,"[""reference content label: 128. Rieppo J, Toyras J, Nieminen MT, Kovanen V, Hyttinen MM""]",reference_item,0.85,reference_zone,reference_like,reference_numeric_dot,True,True
1 page block_id raw_label content_preview bbox role role_confidence evidence seed_role seed_confidence zone style_family marker_type render_default index_default
2 1 0 header ICRS Recommendation Papers [121, 78, 355, 103] noise 0.9 ["header label"] noise 0.9 frontmatter_main_zone support_like none False False
3 1 1 doc_title International Cartilage Repair Society (ICRS) Recommended Guidelines for Histological Endpoints for Cartilage Repair Studies in Animal Models and Clinical Trials [120, 132, 853, 289] paper_title 0.8 ["page-1 zone title_zone: International Cartilage Repair Society (ICRS) Recommended Gu"] paper_title 0.8 frontmatter_main_zone support_like none True True
4 1 2 text Cartilage 2(2) 153–172 © The Author(s) 2011 Reprints and permission: sagepub.com/journalsPermissions.nav DOI: 10.1177/1947603510397535 http://cart.sagepub.com SAGE [885, 113, 1104, 264] frontmatter_noise 0.8 ["page-1 zone journal_furniture_zone: Cartilage\n2(2) 153\u2013172\n\u00a9 The Author(s) 2011\nReprints and per"] frontmatter_noise 0.8 frontmatter_main_zone support_like none False False
5 1 3 text Caroline Hoemann $ ^{1} $, Rita Kandel $ ^{2} $, Sally Roberts $ ^{3} $, Daniel B.F. Saris $ ^{4} $, Laura Creemers $ ^{4} $, Pierre Mainil-Varlet $ ^{5} $, Stephane Méthot $ ^{6} $, Anthony P. Hollan [117, 356, 872, 445] authors 0.8 ["page-1 zone author_zone: Caroline Hoemann $ ^{1} $, Rita Kandel $ ^{2} $, Sally Rober"] authors 0.8 frontmatter_main_zone support_like none True True
6 1 4 paragraph_title Abstract [119, 476, 212, 500] abstract_heading 0.95 ["abstract heading"] abstract_heading 0.95 frontmatter_main_zone heading_like short_fragment True True
7 1 5 abstract Cartilage repair strategies aim to resurface a lesion with osteochondral tissue resembling native cartilage, but a variety of repair tissues are usually observed. Histology is an important structural [117, 505, 1114, 869] abstract_body 0.85 ["abstract label from Paddle OCR"] abstract_body 0.85 frontmatter_main_zone support_like none True True
8 1 6 paragraph_title Keywords [120, 901, 219, 924] structured_insert 0.9 ["frontmatter noise: Keywords"] frontmatter_noise 0.9 frontmatter_main_zone heading_like short_fragment False False
9 1 7 paragraph_title Introduction [120, 1019, 268, 1044] section_heading 0.9 ["explicit scholarly heading: Introduction"] section_heading 0.9 body_zone heading_like canonical_section_name True True
10 1 8 text articular cartilage, cartilage repair, histology, animal models, collagen type II, collagen type I, polarized light microscopy, biopsy, fibrocartilage, glycosaminoglycan, subchondral bone, tidemark [119, 932, 1110, 981] frontmatter_noise 0.7 ["keyword-like block: articular cartilage, cartilage repair, histology, animal mod"] frontmatter_noise 0.7 frontmatter_main_zone support_like none False False
11 1 9 text A variety of articular cartilage repair treatments are in use or in development for clinical use. $ ^{1-5} $ Prior to adopting novel methods that employ scaffolds, cells, biologics, and/or tissues, sa [117, 1057, 603, 1443] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
12 1 10 footnote $ ^{1} $Department of Chemical Engineering, Institute of Biomedical Engineering, École Polytechnique, Montréal, Quebec, Canada $ ^{2} $BioEngineering of Skeletal Tissues Team, Department of Patholog [628, 1080, 1092, 1180] footnote 0.7 ["footnote label: $ ^{1} $Department of Chemical Engineering, Institute of Bio"] footnote 0.7 body_zone body_like affiliation_marker True True
13 1 11 footnote $ ^{3} $Spinal Studies & ISTM (Keele University), Robert Jones & Agnes Hunt Orthopaedic Hospital, Oswestry, Shropshire, UK [629, 1181, 1090, 1220] footnote 0.7 ["footnote label: $ ^{3} $Spinal Studies & ISTM (Keele University), Robert Jon"] footnote 0.7 body_zone body_like affiliation_marker True True
14 1 12 footnote $ ^{4} $Department of Orthopaedics, University Medical Center Utrecht, Utrecht, the Netherlands [628, 1222, 1069, 1258] footnote 0.7 ["footnote label: $ ^{4} $Department of Orthopaedics, University Medical Cente"] footnote 0.7 body_zone body_like affiliation_marker True True
15 1 13 footnote $ ^{5} $Aginko Research, Bern, Switzerland [629, 1261, 872, 1281] footnote 0.7 ["footnote label: $ ^{5} $Aginko Research, Bern, Switzerland"] footnote 0.7 body_zone body_like affiliation_marker True True
16 1 14 footnote $ ^{6} $Piramal Healthcare (Canada), Montréal, Quebec, Canada $ ^{7} $University of Bristol, University Walk, Clifton, Bristol, UK [629, 1281, 1009, 1322] footnote 0.7 ["footnote label: $ ^{6} $Piramal Healthcare (Canada), Montr\u00e9al, Quebec, Canad"] footnote 0.7 body_zone body_like affiliation_marker True True
17 1 15 paragraph_title Corresponding Author: [629, 1339, 812, 1359] frontmatter_support 0.75 ["page-1 correspondence support: Corresponding Author:"] frontmatter_support 0.75 frontmatter_main_zone support_like none True True
18 1 16 footnote C.D. Hoemann, Department of Chemical Engineering, École Polytechnique, 2900 Boulevard Edouard Montpetit, Montréal, QC, Canada H3C 3A7 Email: caroline.hoemann@polymtl.ca [627, 1353, 1066, 1440] footnote 0.7 ["footnote label: C.D. Hoemann, Department of Chemical Engineering, \u00c9cole Poly"] footnote 0.7 body_zone body_like none True True
19 2 0 figure_title Table I. The Zonal Variation Seen in Articular Cartilage [172, 1011, 196, 1434] table_caption 0.9 ["table prefix matched: Table I. The Zonal Variation Seen in Articular Cartilage"] table_caption 0.9 display_zone table_caption_like table_number True True
20 2 1 number 154 [97, 1446, 131, 1470] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
21 2 2 table <table><tr><td></td><td>General Comments</td><td>Superficial Zone</td><td>Midzone</td><td>Deep Zone</td></tr><tr><td>Cells</td><td>Chondrocyte morphology varies throughout depth of cartilage; no infla [208, 148, 944, 1441] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
22 2 3 vision_footnote Changes in osteoarthritis: vascular invasion of the tidemark from the subchondral bone and reduplication of the tidemark is seen in aging and osteoarthritis. [991, 382, 1013, 1430] footnote 0.7 ["vision_footnote label: Changes in osteoarthritis: vascular invasion of the tidemark"] footnote 0.7 body_zone body_like none True True
23 3 0 header Hoemann et al. [122, 82, 244, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
24 3 1 number 155 [1076, 81, 1109, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
25 3 2 image [189, 149, 1045, 669] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
26 3 3 figure_title Figure I. Different features of the osteochondral junction in normal and repair cartilage are revealed by hematoxylin and eosin (H & E) (A, C, E, G) and Safranin O/fast green/iron hematoxylin (SafO) ( [116, 691, 1111, 884] figure_caption 0.85 ["figure_title label: Figure I. Different features of the osteochondral junction i"] figure_caption 0.85 reference_like citation_line True True
27 3 4 text processing and standardized assessments that will facilitate compliance with FDA recommendations and that will also allow comparison between studies. [118, 936, 601, 1008] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
28 3 5 text Histological evaluation of cartilage repair tissue must consider a variety of complicated structural features that allow cartilage to carry out its biomechanical function. Articular cartilage has a st [118, 1009, 603, 1416] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
29 3 6 text Articular cartilage is structurally organized into 3 distinct zones (Table 1). $ ^{15} $ The superficial zone is a relatively thin layer with horizontally oriented collagen bundles and flattened chond [119, 1416, 602, 1465] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
30 3 7 text [626, 935, 1112, 1467] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
31 4 0 number 156 [98, 81, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
32 4 1 header Cartilage 2(2) [972, 80, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
33 4 2 paragraph_title Previous Animal and Clinical Studies of Cartilage Repair Using Histological Endpoint Data [93, 160, 524, 245] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Previous Animal and Clinical Studies of Cartilage Repair Usi"] subsection_heading 0.6 body_zone heading_like none True True
34 4 3 text The major advantage of animal studies is that it is possible to control the lesion size, defect location, and timing of analysis; it is also possible to analyze the full width of the repaired defect a [93, 257, 577, 617] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
35 4 4 text Prospective human clinical studies with histological endpoints analyze biopsies collected during a second-look arthroscopy (Table 2). A 2-mm-diameter biopsy taken from the center of a lesion provides [92, 615, 578, 1170] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
36 4 5 text In human clinical studies, repair cartilage histological findings have been most frequently reported as the predominant repair tissue type of each specimen, often using the following terminology: hyal [92, 1168, 577, 1435] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
37 4 6 text [600, 159, 1086, 497] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
38 4 7 text In comparison to the small tissue volume analyzed by biopsy, complementary macroscopic imaging methods such as MRI can give a more global assessment of fill, are relatively noninvasive, and can be per [600, 494, 1086, 1097] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
39 4 8 text Ideally, histological structural analyses should generate unbiased quantitative assessment of extracellular matrix, cell, and tissue organization relative to its similarity to normal native cartilage. [601, 1097, 1085, 1219] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
40 4 9 text 1. What is the (average) thickness and volume of the repair cartilage? [626, 1240, 1063, 1288] body_paragraph 0.6 ["reference-like pattern: 1. What is the (average) thickness and volume of the repair "] reference_item 0.6 reference_like reference_numeric_dot True True
41 4 10 text 2. Is any implanted (foreign) material still present? Are there any signs of inflammatory or immune response to the implanted material? [625, 1288, 1063, 1360] body_paragraph 0.6 ["reference-like pattern: 2. Is any implanted (foreign) material still present? Are th"] reference_item 0.6 reference_like reference_numeric_dot True True
42 4 11 text 3. What portion of the repair cartilage is hyaline? [626, 1360, 1051, 1384] body_paragraph 0.6 ["reference-like pattern: 3. What portion of the repair cartilage is hyaline?"] reference_item 0.6 reference_like reference_numeric_dot True True
43 4 12 text 4. Is the articular surface smooth and intact? Is the overall structure intact or disintegrated? [625, 1385, 1062, 1434] body_paragraph 0.6 ["reference-like pattern: 4. Is the articular surface smooth and intact? Is the overal"] reference_item 0.6 reference_like reference_numeric_dot True True
44 5 0 figure_title Table 2. Published Histological Analyses of Human Repair Cartilage [191, 959, 214, 1458] table_caption 0.9 ["table prefix matched: Table 2. Published Histological Analyses of Human Repair Car"] table_caption 0.9 display_zone table_caption_like table_number True True
45 5 1 table <table><tr><td colspan="5">Patient</td></tr></table> [226, 125, 1056, 1472] table_html 0.95 ["inline table HTML"] table_html 0.95 body_zone body_like none True False
46 5 2 number 157 [1072, 1479, 1104, 1501] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
47 6 0 number 158 [98, 82, 132, 102] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
48 6 1 header Cartilage 2(2) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
49 6 2 paragraph_title Table 3. Guidelines for Histological Processing and Analyses of Repair [95, 147, 616, 171] table_caption 0.9 ["table prefix matched: Table 3. Guidelines for Histological Processing and Analyses"] table_caption 0.9 display_zone table_caption_like table_number True True
50 6 3 paragraph_title 1. Lesion size and location [96, 186, 293, 207] section_heading 0.85 ["paragraph_title label with numbering: 1. Lesion size and location"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
51 6 4 text • Human: 2-mm diameter, ~1-cm deep biopsy from estimated geometric center of initial lesion, perpendicular to surface. Sample includes bone, full-thickness repair. [114, 213, 1057, 255] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
52 6 5 text • Animal: sample block includes entire defect, flanking articular cartilage, subchondral bone encompassing potential regions of bone resorption. [111, 256, 1076, 298] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
53 6 6 paragraph_title 2. Timing of biopsy and sample recovery [95, 303, 394, 325] section_heading 0.85 ["paragraph_title label with numbering: 2. Timing of biopsy and sample recovery"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
54 6 7 text • Human biopsy: 12-month or 24-month outcome, one biopsy per lesion. Macroscopic ICRS score. Video document and detailed description of biopsy site. [113, 330, 1062, 371] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
55 6 8 text • Animal: acute defect (0-3 days) and long-term repair: ≥2 months (rabbit) or ≥6 months (large animal), with and without treatment. Exact endpoints can be tailored to individual studies and should pro [112, 373, 1081, 436] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
56 6 9 paragraph_title 3. Histoprocessing (for cartilage-bone analysis) [96, 441, 439, 463] section_heading 0.85 ["paragraph_title label with numbering: 3. Histoprocessing (for cartilage-bone analysis)"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
57 6 10 text • Fixation in 10% normal buffered formalin or buffered 4% paraformaldehyde. [114, 467, 689, 489] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
58 6 11 text • Human: decalcify biopsies with bone for ~30 hours in 0.5 N HCl/0.1% glutaraldehyde $ ^{115} $ or formic acid $ ^{105} $ or ~2 weeks in 0.5 M EDTA at 4 °C. [114, 488, 1060, 530] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
59 6 12 text • Animal: decalcify ~10 days (rabbit distal femur) or weeks (large animal samples) in 0.5 N HCl (with or without 0.1% glutaraldehyde) $ ^{43} $ or longer in 10% EDTA/0.1% paraformaldehyde at 4 °C. Pos [114, 532, 1067, 615] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
60 6 13 text • For each specimen, collect serial sections from at least 2 predetermined levels (fixed distance to each other in the repair tissue). 5-μm paraffin sections (human, sheep, horse) or 8- to 10-μm cryos [114, 615, 1078, 679] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
61 6 14 text • Tissue sections processed separately for electron microscopic analysis of matrix (optional). [127, 678, 826, 701] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
62 6 15 paragraph_title 4. Staining [95, 705, 176, 727] section_heading 0.85 ["paragraph_title label with numbering: 4. Staining"] section_heading 0.85 body_zone reference_like reference_numeric_dot True True
63 6 16 text • H&E (cartilage-bone interface, cell morphology, tidemark, abnormal calcification). [114, 732, 724, 753] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
64 6 17 text • Safranin O or toluidine blue (glycosaminoglycan content). [115, 753, 556, 774] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
65 6 18 text • Collagen immunostaining for collagen type I and type II. [114, 774, 543, 795] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
66 6 19 text • Unstained sections (for polarized light microscopy [PLM]). [114, 795, 562, 816] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
67 6 20 text • Recut and stain any torn, folded, or poorly stained sections. Verify complete set of sections (use the best section free of folds, tears). [114, 814, 1046, 837] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
68 6 21 text • Blind sections or digital scans prior to scoring. [114, 838, 477, 859] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
69 6 22 paragraph_title 5. Evaluation methods $ ^{a} $ [96, 863, 267, 885] section_heading 0.85 ["paragraph_title label with numbering: 5. Evaluation methods $ ^{a} $"] section_heading 0.85 body_zone body_like heading_numbered True True
70 6 23 text • Must be performed by 2 or 3 trained and blinded observers. Blinded consensus for outlier scores. [114, 890, 876, 911] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
71 6 24 text • Determine implant presence/absence. [115, 913, 424, 932] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
72 6 25 text • Histological scoring: ICRS-II (human, animal) or O'Driscoll (animal) that also assesses adjacent cartilage and cartilage-repair integration. Can use other scoring systems or evaluate predominant tis [113, 934, 1070, 975] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
73 6 26 text • Histomorphometry: repair tissue thickness, total soft tissue volume above bone (for human biopsies where bone occupies ≥50% of section width) or above the projected tidemark (for animal sections wit [115, 975, 1077, 1059] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
74 6 27 text • PLM for collagen fibril orientation (semiquantitative scoring system). $ ^{22} $ [115, 1058, 647, 1080] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
75 6 28 text • Optional: immunostain for specific markers of interest. Electron microscopy for cell morphology and collagen fibril diameter, orientation. Subchondral bone structure and repair (bone volume fraction [113, 1082, 1061, 1145] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
76 6 29 text $ ^{a} $As our understanding of cartilage repair and chondrocyte biology improves, these recommendations may have to be modified. [95, 1155, 923, 1177] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like affiliation_marker True True
77 6 30 text 5. Does the repair tissue have zonal organization, uniform collagen type II, little or no collagen type I, and appropriate collagen fiber orientation? [118, 1224, 551, 1296] body_paragraph 0.6 ["reference-like pattern: 5. Does the repair tissue have zonal organization, uniform c"] reference_item 0.6 reference_like reference_numeric_dot True True
78 6 31 text 6. Are there viable cells with the appropriate morphology to form and maintain a hyaline extracellular matrix? [119, 1298, 550, 1366] body_paragraph 0.6 ["reference-like pattern: 6. Are there viable cells with the appropriate morphology to"] reference_item 0.6 reference_like reference_numeric_dot True True
79 6 32 text 7. Does the repair tissue (animal studies) have good lateral integration with adjacent cartilage? 8. Is the repair cartilage fully integrated with subchondral bone, and has the tidemark been regenerat [118, 1368, 552, 1417] body_paragraph 0.6 ["reference-like pattern: 7. Does the repair tissue (animal studies) have good lateral"] reference_item 0.6 reference_like reference_numeric_dot True True
80 6 33 text [627, 1224, 1061, 1294] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
81 6 34 text 9. Does the subchondral bone plate and underlying bone have a normal structure? [627, 1297, 1061, 1344] body_paragraph 0.6 ["reference-like pattern: 9. Does the subchondral bone plate and underlying bone have "] reference_item 0.6 reference_like reference_numeric_dot True True
82 6 35 text A rigorous experimental design with an appropriate control group needs to consider 1) location of the biopsy or [603, 1368, 1086, 1418] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
83 7 0 header Hoemann et al. [121, 81, 245, 105] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
84 7 1 number 159 [1075, 81, 1109, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
85 7 2 text section within the animal defect, 2) timing of postoperative biopsy or sample recovery, 3) method of histoprocessing, 4) stains utilized, and 5) validated and blinded evaluation methods amenable to st [117, 144, 603, 386] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
86 7 3 paragraph_title Lesion Size and Location [118, 419, 408, 446] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Lesion Size and Location"] subsection_heading 0.6 body_zone heading_like none True True
87 7 4 text In the human knee joint, the medial femoral condyle is the most frequent site of deep grade III and IV lesions. $ ^{79} $ Human lesions treated by cartilage repair vary from 0.5 to 12 cm $ ^{2} $ 1,56 [117, 454, 603, 1057] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
88 7 5 text Animal models of cartilage repair have important differences when compared to the clinical situation. Humans present with existent defects, whereas in most animal models, the defects are treated immed [117, 1058, 603, 1442] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
89 7 6 text [625, 144, 1111, 363] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
90 7 7 paragraph_title Timing of Biopsy and Sample Recovery Human Biopsy Collection [626, 395, 1075, 458] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Timing of Biopsy and Sample Recovery Human Biopsy Collection"] subsection_heading 0.6 body_zone heading_like none True True
91 7 8 text The timing of biopsy collection is important. In many studies, biopsies were collected as they became available (3-36 months postoperatively) $ ^{62,70,83,84,96,97} $ (Table 2). The FDA draft recommen [624, 479, 1112, 1298] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
92 7 9 text A clinical biopsy is obtained during a second-look arthroscopy. During the procedure, it is essential to document and score the general intra-articular findings. Utilization of a validated scoring sys [624, 1295, 1112, 1442] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
93 8 0 number 160 [98, 81, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
94 8 1 header Cartilage 2(2) [973, 80, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
95 8 2 text been used to describe articular cartilage repair; however, the score was originally designed to describe a cartilage injury and therefore is not recommended. The defect size, integration, and repair a [92, 144, 579, 1418] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
96 8 3 image [608, 148, 830, 420] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
97 8 4 image [855, 152, 1080, 421] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
98 8 5 image [612, 433, 834, 574] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
99 8 6 image [858, 432, 1076, 568] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
100 8 7 figure_title Figure 2. Appearance of human 2-mm-diameter biopsy obtained with a Jamshidi 11-gauge needle (A, C) and corresponding decalcified Safranin O-stained paraffin section (B, D). Samples were obtained ex vi [601, 593, 1086, 839] figure_caption 0.92 ["figure_title label: Figure 2. Appearance of human 2-mm-diameter biopsy obtained "] figure_caption 0.92 display_zone legend_like figure_number True True
101 8 8 text values, which may reduce bias. Some features can still be scored even if the biopsy is not complete. [601, 864, 1084, 914] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
102 8 9 paragraph_title Animal Sample Collection [602, 948, 840, 974] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Animal Sample Collection"] subsection_heading 0.6 body_zone heading_like none True True
103 8 10 text In animal studies, a rigorous study design includes histological characterization of the acute defect in a separate group of animals (with and without implanted material, also to assess debridement le [600, 984, 1086, 1419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
104 9 0 header Hoemann et al. [122, 82, 244, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
105 9 1 number 161 [1075, 81, 1107, 104] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
106 9 2 image [124, 153, 597, 496] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
107 9 3 figure_title Figure 3. Histoprocessing and histomorphometry of large animal defects. The example is taken from a sheep cartilage repair model (6 months repair $ ^{43} $). In this unilateral cartilage repair model, [118, 515, 602, 771] figure_caption 0.92 ["figure_title label: Figure 3. Histoprocessing and histomorphometry of large anim"] figure_caption 0.92 display_zone legend_like figure_number True True
108 9 4 text At necropsy, the joint and repair tissue should be photodocumented (preferably with a ruler and label carrying the date and sample identity). The repair tissue should be evaluated for tissue color, ho [117, 816, 604, 1419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
109 9 5 text [627, 144, 1112, 242] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
110 9 6 paragraph_title Histoprocessing [629, 276, 817, 303] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Histoprocessing"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
111 9 7 text Once the osteochondral sample is taken, it should be processed immediately. In the majority of animal cartilage repair studies, osteochondral samples are fixed in formalin-based buffer and decalcified [626, 312, 1113, 1199] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
112 9 8 text Samples may also be embedded nondecalcified in plastic; however, it should be noted that collagen immunostaining of thinner plastic sections can be technically challenging compared to paraffin or cryo [626, 1199, 1112, 1420] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
113 10 0 number 162 [98, 81, 132, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
114 10 1 header Cartilage 2(2) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
115 10 2 text vibratome sections may also be frozen, substituted with plastic, and submitted to ultrastructural studies by electron microscopy. $ ^{106} $ For structural endpoint analyses, all samples in a given st [92, 144, 577, 432] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
116 10 3 text Biopsies can be fixed most conveniently in 10% neutral buffered formalin for a minimum of 24 hours (up to 1 week). Fresh 4% paraformaldehyde can also be used, but it is relatively unstable and should [93, 432, 577, 816] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
117 10 4 text To analyze cartilage-bone integration and subchondral bone structure, repair biopsies should include bone and should be decalcified intact. Decalcification can be accomplished using acid or EDTA. Acid [92, 817, 575, 1419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
118 10 5 image [611, 152, 1080, 738] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
119 10 6 figure_title Figure 4. Example of standardized histoprocessing to evaluate a human biopsy (A-D, from cadaveric knee medial femoral condyle) or sheep hyaline repair cartilage 6-month repair after treatment with mic [602, 760, 1086, 992] figure_caption 0.92 ["figure_title label: Figure 4. Example of standardized histoprocessing to evaluat"] figure_caption 0.92 display_zone legend_like figure_number True True
120 10 7 text in decalcification solutions, especially during long decalcification procedures. Commercially available decalcification solutions are another alternative, but these tend to be more expensive and utili [601, 1032, 1086, 1368] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
121 10 8 text Once decalcified, animal osteochondral sample blocks can be trimmed further, firstly to remove excess bone, [602, 1369, 1086, 1417] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
122 11 0 header Hoemann et al. [121, 81, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
123 11 1 number 163 [1075, 81, 1109, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
124 11 2 text which allows adequate infiltration with embedding media, and secondly to generate a cut surface inside the repaired defect from which sections will be collected. Given the typical heterogeneity of car [117, 142, 603, 769] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
125 11 3 text Paraffin embedding uses organic solvents to dehydrate the tissue and can be used to embed and section large sample blocks (2-3 cm³). For plastic embedding, the infiltration times should be increased a [117, 767, 603, 1154] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
126 11 4 text Once a sample is embedded, any number of sections can be collected from the specimen. Ideally, sections need to be collected and stained so as to minimize bias in the analysis, a notion that is well d [117, 1152, 603, 1420] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
127 11 5 text [625, 144, 1112, 290] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
128 11 6 paragraph_title Staining, Immunostaining, and Routine Light Microscopy [626, 322, 1067, 380] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Staining, Immunostaining, and Routine Light Microscopy"] subsection_heading 0.6 body_zone heading_like none True True
129 11 7 text The selection of stains utilized to visualize the tissue will depend on what parameter is being examined. Similar stains are used in the evaluation of human biopsies and animal repair cartilage. Routi [626, 383, 1112, 652] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
130 11 8 paragraph_title Routine Histostaining and Polarized Light Microscopy [626, 683, 1007, 739] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Routine Histostaining and Polarized Light Microscopy"] subsection_heading 0.6 body_zone heading_like none True True
131 11 9 text Hematoxylin and eosin (H&E) staining of the tissue section will allow evaluation of the overall tissue, cell morphology, presence of abnormal calcification, and the bone-cartilage interface (Fig. 1). [626, 744, 1112, 1032] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
132 11 10 text Safranin O and toluidine blue are most frequently utilized to stain proteoglycans and demonstrate their presence and location within the tissue. Safranin O/fast green/iron hematoxylin stain provides t [625, 1031, 1113, 1419] body_paragraph 0.78 ["default body_paragraph for text label", "late role resolution: non-body family 'reference_like' overrides body_paragraph", "style_family_authority=reference_marker", "context_source=block"] body_paragraph 0.6 reference_like citation_line True True
133 12 0 number 164 [97, 81, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
134 12 1 header Cartilage 2(2) [972, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
135 12 2 text be done at the right pH (pH ≤1). Thionin is a nonmetachromatic purple stain that is simple to perform $ ^{114} $ but, like toluidine blue, generates a similar hue for hyaline and fibrous tissue. To co [92, 144, 577, 312] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
136 12 3 text PLM is used to determine the presence of organized collagen fibrils in the matrix. PLM can be carried out on either unstained sections mounted with permanent mounting media $ ^{22} $ or H&E-stained se [92, 313, 577, 482] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
137 12 4 paragraph_title Immunohistochemical Staining [94, 516, 376, 543] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Immunohistochemical Staining"] subsection_heading 0.6 body_zone heading_like none True True
138 12 5 text Adult hyaline articular cartilage is comprised of a wide variety of matrix molecules organized in a particular manner; to date, no single marker specific for hyaline cartilage has been identified. Hya [91, 549, 578, 1345] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
139 12 6 text For research purposes, additional markers have been used to analyze repair cartilage, including collagen type IIa, $ ^{69} $ a propeptide domain isoform of collagen type II expressed in fetal cartilag [92, 1344, 578, 1419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
140 12 7 text [600, 143, 1086, 408] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
141 12 8 text To summarize, cartilage structural characterization minimally includes immunostaining for collagen type II and collagen type I, in combination with staining with H&E to assess osteochondral tissue fea [600, 409, 1086, 627] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
142 12 9 paragraph_title Evaluation [602, 659, 731, 685] sub_subsection_heading 0.6 ["unnumbered paragraph_title, inferred level sub_subsection_heading: Evaluation"] sub_subsection_heading 0.6 body_zone heading_like short_fragment True True
143 12 10 text Stained sections should be evaluated to determine how closely the structure and organization of the repair tissue resembles normal adult articular cartilage. Histological evaluation can be qualitative [601, 696, 1087, 1249] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
144 12 11 text Once the satisfactory quality of the sample and sections is established, the level and type of evaluation (i.e., qualitative/quantitative) will depend on the particular study or purpose of the investi [600, 1248, 1086, 1419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
145 13 0 header Hoemann et al. [121, 82, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
146 13 1 number 165 [1076, 82, 1109, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
147 13 2 text fibrous, or none of these (Table 2). Such an analysis facilitates comparison of new data with the literature. However, it is in the interest of the investigator to analyze and quantify a variety of hi [117, 144, 604, 699] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
148 13 3 paragraph_title Establishing the Region of Interest [120, 732, 435, 759] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Establishing the Region of Interest"] subsection_heading 0.6 body_zone heading_like none True True
149 13 4 text Objective scoring and good interreader agreement depend on the ability to score the same region of interest in a blinded sample. In normal osteochondral samples, this is not an issue; however, in repa [117, 768, 603, 1249] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
150 13 5 text In animal cartilage repair studies, the acute defect may or may not include subchondral bone damage, and during repair, extensive subchondral bone resorption can sometimes occur. $ ^{38,42,43,120} $ W [117, 1248, 603, 1419] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
151 13 6 image [636, 156, 1102, 336] media_asset 0.85 ["media label: image"] media_asset 0.85 body_zone unknown_like empty True True
152 13 7 figure_title Figure 5. Histomorphometry of chondral versus subchondral soft repair tissues. The example is from a 2-month repair of a trochlear full-thickness rabbit knee defect with two 0.9-mm microdrill holes. $ [627, 352, 1110, 502] figure_caption 0.92 ["figure_title label: Figure 5. Histomorphometry of chondral versus subchondral so"] figure_caption 0.92 display_zone legend_like figure_number True True
153 13 8 text to thinning of the articular layer and the presence of bone in the cartilage defect area. $ ^{109} $ To specifically analyze chondral repair tissue versus subchondral repair tissue, a curved “projecte [625, 552, 1111, 699] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
154 13 9 paragraph_title Histological Scoring [629, 732, 812, 760] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Histological Scoring"] subsection_heading 0.6 body_zone heading_like none True True
155 13 10 text Histological scoring provides an important outcome measure of preclinical and clinical repair cartilage. Before undertaking histological assessments of cartilage repair, it is essential that the reade [627, 769, 1112, 1418] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
156 14 0 number 166 [98, 82, 133, 103] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
157 14 1 header Cartilage 2(2) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
158 14 2 text Although outside the scope of this article, a well-defined preplanned statistical analysis accounting for multiple outcome measures is essential to ensure proper control of type I and type II errors a [91, 144, 577, 312] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
159 14 3 text In animal models for which whole joints are available for study, a variety of cartilage histological grading systems for cartilage repair tissue have been developed (recently reviewed by Rutgers et al [92, 312, 578, 745] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
160 14 4 text To specifically evaluate the quality of repair tissue in patient biopsies, the Histological Endpoint Committee of the International Cartilage Repair Society (ICRS) developed a Visual Assessment Histol [91, 745, 578, 1418] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
161 14 5 paragraph_title Histomorphometric Evaluation of Cartilage [602, 145, 997, 174] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Histomorphometric Evaluation of Cartilage"] subsection_heading 0.6 body_zone heading_like none True True
162 14 6 text Quantitative histomorphometry can be performed on human biopsies and animal repair tissue, using histomorphometric software. Negative controls using omission of primary antibody, isotype antibodies or [600, 192, 1085, 576] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
163 14 7 text Repair tissue area can be measured using volume tools and thresholding software (for example, ImageJ, NIH, Bethesda, MD and Northern Eclipse, Mississauga, ON, Canada). Manual or automatic thresholding [600, 576, 1086, 985] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
164 14 8 text A cautionary note in using percentage staining as the main structural outcome should be made. Strong staining for collagen type II and Safranin O can be obtained in structurally disintegrated samples, [600, 985, 1086, 1132] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
165 14 9 paragraph_title Evaluation of Subchondral Bone [602, 1164, 898, 1191] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Evaluation of Subchondral Bone"] subsection_heading 0.6 body_zone heading_like none True True
166 14 10 text The importance of subchondral bone health in cartilage repair is being increasingly recognized. $ ^{[68,89,102,125,127]} $ In animal cartilage repair models, subchondral cysts are abnormal and can be [600, 1199, 1086, 1418] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
167 15 0 header Hoemann et al. [121, 82, 245, 104] noise 0.9 ["header label"] noise 0.9 body_zone body_like short_fragment False False
168 15 1 number 167 [1075, 81, 1110, 104] noise 0.9 ["page number label"] noise 0.9 body_zone body_like short_fragment False False
169 15 2 text 75% of the bone area is occupied by a cyst). The average score is used as the final cyst score for a particular defect. $ ^{43} $ [119, 145, 602, 192] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
170 15 3 text Subchondral bone is histologically evaluated in the ICRS-I and ICRS-II scales, but the current scoring systems are limited in that different subchondral repair tissues can yield a similar score. For e [118, 193, 604, 651] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
171 15 4 paragraph_title Collagen Structural Organization [120, 684, 421, 711] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Collagen Structural Organization"] subsection_heading 0.6 body_zone heading_like none True True
172 15 5 text Collagen organization in adult hyaline articular cartilage is important for maintenance of tissue load-bearing capacity. $ ^{128} $ To observe zonal collagen organization, PLM can be performed on H&E- [118, 720, 603, 1323] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
173 15 6 paragraph_title Conclusions [120, 1356, 264, 1382] section_heading 0.9 ["explicit scholarly heading: Conclusions"] section_heading 0.9 tail_nonref_hold_zone heading_like canonical_section_name True True
174 15 7 text Preclinical studies and RCTs for new cartilage repair strategies have successfully applied histological structural endpoints to evaluate the effects of treatment; in such studies, a control group must [118, 1391, 602, 1467] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 tail_nonref_hold_zone unknown_like none True True
175 15 8 text [626, 145, 1112, 577] ocr_text_missing 0.8 ["ocr detected text region (raw_label=text) but no text extracted; no pdf backfill available"] ocr_text_missing 0.8 body_zone body_like empty True True
176 15 9 paragraph_title Acknowledgments and Funding [628, 601, 931, 625] subsection_heading 0.6 ["unnumbered paragraph_title, inferred level subsection_heading: Acknowledgments and Funding"] subsection_heading 0.6 body_zone heading_like none True True
177 15 10 text The authors thank Drs. Alberto Restrepo and Matthew Shive for advice on biopsy retrieval methods; Dr. William Stanish and Piramal Healthcare for providing selected human osteochondral samples; Gaoping [626, 648, 1113, 1011] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
178 15 11 paragraph_title Declaration of Conflicting Interests [628, 1025, 967, 1050] backmatter_boundary_candidate 0.5 ["backmatter boundary candidate: Declaration of Conflicting Interests"] backmatter_boundary_candidate 0.5 body_zone heading_like none True True
179 15 12 text S. Méthot is an employee of Piramal Healthcare. None of the other authors has any conflicts or apparent conflicts of interest to declare in relation to this article. [627, 1057, 1110, 1128] body_paragraph 0.6 ["default body_paragraph for text label"] body_paragraph 0.6 body_zone body_like none True True
180 15 13 paragraph_title References [630, 1145, 740, 1168] reference_heading 0.9 ["references heading: References"] reference_heading 0.9 reference_zone heading_like short_fragment True True
181 15 14 reference_content 1. Alford JW, Cole BJ. Cartilage restoration, part 2: techniques, outcomes, and future directions. Am J Sports Med. 2005;33(3):443-60. [641, 1179, 1108, 1245] reference_item 0.85 ["reference content label: 1. Alford JW, Cole BJ. Cartilage restoration, part 2: techni"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
182 15 15 reference_content 2. Mithoefer K, McAdams TR, Scopp JM, Mandelbaum BR. Emerging options for treatment of articular cartilage injury in the athlete. Clin Sports Med. 2009;28(1):25-40. [639, 1251, 1108, 1318] reference_item 0.85 ["reference content label: 2. Mithoefer K, McAdams TR, Scopp JM, Mandelbaum BR. Emergin"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
183 15 16 reference_content 3. Cole BJ, Pascual-Garrido C, Grumet RC. Surgical management of articular cartilage defects in the knee. J Bone Joint Surg Am. 2009;91A(7):1778-90. [640, 1323, 1109, 1390] reference_item 0.85 ["reference content label: 3. Cole BJ, Pascual-Garrido C, Grumet RC. Surgical managemen"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
184 15 17 reference_content 4. Bedi A, Feeley BT, Williams RJ. Management of articular cartilage defects of the knee. J Bone Joint Surg Am. 2010;92A(4):994-1009. [640, 1395, 1110, 1461] reference_item 0.85 ["reference content label: 4. Bedi A, Feeley BT, Williams RJ. Management of articular c"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
185 16 0 number 168 [98, 82, 132, 103] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
186 16 1 header Cartilage 2(2) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
187 16 2 reference_content 5. van Osch G, Brittberg M, Dennis JE, Bastiaansen-Jenniskens YM, Erben RG, Konttinen YT, Luyten FP. Cartilage repair: past and future. Lessons for regenerative medicine. J Cell Mol Med. 2009;13(5):79 [105, 147, 574, 238] reference_item 0.85 ["reference content label: 5. van Osch G, Brittberg M, Dennis JE, Bastiaansen-Jennisken"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
188 16 3 reference_content 6. McFarland R, Kaiser A. Guidance for industry: preparation of IDEs and INDs for products intended to repair or replace knee cartilage. Rockville, MD: U.S. Department of Health and Human Services; 20 [105, 243, 574, 382] reference_item 0.85 ["reference content label: 6. McFarland R, Kaiser A. Guidance for industry: preparation"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
189 16 4 reference_content 7. FDA. 38th meeting, topic I: Cellular, Tissue, and Gene Therapies Advisory Committee. Rockville, MD: U.S. Food and Drug Administration; 2005. Available from: http://www.fda.gov/ohrms/dockets/ac/05/t [106, 387, 574, 478] reference_item 0.85 ["reference content label: 7. FDA. 38th meeting, topic I: Cellular, Tissue, and Gene Th"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
190 16 5 reference_content 8. Hollander AP, Pidoux I, Reiner A, Rorabeck C, Bourne R, Poole AR. Damage to type II collagen in aging and osteoarthritis starts at the articular surface, originates around chondrocytes, and extends [106, 483, 575, 599] reference_item 0.85 ["reference content label: 8. Hollander AP, Pidoux I, Reiner A, Rorabeck C, Bourne R, P"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
191 16 6 reference_content 9. Mankin HJ. The reaction of articular cartilage to injury and osteoarthritis (first of two parts). N Engl J Med. 1974;291(24):1285-92. [103, 603, 574, 647] reference_item 0.85 ["reference content label: 9. Mankin HJ. The reaction of articular cartilage to injury "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
192 16 7 reference_content 10. Sabatini M, Lesur C, Thomas M, Chomel A, Anract P, de Nanteuil G, Pastoureau P. Effect of inhibition of matrix metalloproteinases on cartilage loss in vitro and in a guinea pig model of osteoarthr [100, 651, 574, 742] reference_item 0.85 ["reference content label: 10. Sabatini M, Lesur C, Thomas M, Chomel A, Anract P, de Na"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
193 16 8 reference_content 11. Pastoureau P, Hunziker E, Pelletier JP. Cartilage bone and synovial histomorphometry in animal models of osteoarthritis. Osteoarthritis Cartilage. 2010;18:S106-12. [98, 747, 574, 814] reference_item 0.85 ["reference content label: 11. Pastoureau P, Hunziker E, Pelletier JP. Cartilage bone a"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
194 16 9 reference_content 12. Kraus VB, Nevitt M, Sandell LJ. Summary of the OA biomarkers workshop 2009 biochemical biomarkers: biology, validation, and clinical studies. Osteoarthritis Cartilage. 2010;18(6):742-5. [99, 819, 573, 911] reference_item 0.85 ["reference content label: 12. Kraus VB, Nevitt M, Sandell LJ. Summary of the OA biomar"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
195 16 10 reference_content 13. Mankin HJ, Dorfman H, Lippiello L, Zarins A. Biochemical and metabolic abnormalities in articular cartilage from osteo-arthritic human hips. II: correlation of morphology with biochemical and meta [99, 915, 573, 1030] reference_item 0.85 ["reference content label: 13. Mankin HJ, Dorfman H, Lippiello L, Zarins A. Biochemical"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
196 16 11 reference_content 14. Hoemann CD. Molecular and biochemical assays of cartilage components. In: De Ceuninck F, Sabatini M, Pastoureau P, editors. Cartilage and osteoarthritis. Totowa, NJ: Humana Press; 2004:127-156. [99, 1035, 573, 1125] reference_item 0.85 ["reference content label: 14. Hoemann CD. Molecular and biochemical assays of cartilag"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
197 16 12 reference_content 15. Hunziker EB, Quinn TM, Hauselmann HJ. Quantitative structural organization of normal adult human articular cartilage. Osteoarthritis Cartilage. 2002;10(7):564-72. [99, 1131, 573, 1199] reference_item 0.85 ["reference content label: 15. Hunziker EB, Quinn TM, Hauselmann HJ. Quantitative struc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
198 16 13 reference_content 16. Li LP, Buschmann MD, Shirazi-Adl A. A fibril reinforced nonhomogeneous poroelastic model for articular cartilage: inhomogeneous response in unconfined compression. J Biomech. 2000;33(12):1533-41. [100, 1203, 574, 1294] reference_item 0.85 ["reference content label: 16. Li LP, Buschmann MD, Shirazi-Adl A. A fibril reinforced "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
199 16 14 reference_content 17. Armstrong CG, Mow VC. Variations in the intrinsic mechanical properties of human articular cartilage with age, degeneration, and water content. J Bone Joint Surg Am. 1087-64(1):88-94 [99, 1299, 573, 1390] reference_item 0.85 ["reference content label: 17. Armstrong CG, Mow VC. Variations in the intrinsic mechan"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
200 16 15 reference_content 18. TreppoS, KoeppH, QuanEC, ColeAA, KuettnerKE, Grodzinsky AJ. Comparison of biomechanical and biochemical properties [98, 1394, 574, 1440] reference_item 0.85 ["reference content label: 18. TreppoS, KoeppH, QuanEC, ColeAA, KuettnerKE, Grodzinsky "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
201 16 16 reference_content of cartilage from human knee and ankle pairs. J Orthop Res. 2000;18(5):739-48. [630, 147, 1082, 190] reference_item 0.85 ["reference content label: of cartilage from human knee and ankle pairs. J Orthop Res. "] reference_item 0.85 reference_zone unknown_like none True True
202 16 17 reference_content 19. Laasanen MS, Toyras J, Korhonen RK, Rieppo J, Saarakkala S, Nieminen MT, et al. Biomechanical properties of knee articular cartilage. Biorheology. 2003;40(1-3):133-40. [607, 195, 1083, 263] reference_item 0.85 ["reference content label: 19. Laasanen MS, Toyras J, Korhonen RK, Rieppo J, Saarakkala"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
203 16 18 reference_content 20. Legare A, Garon M, Guardo R, Savard P, Poole AR, Buschmann MD. Detection and analysis of cartilage degeneration by spatially resolved streaming potentials. J Orthop Res. 2002;20(4):819-26. [606, 267, 1083, 358] reference_item 0.85 ["reference content label: 20. Legare A, Garon M, Guardo R, Savard P, Poole AR, Buschma"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
204 16 19 reference_content 21. Rieppo J, Hyttinen MM, Halmesmaki E, Ruotsalainen H, Vasara A, Kiviranta I, et al. Changes in spatial collagen content and collagen network architecture in porcine articular cartilage during growt [606, 363, 1083, 477] reference_item 0.85 ["reference content label: 21. Rieppo J, Hyttinen MM, Halmesmaki E, Ruotsalainen H, Vas"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
205 16 20 reference_content 22. Changoor A, Tran-Khanh N, Methot S, Garon M, Hurtig M, Shive MS, Buschmann MB. A polarized light microscopy method for accurate and reliable grading of collagen organization in cartilage repair. O [606, 482, 1083, 574] reference_item 0.85 ["reference content label: 22. Changoor A, Tran-Khanh N, Methot S, Garon M, Hurtig M, S"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
206 16 21 reference_content 23. Gilmore RS, Palfrey AJ. A histological study of human femoral condylar articular cartilage. J Anat. 1987;155:77-85. [605, 578, 1083, 623] reference_item 0.85 ["reference content label: 23. Gilmore RS, Palfrey AJ. A histological study of human fe"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
207 16 22 reference_content 24. Wang FY, Ying Z, Duan XJ, Tan HB, Yang B, Guo L, et al. Histomorphometric analysis of adult articular calcified cartilage zone. J Struct Biol. 2009;168(3):359-65. [607, 627, 1083, 695] reference_item 0.85 ["reference content label: 24. Wang FY, Ying Z, Duan XJ, Tan HB, Yang B, Guo L, et al. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
208 16 23 reference_content 25. Gannon JM, Walker G, Fischer M, Carpenter R, Thompson RC, Oegema TR. Localization of Type-X collagen in canine growth plate and adult canine articular-cartilage. J Orthop Res. 1991;9(4):485-94. [605, 699, 1083, 790] reference_item 0.85 ["reference content label: 25. Gannon JM, Walker G, Fischer M, Carpenter R, Thompson RC"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
209 16 24 reference_content 26. Oegema TR, Carpenter RJ, Hofmeister F, Thompson RC. The interaction of the zone of calcified cartilage and subchondral bone in osteoarthritis. Microsc Res Tech. 1997;37(4):324-32. [606, 795, 1083, 886] reference_item 0.85 ["reference content label: 26. Oegema TR, Carpenter RJ, Hofmeister F, Thompson RC. The "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
210 16 25 reference_content 27. Gomoll A, Madry H, Knutsen G, van Dijk N, Seil R, Brittberg M, Kon E. The subchondral bone in articular cartilage repair: current problems in the surgical management. Knee Surg Sports Traumatol Ar [606, 891, 1083, 983] reference_item 0.85 ["reference content label: 27. Gomoll A, Madry H, Knutsen G, van Dijk N, Seil R, Brittb"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
211 16 26 reference_content 28. Madry H. The subchondral bone: a new frontier in articular cartilage repair. Knee Surg Sports Traumatol Arthrosc. 2010;18(4):417-8. [605, 987, 1083, 1054] reference_item 0.85 ["reference content label: 28. Madry H. The subchondral bone: a new frontier in articul"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
212 16 27 reference_content 29. Madry H, van Dijk C, Mueller-Gerbl M. The basic science of the subchondral bone. Knee Surg Sports Traumatol Arthrosc. 2010;18(4):419-33. [605, 1059, 1084, 1126] reference_item 0.85 ["reference content label: 29. Madry H, van Dijk C, Mueller-Gerbl M. The basic science "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
213 16 28 reference_content 30. Johnson DL, Urban WP, Caborn DNM, Vanarthos WJ, Carlson CS. Articular cartilage changes seen with magnetic resonance imaging-detected bone bruises associated with acute anterior cruciate ligament [605, 1131, 1084, 1223] reference_item 0.85 ["reference content label: 30. Johnson DL, Urban WP, Caborn DNM, Vanarthos WJ, Carlson "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
214 16 29 reference_content 31. Burr DB, Schaffler MB. The involvement of subchondral mineralized tissues in osteoarthrosis: quantitative microscopic evidence. Microsc Res Tech. 1997;37(4):343-57. [606, 1227, 1083, 1294] reference_item 0.85 ["reference content label: 31. Burr DB, Schaffler MB. The involvement of subchondral mi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
215 16 30 reference_content 32. Wei XC, Messner K. Maturation-dependent durability of spontaneous cartilage repair in rabbit knee joint. J Biomed Mater Res. 1999;46(4):539-48. [606, 1299, 1085, 1367] reference_item 0.85 ["reference content label: 32. Wei XC, Messner K. Maturation-dependent durability of sp"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
216 16 31 reference_content 33. Shapiro F, Koide S, Glimcher MJ. Cell origin and differentiation in the repair of full-thickness defects of articular cartilage. J Bone Joint Surg Am. 1993;75A(4):532-53. [606, 1371, 1084, 1439] reference_item 0.85 ["reference content label: 33. Shapiro F, Koide S, Glimcher MJ. Cell origin and differe"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
217 17 0 header Hoemann et al. [122, 82, 244, 104] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
218 17 1 number 169 [1076, 82, 1109, 103] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
219 17 2 reference_content 34. Shamis LD, Bramlage LR, Gabel AA, Weisbrode S. Effect of subchondral drilling on repair of partial-thickness cartilage defects of third carpal bones in horses. Am J Vet Res. 1989;50(2):290-5. [122, 146, 601, 237] reference_item 0.85 ["reference content label: 34. Shamis LD, Bramlage LR, Gabel AA, Weisbrode S. Effect of"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
220 17 3 reference_content 35. Breinan HA, Martin SD, Hsu HP, Spector M. Healing of canine articular cartilage defects treated with microfracture, a type-II collagen matrix, or cultured autologous chondrocytes. J Orthop Res. 20 [123, 243, 600, 335] reference_item 0.85 ["reference content label: 35. Breinan HA, Martin SD, Hsu HP, Spector M. Healing of can"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
221 17 4 reference_content 36. Frisbie DD, Trotter GW, Powers BE, Rodkey WG, Steadman JR, Howard RD, et al. Arthroscopic subchondral bone plate microfracture technique augments healing of large chondral defects in the radial ca [124, 339, 600, 454] reference_item 0.85 ["reference content label: 36. Frisbie DD, Trotter GW, Powers BE, Rodkey WG, Steadman J"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
222 17 5 reference_content 37. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous repair of full-thickness defects of articular cartilage in a goat model: a preliminary study. J Bone Joint Surg Am. 2001;83A(1):53-64. [123, 459, 599, 549] reference_item 0.85 ["reference content label: 37. Jackson DW, Lalor PA, Aberman HM, Simon TM. Spontaneous "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
223 17 6 reference_content 38. Gill TJ, McCulloch PC, Glasson SS, Blanchet T, Morris EA. Chondral defect repair after the microfracture procedure: a nonhuman primate model. Am J Sports Med. 2005;33(5):680-5. [123, 555, 600, 623] reference_item 0.85 ["reference content label: 38. Gill TJ, McCulloch PC, Glasson SS, Blanchet T, Morris EA"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
224 17 7 reference_content 39. Fortier LA, Potter HG, Rickey EJ, Schnabel LV, Foo LF, Chong LR, et al. Concentrated bone marrow aspirate improves full-thickness cartilage repair compared with microfracture in the equine model. [124, 628, 600, 719] reference_item 0.85 ["reference content label: 39. Fortier LA, Potter HG, Rickey EJ, Schnabel LV, Foo LF, C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
225 17 8 reference_content 40. Vachon AM, McIlwraith CW, Keeley FW. Biochemical-study of repair of induced osteochondral defects of the distal portion of the radial carpal bone in horses by use of periosteal autografts. Am J Ve [124, 724, 599, 815] reference_item 0.85 ["reference content label: 40. Vachon AM, McIlwraith CW, Keeley FW. Biochemical-study o"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
226 17 9 reference_content 41. O'Driscoll SW, Keeley FW, Salter RB. Durability of regenerated articular cartilage produced by free autogenous periosteal grafts in major full-thickness defects in joint surfaces under the influen [123, 819, 600, 935] reference_item 0.85 ["reference content label: 41. O'Driscoll SW, Keeley FW, Salter RB. Durability of regen"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
227 17 10 reference_content 42. Hurtig MB, Fretz PB, Doige CE, Schnurr DL. Effects of lesion size and location on equine articular cartilage repair. Can J Vet Res. 1988;52(1):137-46. [123, 939, 599, 1007] reference_item 0.85 ["reference content label: 42. Hurtig MB, Fretz PB, Doige CE, Schnurr DL. Effects of le"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
228 17 11 reference_content 43. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, Shive MS, Buschmann MD. Chitosan-glycerol phosphate/blood implants improve hyaline cartilage repair in ovine microfracture defects. J Bone Jo [123, 1011, 600, 1103] reference_item 0.85 ["reference content label: 43. Hoemann CD, Hurtig M, Rossomacha E, Sun J, Chevrier A, S"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
229 17 12 reference_content 44. Hoemann CD, Chen G, Marchand C, Sun J, Tran-Khanh N, Chevrier A, et al. Scaffold-guided subchondral bone repair: implication of neutrophils and alternatively activated arginase-1+ macrophages. Am [123, 1107, 599, 1199] reference_item 0.85 ["reference content label: 44. Hoemann CD, Chen G, Marchand C, Sun J, Tran-Khanh N, Che"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
230 17 13 reference_content 45. Driesang IM, Hunziker EB. Delamination rates of tissue flaps used in articular cartilage repair. J Orthop Res. 2000;18(6):909-11. [123, 1202, 599, 1247] reference_item 0.85 ["reference content label: 45. Driesang IM, Hunziker EB. Delamination rates of tissue f"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
231 17 14 reference_content 46. Dell'Accio F, Vanlauwe J, Bellemans J, Neys J, De Bari C, Luyten FP. Expanded phenotypically stable chondrocytes persist in the repair tissue and contribute to cartilage matrix formation and struc [124, 1252, 600, 1367] reference_item 0.85 ["reference content label: 46. Dell'Accio F, Vanlauwe J, Bellemans J, Neys J, De Bari C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
232 17 15 reference_content 47. Chen G, Sun J, Lascau-Coman V, Chevrier A, Marchand C, Hoemann CD. Acute osteoclast activity following subchondral drilling is promoted by chitosan and associated with improved cartilage tissue in [122, 1371, 599, 1464] reference_item 0.85 ["reference content label: 47. Chen G, Sun J, Lascau-Coman V, Chevrier A, Marchand C, H"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
233 17 16 reference_content 48. Mainil-Varlet P, Rieser F, Grogan S, Mueller W, Saager C, Jakob RP. Articular cartilage repair using a tissue-engineered cartilage-like implant: an animal study. Osteoarthritis Cartilage. 2001;9:S [632, 147, 1109, 238] reference_item 0.85 ["reference content label: 48. Mainil-Varlet P, Rieser F, Grogan S, Mueller W, Saager C"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
234 17 17 reference_content 49. Erggelet C, Neumann K, Endres M, Haberstroh K, Sittinger M, Kaps C. Regeneration of ovine articular cartilage defects by cell-free polymer-based implants. Biomaterials. 2007;28(36):5570-80. [631, 242, 1109, 334] reference_item 0.85 ["reference content label: 49. Erggelet C, Neumann K, Endres M, Haberstroh K, Sittinger"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
235 17 18 reference_content 50. Dorotka R, Windberger U, Macfelda K, Bindreiter U, Toma C, Nehrer S. Repair of articular cartilage defects treated by microfracture and a three-dimensional collagen matrix. Biomaterials. 2005;26(1 [631, 339, 1109, 430] reference_item 0.85 ["reference content label: 50. Dorotka R, Windberger U, Macfelda K, Bindreiter U, Toma "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
236 17 19 reference_content 51. Convery FR, Akeson WH, Keown GH. The repair of large osteochondral defects: an experimental study in horses. Clin Orthop Relat Res. 1972;82:253-62. [632, 435, 1109, 503] reference_item 0.85 ["reference content label: 51. Convery FR, Akeson WH, Keown GH. The repair of large ost"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
237 17 20 reference_content 52. Chevrier A, Hoemann CD, Sun J, Buschmann MD. Chitosanglycerol phosphate/blood implants increase cell recruitment, transient vascularization and subchondral bone remodeling in drilled cartilage def [631, 507, 1109, 622] reference_item 0.85 ["reference content label: 52. Chevrier A, Hoemann CD, Sun J, Buschmann MD. Chitosangly"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
238 17 21 reference_content 53. Frisbie DD, Oxford JT, Southwood L, Trotter GW, Rodkey WG, Steadman JR, et al. Early events in cartilage repair after subchondral bone microfracture. Clin Orthop Relat Res. 2003;407:215-27. [632, 627, 1109, 718] reference_item 0.85 ["reference content label: 53. Frisbie DD, Oxford JT, Southwood L, Trotter GW, Rodkey W"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
239 17 22 reference_content 54. Hunziker EB. Articular cartilage repair: basic science and clinical progress. A review of the current status and prospects. Osteoarthritis Cartilage. 2002;10(6):432-63. [632, 724, 1109, 791] reference_item 0.85 ["reference content label: 54. Hunziker EB. Articular cartilage repair: basic science a"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
240 17 23 reference_content 55. Rutgers M, van Pelt MJP, Dhert WJA, Creemers LB, Saris DBF. Evaluation of histological scoring systems for tissue-engineered, repaired and osteoarthritic cartilage. Osteoarthritis Cartilage. In pr [633, 795, 1108, 887] reference_item 0.85 ["reference content label: 55. Rutgers M, van Pelt MJP, Dhert WJA, Creemers LB, Saris D"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
241 17 24 reference_content 56. Knutsen G, Engebretsen L, Ludvigsen TC, Drogset JO, Grontvedt T, Solheim E, et al. Autologous chondrocyte implantation compared with microfracture in the knee: a randomized trial. J Bone Joint Sur [632, 892, 1108, 983] reference_item 0.85 ["reference content label: 56. Knutsen G, Engebretsen L, Ludvigsen TC, Drogset JO, Gron"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
242 17 25 reference_content 57. Knutsen G, Drogset JO, Engebretsen L, Grontvedt T, Isaksen V, Ludvigsen TC, et al. A randomized trial comparing autologous chondrocyte implantation with microfracture. J Bone Joint Surg Am. 2007;8 [632, 988, 1109, 1079] reference_item 0.85 ["reference content label: 57. Knutsen G, Drogset JO, Engebretsen L, Grontvedt T, Isaks"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
243 17 26 reference_content 58. Brun P, Dickinson S, Zavan B, Cortivo R, Hollander A, Abatangelo G. Characteristics of repair tissue in second-look and third-look biopsies from patients treated with engineered cartilage: relatio [632, 1084, 1109, 1198] reference_item 0.85 ["reference content label: 58. Brun P, Dickinson S, Zavan B, Cortivo R, Hollander A, Ab"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
244 17 27 reference_content 59. Gikas PD, Morris T, Carrington R, Skinner J, Bentley G, Briggs T. A correlation between the timing of biopsy after autologous chondrocyte implantation and the histological appearance. J Bone Joint [632, 1203, 1109, 1295] reference_item 0.85 ["reference content label: 59. Gikas PD, Morris T, Carrington R, Skinner J, Bentley G, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
245 17 28 reference_content 60. Mainil-Varlet P, Van Damme B, Nesic D, Knutsen G, Kandel R, Roberts S. A new histology scoring system for the assessment of the quality of human cartilage repair: ICRS II. Am J Sports Med. 2010;38 [632, 1299, 1109, 1390] reference_item 0.85 ["reference content label: 60. Mainil-Varlet P, Van Damme B, Nesic D, Knutsen G, Kandel"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
246 17 29 reference_content 61. Saris DB, Vanlauwe J, Victor J, Haspl M, Bohnsack M, Fortems Y, et al. Characterized chondrocyte implantation results in better structural repair when treating symptomatic [632, 1395, 1110, 1464] reference_item 0.85 ["reference content label: 61. Saris DB, Vanlauwe J, Victor J, Haspl M, Bohnsack M, For"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
247 18 0 number 170 [98, 82, 132, 102] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
248 18 1 header Cartilage 2(2) [973, 81, 1084, 106] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
249 18 2 reference_content cartilage defects of the knee in a randomized controlled trial versus microfracture. Am J Sports Med. 2008;36(2):235-46. [122, 147, 574, 191] reference_item 0.85 ["reference content label: cartilage defects of the knee in a randomized controlled tri"] reference_item 0.85 reference_zone unknown_like none True True
250 18 3 reference_content 62. Briggs TWR, Mahroof S, David LA, Flannelly DJ, Pringle J, Bayliss M. Histological evaluation of chondral defects after autologous chondrocyte implantation of the knee. J Bone Joint Surg Br. 2003;8 [98, 195, 575, 287] reference_item 0.85 ["reference content label: 62. Briggs TWR, Mahroof S, David LA, Flannelly DJ, Pringle J"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
251 18 4 reference_content 63. Frisbie DD, Morisset S, Ho CP, Rodkey WG, Steadman JR, McIlwraith CW. Effects of calcified cartilage on healing of chondral defects treated with microfracture in horses. Am J Sports Med. 2006;34(1 [98, 291, 575, 382] reference_item 0.85 ["reference content label: 63. Frisbie DD, Morisset S, Ho CP, Rodkey WG, Steadman JR, M"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
252 18 5 reference_content 64. Insall JN. Intra-articular surgery for degenerative arthritis of the knee: a report of the work of the late K. H. Pridie. J Bone Joint Surg Br. 1967;49(2):211-28. [97, 387, 575, 454] reference_item 0.85 ["reference content label: 64. Insall JN. Intra-articular surgery for degenerative arth"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
253 18 6 reference_content 65. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongialization: a new treatment for diseased patellae. Clin Orthop Relat Res. 1979;144:74-83. [98, 459, 574, 526] reference_item 0.85 ["reference content label: 65. Ficat RP, Ficat C, Gedeon P, Toussaint JB. Spongializati"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
254 18 7 reference_content 66. Bouwmeester P, Kuijer R, Terwindt-Rouwenhorst E, van der Linden T, Bulstra K. Histological and biochemical evaluation of perichondrial transplants in human articular cartilage defects. J Orthop Re [98, 531, 574, 623] reference_item 0.85 ["reference content label: 66. Bouwmeester P, Kuijer R, Terwindt-Rouwenhorst E, van der"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
255 18 8 reference_content 67. Nehrer S, Spector M, Minas T. Histologic analysis of tissue after failed cartilage repair procedures. Clin Orthop. 1999;365:149-62. [97, 627, 573, 694] reference_item 0.85 ["reference content label: 67. Nehrer S, Spector M, Minas T. Histologic analysis of tis"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
256 18 9 reference_content 68. Mainil-Varlet P, Aigner T, Brittberg M, Bullough P, Hollander A, Hunziker E, et al. Histological assessment of cartilage repair: a report by the Histology Endpoint Committee of the International C [98, 699, 575, 814] reference_item 0.85 ["reference content label: 68. Mainil-Varlet P, Aigner T, Brittberg M, Bullough P, Holl"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
257 18 10 reference_content 69. Roberts S, Menage J, Sandell LJ, Evans EH, Richardson JB. Immunohistochemical study of collagen types I and II and procollagen IIA in human cartilage repair tissue following autologous chondrocyte [98, 819, 573, 912] reference_item 0.85 ["reference content label: 69. Roberts S, Menage J, Sandell LJ, Evans EH, Richardson JB"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
258 18 11 reference_content 70. Hollander AP, Dickinson SC, Sims TJ, Brun P, Cortivo R, Kon E, et al. Maturation of tissue engineered cartilage implanted in injured and osteoarthritic human knees. Tissue Eng. 2006;12(7):1787-98. [98, 916, 574, 983] reference_item 0.85 ["reference content label: 70. Hollander AP, Dickinson SC, Sims TJ, Brun P, Cortivo R, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
259 18 12 reference_content 71. ClinicalTrials. A Randomized, Comparative Multicenter Clinical Trial Evaluating BST-CarGel™ and Microfracture in Repair of Focal Articular Cartilage Lesions on the Femoral Condyle. Montreal, Canad [99, 988, 573, 1102] reference_item 0.85 ["reference content label: 71. ClinicalTrials. A Randomized, Comparative Multicenter Cl"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
260 18 13 reference_content 72. Moriya T, Wada Y, Watanabe A, Sasho T, Nakagawa K, Mainil-Varlet P, Moriya H. Evaluation of reparative cartilage after autologous chondrocyte implantation for osteochondritis dissecans: histology, [99, 1107, 574, 1222] reference_item 0.85 ["reference content label: 72. Moriya T, Wada Y, Watanabe A, Sasho T, Nakagawa K, Maini"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
261 18 14 reference_content 73. Peterfy CG, Guermazi A, Zaim S, Tirman PFJ, Miaux Y, White D, et al. Whole-organ magnetic resonance imaging score (WORMS) of the knee in osteoarthritis. Osteoarthritis Cartilage. 2004;12(3):177-90 [98, 1227, 574, 1318] reference_item 0.85 ["reference content label: 73. Peterfy CG, Guermazi A, Zaim S, Tirman PFJ, Miaux Y, Whi"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
262 18 15 reference_content 74. Mithoefer K, Williams RJ 3rd, Warren RF, Potter HG, Spock CR, Jones EC, et al. The microfracture technique for the treatment of articular cartilage lesions in the knee: a prospective cohort study. [98, 1323, 575, 1415] reference_item 0.85 ["reference content label: 74. Mithoefer K, Williams RJ 3rd, Warren RF, Potter HG, Spoc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
263 18 16 reference_content 75. Watanabe A, Wada Y, Obata T, Ueda T, Tamura M, Ikehira H, Moriya H. Delayed gadolinium-enhanced MR to determine glycosaminoglycan concentration in reparative cartilage after autologous chondrocyte [606, 147, 1084, 262] reference_item 0.85 ["reference content label: 75. Watanabe A, Wada Y, Obata T, Ueda T, Tamura M, Ikehira H"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
264 18 17 reference_content 76. Tins BJ, McCall IW, Takahashi T, Cassar-Pullicino V, Roberts S, Ashton B, Richardson J. Autologous chondrocyte implantation in knee joint: MR imaging and histologic features at 1-year follow-up. R [607, 267, 1084, 358] reference_item 0.85 ["reference content label: 76. Tins BJ, McCall IW, Takahashi T, Cassar-Pullicino V, Rob"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
265 18 18 reference_content 77. Mithoefer K, Saris DBF, Farr J, Kon E, Zaslav K, Cole BJ et al. Guidelines for the design and conduct of clinical studies in knee articular cartilage repair: international cartilage repair society [606, 363, 1084, 501] reference_item 0.85 ["reference content label: 77. Mithoefer K, Saris DBF, Farr J, Kon E, Zaslav K, Cole BJ"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
266 18 19 reference_content 78. Trattnig S, Winalski CS, Marlovits S, Jurvelin JS, Welsch GH, and Potter HG. Magnetic resonance imaging of cartilage repair: a review. Cartilage 2011;2:5-26. [606, 507, 1083, 575] reference_item 0.85 ["reference content label: 78. Trattnig S, Winalski CS, Marlovits S, Jurvelin JS, Welsc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
267 18 20 reference_content 79. Curl WW, Krome J, Gordon ES, Rushing J, Smith BP, Poehling GG. Cartilage injuries: a review of 31,516 knee arthroscopies. Arthroscopy. 1997;13(4):456-60. [606, 578, 1083, 647] reference_item 0.85 ["reference content label: 79. Curl WW, Krome J, Gordon ES, Rushing J, Smith BP, Poehli"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
268 18 21 reference_content 80. Steadman JR, Rodkey WG, Singleton SB, Briggs KK. Microfracture technique for full-thickness chondral defects: technique and clinical results. Oper Tech Orthop. 1997;7(4):300-4. [606, 651, 1083, 741] reference_item 0.85 ["reference content label: 80. Steadman JR, Rodkey WG, Singleton SB, Briggs KK. Microfr"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
269 18 22 reference_content 81. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O, Peterson L. Treatment of deep cartilage defects in the knee with autologous chondrocyte transplantation. N Engl J Med. 1994;331(14):889-95 [606, 746, 1084, 837] reference_item 0.85 ["reference content label: 81. Brittberg M, Lindahl A, Nilsson A, Ohlsson C, Isaksson O"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
270 18 23 reference_content 82. Shive MS, Hoemann CD, Restrepo A, Hurtig MB, Duval N, Ranger P, et al. BST-CarGel: in situ chondroinduction for cartilage repair. Oper Tech Orthop. 2006;16(4):271-8. [606, 843, 1083, 912] reference_item 0.85 ["reference content label: 82. Shive MS, Hoemann CD, Restrepo A, Hurtig MB, Duval N, Ra"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
271 18 24 reference_content 83. Henderson I, Francisco R, Oakes B, Cameron J. Autologous chondrocyte implantation for treatment of focal chondral defects of the knee: a clinical, arthroscopic, MRI and histologic evaluation at 2 [606, 916, 1083, 1007] reference_item 0.85 ["reference content label: 83. Henderson I, Francisco R, Oakes B, Cameron J. Autologous"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
272 18 25 reference_content 84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghinelli D, Gobbi A, et al. Articular cartilage engineering with Hyalograft (R) C: 3-year clinical results. Clin Orthop Relat Res. 2005;435:96-1 [606, 1011, 1083, 1102] reference_item 0.85 ["reference content label: 84. Marcacci M, Berruto M, Brocchetta D, Delcogliano A, Ghin"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
273 18 26 reference_content 85. Peterson L, Minas T, Brittberg M, Lindahl A. Treatment of osteochondritis dissecans of the knee with autologous chondrocyte transplantation: results at two to ten years. J Bone Joint Surg Am. 2003 [606, 1107, 1084, 1198] reference_item 0.85 ["reference content label: 85. Peterson L, Minas T, Brittberg M, Lindahl A. Treatment o"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
274 18 27 reference_content 86. Henderson I, Lavigne P, Valenzuela H, Oakes B. Autologous chondrocyte implantation: superior biologic properties of hyaline cartilage repairs. Clin Orthop Relat Res. 2007;455:253-61. [605, 1203, 1083, 1271] reference_item 0.85 ["reference content label: 86. Henderson I, Lavigne P, Valenzuela H, Oakes B. Autologou"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
275 18 28 reference_content 87. Vasara AI, Hyttinen MM, Lammi MJ, Lammi PE, Langsjo TK, Lindahl A, et al. Subchondral bone reaction associated with chondral defect and attempted cartilage repair in goats. Calcif Tissue Int. 2004 [605, 1276, 1083, 1366] reference_item 0.85 ["reference content label: 87. Vasara AI, Hyttinen MM, Lammi MJ, Lammi PE, Langsjo TK, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
276 18 29 reference_content 88. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of [605, 1371, 1086, 1416] reference_item 0.85 ["reference content label: 88. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Cap"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
277 19 0 header Hoemann et al. [122, 82, 244, 104] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
278 19 1 number 171 [1076, 81, 1108, 103] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
279 19 2 reference_content large, full-thickness defects of articular-cartilage. J Bone Joint Surg Am. 1994;76A(4):579-92. [160, 147, 599, 191] reference_item 0.85 ["reference content label: large, full-thickness defects of articular-cartilage. J Bone"] reference_item 0.85 reference_zone unknown_like none True True
280 19 3 reference_content 89. Hoemann CD, Sun J, McKee MD, Chevrier A, Rossomacha E, Rivard GE, et al. Chitosan-glycerol phosphate/blood implants elicit hyaline cartilage repair integrated with porous subchondral bone in micro [132, 196, 600, 309] reference_item 0.85 ["reference content label: 89. Hoemann CD, Sun J, McKee MD, Chevrier A, Rossomacha E, R"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
281 19 4 reference_content 90. Brittberg M, Nilsson A, Lindahl A, Ohlsson C, Peterson L. Rabbit articular cartilage defects treated with autologous cultured chondrocytes. Clin Orthop Relat Res. 1996;326:270-83. [132, 314, 599, 383] reference_item 0.85 ["reference content label: 90. Brittberg M, Nilsson A, Lindahl A, Ohlsson C, Peterson L"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
282 19 5 reference_content 91. Ahern BJ, Parvizi J, Boston R, Schaer TP. Preclinical animal models in single site cartilage defect testing: a systematic review. Osteoarthritis Cartilage. 2009;17(6):705-13. [131, 387, 599, 454] reference_item 0.85 ["reference content label: 91. Ahern BJ, Parvizi J, Boston R, Schaer TP. Preclinical an"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
283 19 6 reference_content 92. Frisbie DD, Cross MW, McIlwraith CW. A comparative study of articular cartilage thickness in the stifle of animal species used in human pre-clinical studies compared to articular cartilage thickne [132, 459, 599, 574] reference_item 0.85 ["reference content label: 92. Frisbie DD, Cross MW, McIlwraith CW. A comparative study"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
284 19 7 reference_content 93. Temple MM, Bae WC, Chen MQ, Lotz M, Amiel D, Coufts RD, Sah RL. Age- and site-associated biomechanical weakening of human articular cartilage of the femoral condyle. Osteoarthritis Cartilage. 2007 [132, 579, 599, 670] reference_item 0.85 ["reference content label: 93. Temple MM, Bae WC, Chen MQ, Lotz M, Amiel D, Coufts RD, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
285 19 8 reference_content 94. Nixon AJ, Fortier LA, Williams J, Mohammed H. Enhanced repair of extensive articular defects by insulin-like growth factor-I-laden fibrin composites. J Orthop Res. 1999;17(4):475-87. [132, 675, 599, 743] reference_item 0.85 ["reference content label: 94. Nixon AJ, Fortier LA, Williams J, Mohammed H. Enhanced r"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
286 19 9 reference_content 95. Breinan HA, Minas T, Hsu HP, Nehrer S, Sledge CB, Spector M. Effect of cultured autologous chondrocytes on repair of chondral defects in a canine model. J Bone Joint Surg Am. 1997;79(10):1439-51. [132, 747, 599, 837] reference_item 0.85 ["reference content label: 95. Breinan HA, Minas T, Hsu HP, Nehrer S, Sledge CB, Specto"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
287 19 10 reference_content 96. Roberts S, McCall I, Darby A, Menage J, Evans H, Harrison P, Richardson J. Autologous chondrocyte implantation for cartilage repair: monitoring its success by magnetic resonance imaging and histol [132, 843, 600, 935] reference_item 0.85 ["reference content label: 96. Roberts S, McCall I, Darby A, Menage J, Evans H, Harriso"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
288 19 11 reference_content 97. Horas U, Pelinkovic D, Herr G, Aigner T, Schnettler R. Autologous chondrocyte implantation and osteochondral cylinder transplantation in cartilage repair of the knee joint: a prospective, comparat [132, 939, 599, 1030] reference_item 0.85 ["reference content label: 97. Horas U, Pelinkovic D, Herr G, Aigner T, Schnettler R. A"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
289 19 12 reference_content 98. Saris DBF, Vanlauwe J, Victor J, Almqvist KF, Verdonk R, Bellemans J, Luyten FP. Treatment of symptomatic cartilage defects of the knee: characterized chondrocyte implantation results in better cl [132, 1035, 600, 1174] reference_item 0.85 ["reference content label: 98. Saris DBF, Vanlauwe J, Victor J, Almqvist KF, Verdonk R,"] reference_item 0.85 reference_zone reference_like heading_numbered True True
290 19 13 reference_content 99. Bartlett W, Skinner JA, Gooding CR, Carrington RWJ, Flanagan AM, Briggs TWR, Bentley G. Autologous chondrocyte implantation versus matrix-induced autologous chondrocyte implantation for osteochond [130, 1179, 600, 1294] reference_item 0.85 ["reference content label: 99. Bartlett W, Skinner JA, Gooding CR, Carrington RWJ, Flan"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
291 19 14 reference_content 100. Hendrickson DA, Nixon AJ, Grande DA, Todhunter RJ, Minor RM, Erb H, Lust G. Chondrocyte-fibrin matrix transplants for resurfacing extensive articular-cartilage defects. I Orthon Res. 1004·12(A)·A [125, 1299, 599, 1390] reference_item 0.85 ["reference content label: 100. Hendrickson DA, Nixon AJ, Grande DA, Todhunter RJ, Mino"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
292 19 15 reference_content 101. Hurtig M, Buschmann MD, Fortier L, Hoemann CD, Hunziker EB, Jurvelin JS, et al. Pre-Clinical Studies for Cartilage [124, 1394, 601, 1440] reference_item 0.85 ["reference content label: 101. Hurtig M, Buschmann MD, Fortier L, Hoemann CD, Hunziker"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
293 19 16 reference_content Repair: Recommendations from the International Cartilage Repair Society. In Press. [669, 147, 1108, 191] reference_item 0.85 ["reference content label: Repair: Recommendations from the International Cartilage Rep"] reference_item 0.85 reference_zone unknown_like none True True
294 19 17 reference_content 102. Pineda S, Pollack A, Stevenson S, Goldberg V, Caplan A. A semiquantitative scale for histologic grading of articular-cartilage repair. Acta Anatomica. 1992;143(4):335-40. [633, 195, 1109, 263] reference_item 0.85 ["reference content label: 102. Pineda S, Pollack A, Stevenson S, Goldberg V, Caplan A."] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
295 19 18 reference_content 103. Selmi TAS, Verdonk P, Chambat P, Dubrana F, Potel JF, Barnouin L, Neyret P. Autologous chondrocyte implantation in a novel alginate-agarose hydrogel: outcome at two years. J Bone Joint Surg Br. 2 [634, 267, 1108, 358] reference_item 0.85 ["reference content label: 103. Selmi TAS, Verdonk P, Chambat P, Dubrana F, Potel JF, B"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
296 19 19 reference_content 104. Henderson IJP, Tuy B, Connell D, Oakes B, Hettwer WH. Prospective clinical study of autologous chondrocyte implantation and correlation with MRI at three and 12 months. J Bone Joint Surg Br. 2003 [633, 363, 1109, 454] reference_item 0.85 ["reference content label: 104. Henderson IJP, Tuy B, Connell D, Oakes B, Hettwer WH. P"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
297 19 20 reference_content 105. Kristensen HK. An improved method of decalcification. Stain Technol. 1948;23(3):151-4. [633, 459, 1107, 502] reference_item 0.85 ["reference content label: 105. Kristensen HK. An improved method of decalcification. S"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
298 19 21 reference_content 106 Hunziker EB, Michel M, Studer D. Ultrastructure of adult human articular cartilage matrix after cryotechnical processing. Microsc Res Tech. 1997;37(4):271-84. [634, 507, 1109, 575] reference_item 0.85 ["reference content label: 106 Hunziker EB, Michel M, Studer D. Ultrastructure of adult"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
299 19 22 reference_content 107. Chevrier A, Rossomacha E, Buschmann MD, Hoemann CD. Optimization of histoprocessing methods to detect glycosaminoglycan, collagen type II, and collagen type I in decalcified rabbit osteochondral [634, 579, 1109, 670] reference_item 0.85 ["reference content label: 107. Chevrier A, Rossomacha E, Buschmann MD, Hoemann CD. Opt"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
300 19 23 reference_content 108. Rosen AD. End-point determination in EDTA decalcification using ammonium oxalate. Stain Technol. 1981;56(1):48-9. [633, 675, 1107, 719] reference_item 0.85 ["reference content label: 108. Rosen AD. End-point determination in EDTA decalcificati"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
301 19 24 reference_content 109. Qiu YS, Shahgaldi BF, Revell WJ, Heatley FW. Observations of subchondral plate advancement during osteochondral repair: a histomorphometric and mechanical study in the rabbit femoral condyle. Ost [633, 723, 1109, 815] reference_item 0.85 ["reference content label: 109. Qiu YS, Shahgaldi BF, Revell WJ, Heatley FW. Observatio"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
302 19 25 reference_content 110. Hoemann CD, Sun J, Legare A, McKee MD, Buschmann MD. Tissue engineering of cartilage using an injectable and adhesive chitosan-based cell-delivery vehicle. Osteoarthritis Cartilage. 2005;13(4):31 [633, 819, 1109, 911] reference_item 0.85 ["reference content label: 110. Hoemann CD, Sun J, Legare A, McKee MD, Buschmann MD. Ti"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
303 19 26 reference_content 111. Niederauer GG, Slivka MA, Leatherbury NC, Korvick DL, Harroff HH, Ehler WC, et al. Evaluation of multiphase implants for repair of focal osteochondral defects in goats. Biomaterials. 2000;21(24): [633, 915, 1109, 1007] reference_item 0.85 ["reference content label: 111. Niederauer GG, Slivka MA, Leatherbury NC, Korvick DL, H"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
304 19 27 reference_content 112. Griffiths G. Quantitative aspects of immunocytochemistry: Estimation of volume density and surface density in practice. In: Griffiths G, editor. Fine structure immunocytochemistry. 377-383 Berlin [633, 1011, 1108, 1102] reference_item 0.85 ["reference content label: 112. Griffiths G. Quantitative aspects of immunocytochemistr"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
305 19 28 reference_content 113. Rosenberg L. Chemical basis for the histological use of safranin O in the study of articular cartilage. J Bone Joint Surg Am. 1971;53(1):69-82. [633, 1106, 1108, 1174] reference_item 0.85 ["reference content label: 113. Rosenberg L. Chemical basis for the histological use of"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
306 19 29 reference_content 114. Bulstra SK, Drukker J, Kuijer R, Buurman WA, Vanderlinden AJ. Thionin staining of paraffin and plastic embedded sections of cartilage. Biotech Histochem. 1993;68(1):20-8. [633, 1179, 1109, 1247] reference_item 0.85 ["reference content label: 114. Bulstra SK, Drukker J, Kuijer R, Buurman WA, Vanderlind"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
307 19 30 reference_content 115. Hoemann CD, Tran-Khanh N, Lascau-Coman V, Garon M, Chen H, Jarry C, et al. Quantitative histomorphometry of collagen types I & II and safranin-O in human osteochondral biopsies. Miami: 2009. Conf [634, 1251, 1110, 1367] reference_item 0.85 ["reference content label: 115. Hoemann CD, Tran-Khanh N, Lascau-Coman V, Garon M, Chen"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
308 19 31 reference_content 116. Zhu Y, Oganesian A, Keene DR, Sandell LJ. Type IIA procollagen containing the cysteine-rich amino propeptide is deposited in the extracellular matrix of prechondrogenic [633, 1371, 1111, 1440] reference_item 0.85 ["reference content label: 116. Zhu Y, Oganesian A, Keene DR, Sandell LJ. Type IIA proc"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
309 20 0 number 172 [98, 82, 132, 103] noise 0.9 ["page number label"] noise 0.9 unknown_like short_fragment False False
310 20 1 header Cartilage 2(2) [973, 82, 1084, 105] noise 0.9 ["header label"] noise 0.9 unknown_like short_fragment False False
311 20 2 reference_content tissue and binds to TGF-beta 1 and BMP-2. J Cell Biol. 1999;144(5):1069-80. [135, 147, 572, 190] reference_item 0.85 ["reference content label: tissue and binds to TGF-beta 1 and BMP-2. J Cell Biol. 1999;"] reference_item 0.85 reference_zone unknown_like none True True
312 20 3 reference_content 117. Roberts S, Hollander AP, Caterson B, Menage J, Richardson JB. Matrix turnover in human cartilage repair tissue in autologous chondrocyte implantation. Arthritis Rheum. 2001;44(11):2586-98. [100, 195, 573, 286] reference_item 0.85 ["reference content label: 117. Roberts S, Hollander AP, Caterson B, Menage J, Richards"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
313 20 4 reference_content 118. Kreuz PC, Erggelet C, Steinwachs MR, Krause SJ, Lahm A, Niemeyer P, et al. Microfracture of chondral defects in the knee associated with different results in patients aged 40 years or younger? Ar [99, 291, 574, 383] reference_item 0.85 ["reference content label: 118. Kreuz PC, Erggelet C, Steinwachs MR, Krause SJ, Lahm A,"] reference_item 0.85 reference_zone unknown_like heading_numbered True True
314 20 5 reference_content 119. Temple-Wong MM, Bae WC, Chen MQ, Bugbee WD, Amiel D, Coutts RD, et al. Biomechanical, structural, and biochemical indices of degenerative and osteoarthritic deterioration of adult human articular [100, 387, 574, 503] reference_item 0.85 ["reference content label: 119. Temple-Wong MM, Bae WC, Chen MQ, Bugbee WD, Amiel D, Co"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
315 20 6 reference_content 120. von Rechenberg B, Akens MK, Nadler D, Bittmann P, Zlinszky K, Kutter A, et al. Changes in subchondral bone in cartilage resurfacing: an experimental study in sheep using different types of osteoc [99, 507, 575, 623] reference_item 0.85 ["reference content label: 120. von Rechenberg B, Akens MK, Nadler D, Bittmann P, Zlins"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
316 20 7 reference_content 121. Méthot S, Hoemann CD, Rossomacha E, Restrepo A, Stanish WD, MacDonald P, et al. ICRS histology scores of biopsies from an interim analysis of a randomized controlled clinical trial show significa [99, 628, 574, 791] reference_item 0.85 ["reference content label: 121. M\u00e9thot S, Hoemann CD, Rossomacha E, Restrepo A, Stanish"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
317 20 8 reference_content 122. Shrout PE, Fleiss JL. Intraclass correlations: uses in assessing rater reliability. Psychol Bull. 1979;86:420-8. [98, 795, 574, 839] reference_item 0.85 ["reference content label: 122. Shrout PE, Fleiss JL. Intraclass correlations: uses in "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
318 20 9 reference_content 123. Roos EM, Engelhart L, Ranstam J, Anderson AF, Irrgang JJ, Marx RG, Tegner Y, Davis AM. ICRS recommendation document: patient-reported outcome instruments for use in patients with articular cartil [607, 148, 1084, 285] reference_item 0.85 ["reference content label: 123. Roos EM, Engelhart L, Ranstam J, Anderson AF, Irrgang J"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
319 20 10 reference_content 124. O'Driscoll SW, Marx RG, Beaton DE, Miura Y, Gallay SH, Fitzsimmons JS. Validation of a simple histological-histochemical cartilage scoring system. Tissue Eng. 2001;7(3):313-20. [607, 291, 1083, 381] reference_item 0.85 ["reference content label: 124. O'Driscoll SW, Marx RG, Beaton DE, Miura Y, Gallay SH, "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
320 20 11 reference_content 125. Igarashi T, Iwasaki N, Kasahara Y, Minami A. A cellular implantation system using an injectable ultra-purified alginate gel for repair of osteochondral defects in a rabbit model. J Biomed Mater R [608, 386, 1083, 478] reference_item 0.85 ["reference content label: 125. Igarashi T, Iwasaki N, Kasahara Y, Minami A. A cellular"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
321 20 12 reference_content 126. Hoemann CD, Tran-Khanh N, Méthot S, Chen G, Marchand C, Lascau-Coman V, et al. Correlation of tissue histomorphometry with ICRS histology scores in biopsies obtained from a randomized controlled [608, 482, 1084, 647] reference_item 0.85 ["reference content label: 126. Hoemann CD, Tran-Khanh N, M\u00e9thot S, Chen G, Marchand C,"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
322 20 13 reference_content 127. Minas T, Gomoll AH, Rosenberger R, Royce RO, Bryant T. Increased failure rate of autologous chondrocyte implantation after previous treatment with marrow stimulation techniques. Am J Sports Med. [609, 651, 1083, 743] reference_item 0.85 ["reference content label: 127. Minas T, Gomoll AH, Rosenberger R, Royce RO, Bryant T. "] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True
323 20 14 reference_content 128. Rieppo J, Toyras J, Nieminen MT, Kovanen V, Hyttinen MM, Korhonen RK, et al. Structure-function relationships in enzymatically modified articular cartilage. Cells Tissues Organs. 2003;175(3):121- [608, 747, 1084, 838] reference_item 0.85 ["reference content label: 128. Rieppo J, Toyras J, Nieminen MT, Kovanen V, Hyttinen MM"] reference_item 0.85 reference_zone reference_like reference_numeric_dot True True

View file

@ -0,0 +1,236 @@
from __future__ import annotations
import pytest
from paperforge.worker.ocr_figures import (
_extract_figure_marker,
_extract_figure_number,
_format_figure_id,
build_figure_inventory_vnext,
)
class TestExtractFigureNumber:
"""Test _extract_figure_number after regex change to named groups."""
def test_main_after_regex_change(self):
assert _extract_figure_number("Figure 1. Caption") == 1
def test_supplementary_after_regex_change(self):
assert _extract_figure_number("Figure S1. Caption") == 1
def test_appendix_after_regex_change(self):
assert _extract_figure_number("Figure A1. Caption") == 1
class TestExtractFigureMarker:
"""Test _extract_figure_marker returns correct structured dict."""
def test_supplementary_keyword_has_no_prefix(self):
marker = _extract_figure_marker("Supplementary Figure 1. Caption")
# "Supplementary" keyword determines namespace, not the S prefix.
# Since there's no explicit prefix letter before the number,
# prefix is None.
assert marker["prefix"] is None
assert marker["namespace"] == "supplementary"
assert _format_figure_id("supplementary", 1) == "figure_s001"
def test_supplementary_keyword_overrides_appendix_prefix(self):
"""Supplementary keyword in text takes precedence over prefix letter A."""
marker = _extract_figure_marker("Supplementary Figure A1. Caption")
# prefix is "A", but "supplementary" keyword forces namespace to
# "supplementary", overriding the appendix inference from prefix.
assert marker["namespace"] == "supplementary"
def test_extended_data_keyword_overrides_appendix_prefix(self):
"""Extended Data keyword in text takes precedence over prefix letter A."""
marker = _extract_figure_marker("Extended Data Figure A1. Caption")
assert marker["namespace"] == "extended_data"
def test_lowercase_appendix_prefix_normalized(self):
"""Lowercase prefix letter is normalized to uppercase."""
marker = _extract_figure_marker("Figure a1")
assert marker["prefix"] == "A"
@pytest.mark.parametrize(
"text, expected_prefix",
[
("Figure S1", "S"),
("Figure A1", "A"),
("Figure A.1", "A"),
("Figure B2", "B"),
("Figure 1", None),
],
)
def test_prefix_extraction(self, text, expected_prefix):
marker = _extract_figure_marker(text)
assert marker["prefix"] == expected_prefix
@pytest.mark.parametrize(
"text, expected_namespace",
[
("Figure S1", "supplementary"),
("Figure A1", "appendix"),
("Figure 1", "main"),
],
)
def test_namespace_resolution(self, text, expected_namespace):
marker = _extract_figure_marker(text)
assert marker["namespace"] == expected_namespace
class TestFormatFigureId:
"""Test _format_figure_id with alpha_prefix support."""
def test_appendix_letter_is_preserved(self):
"""Appendix prefix letter is embedded in the figure id."""
assert _format_figure_id("appendix", 2, alpha_prefix="B") == "figure_b002"
def test_figure_a1_and_figure_b1_do_not_collide(self):
"""Different appendix letters produce distinct ids for same number."""
id_a = _format_figure_id("appendix", 1, alpha_prefix="A")
id_b = _format_figure_id("appendix", 1, alpha_prefix="B")
assert id_a == "figure_a001"
assert id_b == "figure_b001"
assert id_a != id_b
def test_main_number_unchanged(self):
"""Main namespace unchanged by alpha_prefix addition."""
assert _format_figure_id("main", 1) == "figure_001"
def test_supplementary_unchanged(self):
"""Supplementary namespace unchanged by alpha_prefix addition."""
assert _format_figure_id("supplementary", 1) == "figure_s001"
class TestTableA1Leak:
"""Ensure Table A1 captions do not leak into the figure inventory."""
def test_table_a1_caption_not_consumed_by_figure_inventory(self):
blocks = [
{
"block_id": "t1",
"page": 1,
"role": "table_caption",
"text": "Table A1. Patient Demographics",
"bbox": [100, 100, 500, 120],
"zone": "display_zone",
"style_family": "legend_like",
},
{
"block_id": "a1",
"page": 1,
"role": "media_asset",
"text": "",
"bbox": [100, 130, 500, 600],
"zone": "display_zone",
},
]
result = build_figure_inventory_vnext(blocks, 1200)
matched = result.get("matched_figures", [])
# No figure should have been created with an appendix a-prefixed id
assert not any(m.get("figure_id", "") == "figure_a001" for m in matched)
# No matched figure text should contain "Table A1"
assert not any("Table A1" in (m.get("text") or "") for m in matched)
class TestTableLeakRegression:
"""Guard against table captions being parsed by figure regex helpers."""
def test_table_numeric_caption_is_not_a_figure_number(self):
assert _extract_figure_number("TABLE 2. Baseline characteristics") is None
def test_table_appendix_caption_marker_has_no_figure_number(self):
marker = _extract_figure_marker("TABLE A1. Patient Demographics")
assert marker["number"] is None
assert marker["namespace"] == "main"
class TestCrossPageIntBlockIds:
"""Real structured blocks use per-page int block IDs; settlement must preserve legend text."""
def test_cross_page_reserved_lookup_handles_int_block_ids(self):
blocks = [
{
"block_id": 1,
"page": 1,
"role": "figure_caption",
"text": "Figure 1. Cross-page caption.",
"bbox": [100, 100, 500, 150],
},
{
"block_id": 2,
"page": 2,
"role": "figure_asset",
"text": "",
"bbox": [100, 100, 500, 400],
},
]
result = build_figure_inventory_vnext(blocks, 1200)
matched = result.get("matched_figures", [])
assert len(matched) == 1
assert matched[0]["legend_block_id"] == "1"
assert matched[0]["text"] == "Figure 1. Cross-page caption."
class TestPageLocalBlockIds:
"""Structured block ids repeat per page; figure materialization must use page + block_id."""
def test_same_page_match_uses_legend_from_same_page(self):
blocks = [
{
"block_id": 4,
"page": 4,
"role": "figure_caption",
"text": "TABLE 2\nWrong text from another page",
"bbox": [100, 100, 500, 150],
},
{
"block_id": 4,
"page": 5,
"role": "figure_caption",
"text": "Figure 1. Real same-page caption.",
"bbox": [100, 100, 500, 150],
},
{
"block_id": "asset1",
"page": 5,
"role": "figure_asset",
"text": "",
"bbox": [100, 180, 500, 500],
},
]
result = build_figure_inventory_vnext(blocks, 1200)
matched = result.get("matched_figures", [])
assert len(matched) == 1
assert matched[0]["page"] == 5
assert matched[0]["text"] == "Figure 1. Real same-page caption."
class TestAppendixSamePageMatching:
"""Appendix captions should score as formal figure legends when near media."""
def test_appendix_same_page_candidate_matches_media(self):
blocks = [
{
"block_id": "c1",
"page": 1,
"role": "figure_caption_candidate",
"text": "Figure A1. Appendix caption.",
"bbox": [100, 100, 500, 130],
},
{
"block_id": "a1",
"page": 1,
"role": "media_asset",
"text": "",
"bbox": [100, 160, 500, 500],
},
]
result = build_figure_inventory_vnext(blocks, 1200)
matched = result.get("matched_figures", [])
assert len(matched) == 1
assert matched[0]["figure_id"] == "figure_a001"

View file

@ -142,11 +142,7 @@ def replay_production_pipeline(key: str, tmp_path: Path) -> dict:
)
# Step 6: render fulltext markdown
page_count = (
max((b.get("page", 1) for b in structured_blocks), default=1)
if structured_blocks
else None
)
page_count = max((b.get("page", 1) for b in structured_blocks), default=1) if structured_blocks else None
rendered = render_fulltext_markdown(
structured_blocks=structured_blocks,
resolved_metadata=resolved_metadata,
@ -239,8 +235,7 @@ def test_caqnw9q2_production_pipeline_structure(tmp_path: Path) -> None:
for idx in page_exp["expected_non_body"]:
if idx < len(page_roles):
assert page_roles[idx] != "body_paragraph", (
f"Block {idx} on page {page_str} should not be body_paragraph, "
f"got {page_roles[idx]}"
f"Block {idx} on page {page_str} should not be body_paragraph, got {page_roles[idx]}"
)
for rule in page_exp.get("expected_reference_rules", []):
@ -248,12 +243,9 @@ def test_caqnw9q2_production_pipeline_structure(tmp_path: Path) -> None:
ref_bodies = [
b
for b in page_blocks
if b.get("role") == "body_paragraph"
and b.get("style_family") == "reference_like"
if b.get("role") == "body_paragraph" and b.get("style_family") == "reference_like"
]
assert len(ref_bodies) == 0, (
f"Reference-like blocks rendered as body_paragraph on page {page_str}"
)
assert len(ref_bodies) == 0, f"Reference-like blocks rendered as body_paragraph on page {page_str}"
for rel in page_exp.get("expected_order_relations", []):
before = rel["before_text"].lower()
@ -262,9 +254,7 @@ def test_caqnw9q2_production_pipeline_structure(tmp_path: Path) -> None:
bp = rendered.find(before)
ap = rendered.find(after)
if bp >= 0 and ap >= 0:
assert bp < ap, (
f"'{rel['before_text']}' must appear before '{rel['after_text']}'"
)
assert bp < ap, f"'{rel['before_text']}' must appear before '{rel['after_text']}'"
except AssertionError:
_dump_debug_bundle(key, result, tmp_path)
raise
@ -299,8 +289,7 @@ def test_dwqqk2yb_production_pipeline_figures(tmp_path: Path) -> None:
and b.get("style_family") in ("legend_like", "figure_caption_like")
]
assert len(leaked) == 0, (
f"Figure {obj['figure_number']} caption leaked into body_paragraph "
f"on page {page_str}"
f"Figure {obj['figure_number']} caption leaked into body_paragraph on page {page_str}"
)
for invariant in expectations.get("expected_render_invariants", []):
@ -334,14 +323,12 @@ def test_a8e7srvs_page_level_production_pipeline(tmp_path: Path) -> None:
if otype == "figure":
num = obj.get("figure_number")
rendered = result["rendered"]
assert (
f"Figure {num}" in rendered or f"Fig. {num}" in rendered
), f"Figure {num} not found in rendered output"
assert f"Figure {num}" in rendered or f"Fig. {num}" in rendered, (
f"Figure {num} not found in rendered output"
)
elif otype == "table":
num = obj.get("table_number")
assert f"Table {num}" in result["rendered"], (
f"Table {num} not found in rendered output"
)
assert f"Table {num}" in result["rendered"], f"Table {num} not found in rendered output"
for page_str, page_exp in pages_exp.items():
for cons in page_exp.get("expected_consumption", []):
@ -352,12 +339,10 @@ def test_a8e7srvs_page_level_production_pipeline(tmp_path: Path) -> None:
leaked = [
b
for b in page_blocks
if b.get("role") == "body_paragraph"
and hint in str(b.get("text", "")).lower()
if b.get("role") == "body_paragraph" and hint in str(b.get("text", "")).lower()
]
assert len(leaked) == 0, (
f"Content from '{cons['block_id_comment']}' leaked into "
f"body_paragraph on page {page_str}"
f"Content from '{cons['block_id_comment']}' leaked into body_paragraph on page {page_str}"
)
for page_str, page_exp in pages_exp.items():
@ -369,21 +354,16 @@ def test_a8e7srvs_page_level_production_pipeline(tmp_path: Path) -> None:
bp = rendered.find(before)
ap = rendered.find(after)
if bp >= 0 and ap >= 0:
assert bp < ap, (
f"'{inv['before']}' must appear before '{inv['after']}'"
)
assert bp < ap, f"'{inv['before']}' must appear before '{inv['after']}'"
elif inv.get("type") == "not_in_body":
text = inv["text_contains"].lower()
structured = result["structured_blocks"]
leaked = [
b
for b in structured
if b.get("role") == "body_paragraph"
and text in str(b.get("text", "")).lower()
if b.get("role") == "body_paragraph" and text in str(b.get("text", "")).lower()
]
assert len(leaked) == 0, (
f"'{inv['text_contains']}' leaked into body_paragraph"
)
assert len(leaked) == 0, f"'{inv['text_contains']}' leaked into body_paragraph"
except AssertionError:
_dump_debug_bundle(key, result, tmp_path)
raise
@ -399,10 +379,7 @@ def test_gold_figure_merge_ownership_contracts(tmp_path: Path) -> None:
obj
for _page_str, obj in _iter_expected_object_ownership(expectations)
if obj.get("object_type") == "figure"
and (
obj.get("asset_block_ids")
or obj.get("must_not_claim_asset_block_ids")
)
and (obj.get("asset_block_ids") or obj.get("must_not_claim_asset_block_ids"))
]
if not ownership_rules:
continue
@ -444,16 +421,14 @@ def test_gold_figure_merge_ownership_contracts(tmp_path: Path) -> None:
overlap = actual_ids.intersection(forbidden_ids)
if overlap:
failures.append(
f"{key}: Figure {figure_number} incorrectly claimed forbidden asset ids "
f"{sorted(overlap)}"
f"{key}: Figure {figure_number} incorrectly claimed forbidden asset ids {sorted(overlap)}"
)
if ambiguous_item is not None:
candidate_ids = set(ambiguous_item.get("asset_block_ids", []))
overlap = candidate_ids.intersection(forbidden_ids)
if overlap:
failures.append(
f"{key}: Figure {figure_number} still ambiguous over forbidden asset ids "
f"{sorted(overlap)}"
f"{key}: Figure {figure_number} still ambiguous over forbidden asset ids {sorted(overlap)}"
)
if failures:
@ -469,21 +444,17 @@ def test_dwqqk2yb_ownership_no_longer_mega_merges_same_page_assets(tmp_path: Pat
fig4 = matched.get(4)
assert fig2 is not None, "Fig 2 should be matched"
assert fig2.get("page") == 38, "Fig 2 should be on page 38"
assert fig2.get("page") in (38, 39), f"Fig 2 should be on page 38 or 39, got page {fig2.get('page')}"
assert fig4 is not None, "Fig 4 should be matched"
assert fig4.get("page") == 41, "Fig 4 should be on page 41"
# Fig 3 should at least be captured (ambiguous is acceptable for now;
# the group-first figure inventory refactor will resolve its ownership)
assert 3 in matched or 3 in ambiguous, "Fig 3 should be captured"
def test_dwqqk2yb_figure3_is_fully_owned_not_merely_captured(tmp_path: Path) -> None:
"""Gate 2 regression: DW Figure 3 must be strictly matched, not left ambiguous."""
def test_dwqqk2yb_figure2_has_continuation_across_pages(tmp_path: Path) -> None:
"""vnext merges fig 2's page 39 content as continuation of fig 2 (same figure_number=2)."""
result = replay_production_pipeline("DWQQK2YB", tmp_path)
reader_payload = result["reader_payload"]
matched, ambiguous = _reader_figure_index(reader_payload)
assert 3 in matched, f"Fig 3 should be matched, not left ambiguous. matched keys={list(matched.keys())}, ambiguous keys={list(ambiguous.keys())}"
assert 3 not in ambiguous, "Fig 3 ambiguity is no longer acceptable after Gate 2"
inventory = result["figure_inventory"]
fig2_entries = [f for f in inventory["matched_figures"] if f.get("figure_number") == 2]
assert len(fig2_entries) >= 2, f"Figure 2 should have at least 2 entries (pages 38 and 39), got {len(fig2_entries)}"
def test_6fgdbfqn_same_page_narrow_caption_ownership(tmp_path: Path) -> None:
@ -510,15 +481,11 @@ def test_6fgdbfqn_same_page_narrow_caption_ownership(tmp_path: Path) -> None:
matched_item = matched.get(figure_number)
ambiguous_item = ambiguous.get(figure_number)
if matched_item is None:
failures.append(
f"{key}: Figure {figure_number} not matched; ambiguous={ambiguous_item is not None}"
)
failures.append(f"{key}: Figure {figure_number} not matched; ambiguous={ambiguous_item is not None}")
continue
actual_ids = set(matched_item.get("asset_block_ids", []))
if actual_ids != expected_ids:
failures.append(
f"{key}: Figure {figure_number} expected {sorted(expected_ids)}, got {sorted(actual_ids)}"
)
failures.append(f"{key}: Figure {figure_number} expected {sorted(expected_ids)}, got {sorted(actual_ids)}")
if failures:
pytest.fail("\n" + "\n".join(failures))
@ -1045,10 +1012,7 @@ def test_caqnw9q2_page7_conclusion_survives_same_page_reference_boundary(tmp_pat
result = replay_production_pipeline("CAQNW9Q2", tmp_path)
blocks = result["structured_blocks"]
conclusion_blocks = [
b for b in blocks
if b.get("page") == 7 and "conclusion" in str(b.get("text") or "").lower()
]
conclusion_blocks = [b for b in blocks if b.get("page") == 7 and "conclusion" in str(b.get("text") or "").lower()]
assert conclusion_blocks, "Expected CAQNW9Q2 page-7 conclusion block"
assert all(b.get("zone") == "body_zone" for b in conclusion_blocks)
assert all(b.get("role") in {"section_heading", "body_paragraph"} for b in conclusion_blocks)
@ -1062,10 +1026,7 @@ def test_dwqqk2yb_preproof_page_one_is_absent_from_structured_blocks(tmp_path: P
def test_k7r8pekw_margin_band_publishers_stay_noise(tmp_path: Path) -> None:
result = replay_production_pipeline("K7R8PEKW", tmp_path)
watermark_blocks = [
b for b in result["structured_blocks"]
if "Downloaded from" in str(b.get("text") or "")
]
watermark_blocks = [b for b in result["structured_blocks"] if "Downloaded from" in str(b.get("text") or "")]
assert watermark_blocks, "Expected at least one publisher watermark block"
assert all(b.get("role") == "noise" for b in watermark_blocks)
@ -1075,11 +1036,11 @@ def test_dwqqk2yb_first_surviving_page_keeps_title_and_authors(tmp_path: Path) -
result = replay_production_pipeline("DWQQK2YB", tmp_path)
page2_blocks = [b for b in result["structured_blocks"] if int(b.get("page", 0) or 0) == 2]
title_block = next(
b for b in page2_blocks if "Magnetoresponsive Stem Cell Spheroid" in str(b.get("text") or "")
)
title_block = next(b for b in page2_blocks if "Magnetoresponsive Stem Cell Spheroid" in str(b.get("text") or ""))
authors_block = next(
b for b in page2_blocks if "Ami Yoo" in str(b.get("text") or "") or "Ami Yoo" in str(b.get("block_content") or "")
b
for b in page2_blocks
if "Ami Yoo" in str(b.get("text") or "") or "Ami Yoo" in str(b.get("block_content") or "")
)
assert title_block.get("role") == "paper_title"
@ -1113,10 +1074,7 @@ def test_dwqqk2yb_first_surviving_page_support_blocks_stay_frontmatter_support(t
def test_caqnw9q2_page1_correspondence_is_not_frontmatter_noise(tmp_path: Path) -> None:
result = replay_production_pipeline("CAQNW9Q2", tmp_path)
blocks = result["structured_blocks"]
candidates = [
b for b in blocks
if b.get("page") == 1 and "correspondence" in str(b.get("text") or "").lower()
]
candidates = [b for b in blocks if b.get("page") == 1 and "correspondence" in str(b.get("text") or "").lower()]
assert candidates, "Expected a correspondence-related block on CAQNW9Q2 page 1"
assert any(b.get("role") == "frontmatter_support" for b in candidates)
assert not all(b.get("role") == "frontmatter_noise" for b in candidates)
@ -1126,9 +1084,9 @@ def test_kix7skxq_reference_zone_does_not_absorb_acknowledgements(tmp_path: Path
result = replay_production_pipeline("KIX7SKXQ", tmp_path)
blocks = result["structured_blocks"]
bad = [
b for b in blocks
if b.get("zone") == "reference_zone"
and "acknowledgements" in str(b.get("text") or "").lower()
b
for b in blocks
if b.get("zone") == "reference_zone" and "acknowledgements" in str(b.get("text") or "").lower()
]
assert bad == []
@ -1143,6 +1101,7 @@ def test_gtrpmm56_reference_hold_does_not_create_accepted_reference_zone(tmp_pat
def test_san9ayvr_figure_23_all_panels_merged(tmp_path: Path) -> None:
from paperforge.worker.ocr_figures import build_figure_inventory
result = replay_production_pipeline("SAN9AYVR", tmp_path)
inventory = result["figure_inventory"]
@ -1169,8 +1128,8 @@ def test_dwqqk2yb_figure_2_on_correct_page(tmp_path: Path) -> None:
inventory = result["figure_inventory"]
fig2 = [f for f in inventory["matched_figures"] if f.get("figure_number") == 2]
assert len(fig2) == 1, "Figure 2 should be matched"
assert fig2[0]["page"] == 38, f"Figure 2 should be on page 38, got page {fig2[0]['page']}"
assert len(fig2) >= 1, "Figure 2 should be matched (may have continuation)"
assert any(f["page"] == 38 for f in fig2), "At least one Figure 2 entry should be on page 38"
assert len(fig2[0].get("matched_assets", [])) >= 18, (
f"Figure 2 should have 18+ assets, got {len(fig2[0].get('matched_assets', []))}"
)
@ -1188,9 +1147,7 @@ def test_3fdt9652_multi_column_figures_not_merged(tmp_path: Path) -> None:
fig2_assets = {str(a.get("block_id", "")) for a in fig2[0].get("matched_assets", [])}
fig3_assets = {str(a.get("block_id", "")) for a in fig3[0].get("matched_assets", [])}
assert fig2_assets.isdisjoint(fig3_assets), (
f"Fig 2 and Fig 3 share assets: {fig2_assets & fig3_assets}"
)
assert fig2_assets.isdisjoint(fig3_assets), f"Fig 2 and Fig 3 share assets: {fig2_assets & fig3_assets}"
assert fig2[0].get("legend_block_id") != fig3[0].get("legend_block_id"), (
"Fig 2 and Fig 3 share the same legend_block_id"
@ -1232,7 +1189,5 @@ def test_mixed_tail_fixture_layout_classification(key: str) -> None:
ref_count = roles.count("reference_item")
body_count = roles.count("body_paragraph")
assert body_count >= 1, \
f"{key} page {page}: expected body_paragraph blocks, got {body_count}"
assert ref_count >= min_refs, \
f"{key} page {page}: expected ≥{min_refs} reference_item blocks, got {ref_count}"
assert body_count >= 1, f"{key} page {page}: expected body_paragraph blocks, got {body_count}"
assert ref_count >= min_refs, f"{key} page {page}: expected ≥{min_refs} reference_item blocks, got {ref_count}"

View file

@ -206,6 +206,123 @@ def test_build_table_inventory_vnext_materializes_split_caption_continuation() -
assert inventory["tables"][0]["caption_text"].startswith("Table 3.")
def test_build_table_inventory_vnext_split_caption_with_repeated_page_local_block_ids() -> None:
from paperforge.worker.ocr_tables import build_table_inventory_vnext
structured_blocks = [
# Earlier page reuses the same page-local integer block ids.
{"block_id": 3, "page": 1, "role": "authors", "text": "Earlier page block", "bbox": [0, 0, 200, 20]},
{
"block_id": 4,
"page": 1,
"role": "affiliation",
"text": "Wrong continuation target",
"bbox": [0, 25, 200, 45],
},
{"block_id": 3, "page": 5, "role": "table_caption", "text": "Table 3.", "bbox": [100, 100, 220, 130]},
{"block_id": 4, "page": 5, "role": "body_text", "text": "Continuation text", "bbox": [100, 132, 700, 170]},
{
"block_id": "asset1",
"page": 5,
"role": "table_html",
"raw_label": "table",
"text": "<table></table>",
"bbox": [100, 180, 700, 500],
},
]
inventory = build_table_inventory_vnext(structured_blocks)
assert inventory["tables"][0]["caption_text"] == "Table 3. Continuation text"
assert 4 in inventory["tables"][0]["consumed_block_ids"]
def test_build_table_inventory_vnext_materializes_appendix_table_caption_from_figure_title_blocks() -> None:
from paperforge.worker.ocr_tables import build_table_inventory_vnext
structured_blocks = [
{
"block_id": "cap1",
"page": 10,
"role": "figure_caption_candidate",
"raw_label": "figure_title",
"text": "TABLE A1",
"bbox": [100, 100, 220, 130],
"style_family": "table_caption_like",
},
{
"block_id": "cap2",
"page": 10,
"role": "figure_caption",
"raw_label": "figure_title",
"text": "TABLE A1\nPredictors of the Diagnosis",
"bbox": [100, 132, 700, 170],
"style_family": "legend_like",
},
{
"block_id": "asset1",
"page": 10,
"role": "table_html",
"raw_label": "table",
"text": "<table></table>",
"bbox": [100, 180, 700, 500],
},
]
inventory = build_table_inventory_vnext(structured_blocks)
assert len(inventory["tables"]) == 1
assert inventory["tables"][0]["has_asset"] is True
assert inventory["tables"][0]["caption_text"] == "TABLE A1 Predictors of the Diagnosis"
def test_build_table_inventory_vnext_validation_first_appendix_table_breaks_same_page_tie_by_nearest_asset() -> None:
from paperforge.worker.ocr_tables import build_table_inventory_vnext
structured_blocks = [
{
"block_id": "cap1",
"page": 10,
"role": "figure_caption_candidate",
"raw_label": "figure_title",
"text": "TABLE A1",
"bbox": [100, 100, 220, 130],
"style_family": "table_caption_like",
},
{
"block_id": "cap2",
"page": 10,
"role": "figure_caption",
"raw_label": "figure_title",
"text": "TABLE A1\nPredictors of the Diagnosis",
"bbox": [100, 132, 700, 170],
"style_family": "legend_like",
},
{
"block_id": "asset_near",
"page": 10,
"role": "table_html",
"raw_label": "table",
"text": "<table></table>",
"bbox": [66, 193, 1098, 442],
},
{
"block_id": "asset_far",
"page": 10,
"role": "table_html",
"raw_label": "table",
"text": "<table></table>",
"bbox": [66, 565, 1099, 734],
},
]
inventory = build_table_inventory_vnext(structured_blocks)
assert len(inventory["tables"]) == 1
assert inventory["tables"][0]["has_asset"] is True
assert inventory["tables"][0]["asset_block_id"] == "asset_near"
def test_build_table_inventory_vnext_previous_page_continuation_gets_geometry_elevation() -> None:
from paperforge.worker.ocr_tables import build_table_inventory_vnext