diff --git a/README.md b/README.md index f4e49f3..85ab558 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,59 @@ Convert your own from a HF checkpoint with [`scripts/convert.py`](scripts/convert.py) — self-contained, no llama.cpp dependency (see [Convert](#convert)). +## Bench + +A "redaction race" against stock HF Transformers on the same hardware: + +**CPU — 8k-token document, real time.** Both finish; ours is 7.7× faster. + +![CPU redaction race: privacy-filter.cpp vs HF Transformers on an 8k-token document](demo/out/pii_duel_cpu.gif) + +**GPU — 132k-token document (4× slow-mo).** Ours runs flat to 131k tokens; HF +hits the 16 GiB memory wall and OOMs at ~16k. + +![GPU redaction race: privacy-filter.cpp runs to 131k tokens while HF OOMs](demo/out/pii_duel_gpu.gif) + +Full-quality MP4s: [CPU](demo/out/pii_duel_cpu_final.mp4) · [GPU](demo/out/pii_duel_gpu_final.mp4). + +Single forward-pass latency and throughput vs stock HF Transformers (transformers +5.9, eager), Ryzen 9 7900 (12 threads) + RTX 5070 Ti, f16/fp16, matched token +counts ([scripts/bench_torch.py](scripts/bench_torch.py)). `tokens` is the input +sequence length classified in one forward pass (the whole document at once, not +generation); latency is `tokens ÷ tok/s`. + +GPU — ours (Vulkan) vs HF (CUDA): + +| tokens | HF (tok/s) | HF (ms) | ours (tok/s) | ours (ms) | speedup | +|-------:|-----------:|--------:|-------------:|----------:|--------:| +| 512 | 5 526 | 93 | 100 503 | 5 | 18× | +| 2 048 | 16 427 | 125 | 145 481 | 14 | 8.9× | +| 8 192 | 14 154 | 579 | 105 034 | 78 | 7.4× | +| 32 768 | OOM | OOM | 83 519 | 392 | — | +| 131072 | OOM | OOM | 81 105 | 1 616 | — | + +CPU — ours vs HF (fp32): + +| tokens | HF (tok/s) | HF (s) | ours (tok/s) | ours (s) | speedup | +|-------:|-----------:|-------:|-------------:|---------:|--------:| +| 512 | 2 171 | 0.24 | 3 564 | 0.14 | 1.6× | +| 2 048 | 978 | 2.09 | 3 490 | 0.59 | 3.6× | +| 8 192 | 304 | 26.95 | 2 332 | 3.51 | 7.7× | + +The speedup widens with length because HF's full self-attention is O(n²) while +ours is banded/near-linear, so our tok/s stays roughly flat as HF's collapses. +Memory is flat ~2.8 GiB VRAM on a 16 +GiB GPU. `release-portable` runtime-dispatches the best ggml-cpu ISA (AVX-512 +without `-march=native`); flash + banded attention default on. See +[docs/cpu-perf.md](docs/cpu-perf.md). + +Reproduce the numbers: + +```sh +cmake --preset release-portable && cmake --build --preset release-portable -j +build/release-portable/bin/pf-bench model.gguf [cpu|vulkan] [iters] [lengths] +``` + ## Build ```sh @@ -126,37 +179,3 @@ cmake --preset fuzz && cmake --build --preset fuzz -j PF_GGUF=model.gguf ./build/fuzz/fuzz_tokenizer corpus_tok/ ./build/fuzz/fuzz_gguf corpus_gguf/ ``` - -## Bench - -```sh -cmake --preset release-portable && cmake --build --preset release-portable -j -build/release-portable/bin/pf-bench model.gguf [cpu|vulkan] [iters] [lengths] -``` - -Forward tok/s vs stock HF Transformers (transformers 5.9, eager), Ryzen 9 7900 (12 -threads) + RTX 5070 Ti, f16/fp16, matched token counts -([scripts/bench_torch.py](scripts/bench_torch.py)): - -GPU — ours (Vulkan) vs HF (CUDA): - -| tokens | HF | ours | × | -|-------:|--------:|--------:|-----:| -| 512 | 5 526 | 100 503 | 18× | -| 2 048 | 16 427 | 145 481 | 8.9× | -| 8 192 | 14 154 | 105 034 | 7.4× | -| 32 768 | OOM | 83 519 | — | -| 131072 | OOM | 81 105 | — | - -CPU — ours vs HF (fp32): - -| tokens | HF | ours | × | -|-------:|------:|------:|-----:| -| 512 | 2 171 | 3 564 | 1.6× | -| 2 048 | 978 | 3 490 | 3.6× | -| 8 192 | 304 | 2 332 | 7.7× | - -Memory is flat ~2.8 GiB VRAM / ~3 GiB RAM to 131k tokens; HF OOMs past ~16k on a 16 -GiB GPU. `release-portable` runtime-dispatches the best ggml-cpu ISA (AVX-512 -without `-march=native`); flash + banded attention default on. See -[docs/cpu-perf.md](docs/cpu-perf.md). diff --git a/demo/.gitignore b/demo/.gitignore new file mode 100644 index 0000000..8a60053 --- /dev/null +++ b/demo/.gitignore @@ -0,0 +1,4 @@ +__pycache__/ +*.pyc +out/*.tmp +out/.trim* diff --git a/demo/document.txt b/demo/document.txt new file mode 100644 index 0000000..6815481 --- /dev/null +++ b/demo/document.txt @@ -0,0 +1 @@ +Thanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline. diff --git a/demo/gen_corpus.py b/demo/gen_corpus.py new file mode 100644 index 0000000..56d83c1 --- /dev/null +++ b/demo/gen_corpus.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +"""Generate the scrolling-demo corpora for pii_duel.py. + +The document is a readable, PII-sparse prose paragraph (demo/document.txt) tiled +to the target token count -- the same tile-to-length method the benchmark uses +(scripts/bench_torch.py) -- so "tokens" on screen means the same thing as in the +README. One tile = 160 tokens (pf-cli --tok-batch), giving an exact char<->token +mapping. Entity spans are the REAL pf-cli --classify output for the tile, +replicated per tile (each tile is identical, so the model finds the same spans). + +Writes demo/traces//{content.json,engines.json} for scene in cpu,gpu. +""" +import json +from pathlib import Path + +HERE = Path(__file__).resolve().parent +SEED = open(HERE / "document.txt").read().rstrip("\n") + "\n\n" # 731 chars +TOKENS_PER_TILE = 160 # pf-cli --tok-batch + +# Real spans from: pf-cli --classify 0.5 <<< "" (offsets into SEED). +SEED_ENTITIES = [ + {"type": "person", "start": 236, "end": 244}, # John Doe + {"type": "phone", "start": 419, "end": 430}, # +1 555-0112 + {"type": "date", "start": 531, "end": 541}, # 2026-05-12 + {"type": "email", "start": 624, "end": 653}, # jane.roe@northside-clinic.org +] + +L = len(SEED) + + +def build(target_tokens): + tiles = round(target_tokens / TOKENS_PER_TILE) + doc = SEED * tiles + ents = [] + for t in range(tiles): + off = t * L + for e in SEED_ENTITIES: + ents.append({"type": e["type"], "start": e["start"] + off, "end": e["end"] + off}) + return doc, ents, tiles * TOKENS_PER_TILE + + +def write_scene(scene, target_tokens, note, engines): + doc, ents, n_tokens = build(target_tokens) + d = Path(__file__).resolve().parent / "traces" / scene + d.mkdir(parents=True, exist_ok=True) + content = {"document": doc, "n_tokens": n_tokens, "note": note, "entities": ents} + json.dump(content, open(d / "content.json", "w"), ensure_ascii=False) + json.dump(engines, open(d / "engines.json", "w"), indent=2, ensure_ascii=False) + chars = len(doc) + print(f"{scene}: {len(ents):,} entities, {n_tokens:,} tokens, {chars:,} chars " + f"({chars/n_tokens:.2f} chars/tok)") + for e in engines: + if e.get("oom_at_tokens"): + print(f" {e['label']:<20} OOM at {e['oom_at_tokens']:,} tok " + f"(~{e['oom_at_tokens']/e['tps']:.2f}s) @ {e['tps']:,} tok/s") + else: + print(f" {e['label']:<20} {n_tokens/e['tps']:.2f}s @ {e['tps']:,} tok/s") + + +# CPU: 8k doc, both finish (README CPU 8 192 row: ours 2 332, HF 304 tok/s). +write_scene("cpu", 8192, "8k-token document · CPU (Ryzen 9 7900)", [ + {"key": "ours", "label": "privacy-filter.cpp", "device": "CPU", "tps": 2332, "hero": True}, + {"key": "hf", "label": "HF Transformers", "device": "CPU", "tps": 304, "hero": False}, +]) + +# GPU: 132k doc. Ours (Vulkan) runs the whole thing (README 131 072 row: 81 105 +# tok/s). HF (CUDA) OOMs past ~16k on a 16 GiB GPU -> dies at 16 384 tokens; use +# its measured 8k throughput (14 154 tok/s) as the rate up to the wall. +write_scene("gpu", 131072, "132k-token document · GPU (RTX 5070 Ti, 16 GiB)", [ + {"key": "ours", "label": "privacy-filter.cpp", "device": "GPU · Vulkan", "tps": 81105, "hero": True}, + {"key": "hf", "label": "HF Transformers", "device": "GPU · CUDA", "tps": 14154, + "hero": False, "oom_at_tokens": 16384}, +]) diff --git a/demo/make.sh b/demo/make.sh new file mode 100755 index 0000000..b9e9a02 --- /dev/null +++ b/demo/make.sh @@ -0,0 +1,53 @@ +#!/usr/bin/env bash +# Build a privacy-filter "redaction race" demo video end to end: render the +# pii_duel scrolling TUI for a scene, record it with recorder-for-agents, trim +# the dead lead-in, append a branding outro. +# +# SCENE=cpu ./make.sh # 8k-token doc, CPU, real time, both finish +# SCENE=gpu DILATE=4 ./make.sh # 132k-token doc, GPU, HF OOMs +# +# env: RECORDER, SCENE(cpu|gpu), DILATE, WIDTH/HEIGHT/FPS/FONTSIZE, LINK +set -euo pipefail +HERE=$(cd "$(dirname "$0")" && pwd) +RECORDER=${RECORDER:-/home/rich/python/recorder-for-agents} +SCENE=${SCENE:-cpu} +OUT=${1:-pii_duel_${SCENE}.mp4} +DILATE=${DILATE:-1} +W=${WIDTH:-1280}; H=${HEIGHT:-720}; FS=${FONTSIZE:-16}; FPS=${FPS:-30} +LINK=${LINK:-github.com/richiejp/privacy-filter.cpp} +SDIR="$HERE/traces/$SCENE" + +[ -d "$SDIR" ] || { echo "no scene at $SDIR (run gen_corpus.py)"; exit 1; } +[ -x "$RECORDER/record.sh" ] || { echo "recorder not found at $RECORDER"; exit 1; } + +# capture length: start delay + slowest engine (scaled) + settle + slice of card +DUR=$(python3 - "$SDIR" "$DILATE" <<'PY' +import json, sys, math +from pathlib import Path +d = Path(sys.argv[1]); dil = float(sys.argv[2]) +content = json.load(open(d / "content.json")); eng = json.load(open(d / "engines.json")) +n = content["n_tokens"] +slow = max((e.get("oom_at_tokens") or n) / e["tps"] for e in eng) +print(int(math.ceil(1.0 + slow * dil + 1.4 + 0.7 + 2.0))) +PY +) +echo "[make] scene=$SCENE ${W}x${H}@${FPS} fs=${FS} dilate=${DILATE} duration=${DUR}s -> out/$OUT" + +WORK="$HERE" BG="#0d1117" FG="#d7dde5" FONTSIZE="$FS" DURATION="$DUR" \ + WIDTH="$W" HEIGHT="$H" FPS="$FPS" START_DELAY=1.0 END_HOLD=0.2 \ + "$RECORDER/record.sh" "python3 pii_duel.py --scene traces/$SCENE --dilate $DILATE --link '$LINK'" "$OUT" + +RAW="$HERE/out/$OUT"; NOEXT="${OUT%.mp4}" +if [ -f "$RECORDER/examples/duel/trim_lead.sh" ]; then + bash "$RECORDER/examples/duel/trim_lead.sh" "$RAW" "$HERE/out/.trim_$SCENE.mp4" \ + && mv "$HERE/out/.trim_$SCENE.mp4" "$RAW" +fi +if [ -f "$RECORDER/examples/duel/outro.sh" ]; then + OW="$W" OH="$H" TITLE="privacy-filter.cpp" \ + LINK1="github.com/richiejp/privacy-filter.cpp" \ + LINK2="real NER spans · stock ggml · see README Bench" \ + bash "$RECORDER/examples/duel/outro.sh" "$RAW" "$HERE/out/${NOEXT}_final.mp4" + echo "-> $HERE/out/${NOEXT}_final.mp4" +else + echo "-> $RAW" +fi diff --git a/demo/out/pii_duel_cpu.gif b/demo/out/pii_duel_cpu.gif new file mode 100644 index 0000000..c65eb6a Binary files /dev/null and b/demo/out/pii_duel_cpu.gif differ diff --git a/demo/out/pii_duel_cpu.mp4 b/demo/out/pii_duel_cpu.mp4 new file mode 100644 index 0000000..ffc2a13 Binary files /dev/null and b/demo/out/pii_duel_cpu.mp4 differ diff --git a/demo/out/pii_duel_cpu_final.mp4 b/demo/out/pii_duel_cpu_final.mp4 new file mode 100644 index 0000000..1eb373b Binary files /dev/null and b/demo/out/pii_duel_cpu_final.mp4 differ diff --git a/demo/out/pii_duel_gpu.gif b/demo/out/pii_duel_gpu.gif new file mode 100644 index 0000000..0e1c590 Binary files /dev/null and b/demo/out/pii_duel_gpu.gif differ diff --git a/demo/out/pii_duel_gpu.mp4 b/demo/out/pii_duel_gpu.mp4 new file mode 100644 index 0000000..d95aa2c Binary files /dev/null and b/demo/out/pii_duel_gpu.mp4 differ diff --git a/demo/out/pii_duel_gpu_final.mp4 b/demo/out/pii_duel_gpu_final.mp4 new file mode 100644 index 0000000..9d04f4b Binary files /dev/null and b/demo/out/pii_duel_gpu_final.mp4 differ diff --git a/demo/pii_duel.py b/demo/pii_duel.py new file mode 100644 index 0000000..5ffaf56 --- /dev/null +++ b/demo/pii_duel.py @@ -0,0 +1,327 @@ +#!/usr/bin/env python3 +""" +pii_duel.py — a two-pane "redaction race" between two privacy-filter engines, +rendered with rich and captured by recorder-for-agents into an MP4. + +Both panes stream the SAME (large) document. Each engine consumes it at its REAL +measured throughput (tok/s from the README bench): the view scrolls a page at a +time as tokens are processed, PII spans snap to ████ as they're passed, and a +live counter tracks tokens + entities found. The faster engine clears the whole +document; a slower/heavier one can hit a memory wall — its bar turns red and +prints OOM at the token count where it dies. + +Data (per scene dir, built by gen_corpus.py): + /content.json -> {"document", "n_tokens", "note", "entities":[{type,start,end}]} + /engines.json -> [{"key","label","device","tps","hero",["oom_at_tokens"]}] + + python3 pii_duel.py --scene traces/gpu --dilate 4 + python3 pii_duel.py --scene traces/cpu --dilate 1 +""" +import argparse, bisect, json, time +from pathlib import Path + +from rich import box +from rich.console import Group, Console +from rich.live import Live +from rich.panel import Panel +from rich.table import Table +from rich.text import Text +from rich.align import Align + +# ---- palette --------------------------------------------------------------- +INK = "#d7dde5" +DIM = "#6e7681" +FAINT = "#3b424c" +RULE = "#222b34" +HERO_FILL, HERO_EMPTY, HERO_IDLE = "#3ec8e0", "#1d6c7b", "#3ec8e0" # teal +RIVAL_FILL, RIVAL_EMPTY, RIVAL_IDLE = "#94a3b2", "#39424d", "#46515e" # slate +RED, RED_EMPTY = "#f0565b", "#5c1f22" +GREEN = "#46c266" +GOLD = "#e3b341" + +TYPES = { # type -> (counter label, redaction-block colour) + "person": ("PERSON", "#e0709a"), + "email": ("EMAIL", "#7aa2f7"), + "phone": ("PHONE", "#e0a458"), + "date": ("DATE", "#9d7cd8"), + "account": ("ACCOUNT", "#56b6c2"), + "address": ("ADDRESS", "#98c379"), +} + + +def accent(is_hero): + return (HERO_FILL, HERO_EMPTY, HERO_IDLE) if is_hero else (RIVAL_FILL, RIVAL_EMPTY, RIVAL_IDLE) + + +def wrap_ranges(s, width): + """Greedy word-wrap over the source string -> (start, end) char ranges.""" + n = len(s); width = max(8, width) + out, i = [], 0 + while i < n: + nl = s.find("\n", i, i + width) # honour hard newlines in the doc + if nl != -1: + out.append((i, nl)); i = nl + 1; continue + if i + width >= n: + out.append((i, n)); break + sp = s.rfind(" ", i, i + width) + if sp > i: + out.append((i, sp)); i = sp + 1 + else: + out.append((i, i + width)); i += width + return out or [(0, 0)] + + +def prep(content, inner_w): + """One-time layout: wrap the whole document, index entities for fast lookup.""" + doc = content["document"] + ents = sorted(content["entities"], key=lambda e: e["start"]) + ranges = wrap_ranges(doc, inner_w) + line_starts = [s for s, _ in ranges] + starts = [e["start"] for e in ents] + by_type = {} + for e in ents: + by_type.setdefault(e["type"], []).append(e["start"]) + types_seen = list(dict.fromkeys(e["type"] for e in ents)) # document order + return {"doc": doc, "ents": ents, "starts": starts, "ranges": ranges, + "line_starts": line_starts, "by_type": by_type, "types": types_seen, + "n_tokens": content["n_tokens"]} + + +def _emit_norm(t, doc, a, b, playhead, cursor): + """Append a non-entity run [a,b): processed (INK) up to the playhead, the + block cursor, then pending (FAINT). Batched per run so it stays fast even + with a tiny font and hundreds of visible lines.""" + if a >= b: + return + if playhead <= a: + t.append(doc[a:b], style=FAINT) + elif playhead >= b: + t.append(doc[a:b], style=INK) + else: + t.append(doc[a:playhead], style=INK) + t.append(doc[playhead], style=cursor) + t.append(doc[playhead + 1:b], style=FAINT) + + +def render_page(P, page_lines, playhead, fill): + """Render one page of wrapped lines for the given playhead char index.""" + doc, ents, starts, n = P["doc"], P["ents"], P["starts"], len(P["ents"]) + cursor = f"{fill} reverse" + lines = [] + for s, e in page_lines: + t = Text() + k = bisect.bisect_left(starts, s) + if k > 0 and ents[k - 1]["end"] > s: # span straddling the line start + k -= 1 + cur = s + while k < n and ents[k]["start"] < e: + en = ents[k]; k += 1 + a, b = max(s, en["start"]), min(e, en["end"]) + if b <= cur: + continue + _emit_norm(t, doc, cur, a, playhead, cursor) + if playhead >= en["start"]: # discovered -> redact + t.append("█" * (b - a), style=TYPES.get(en["type"], ("", DIM))[1]) + else: + t.append(doc[a:b], style=FAINT) # pending PII: hidden in prose + cur = b + _emit_norm(t, doc, cur, e, playhead, cursor) + lines.append(t) + return lines + + +def bar(frac, width, fill, empty, label): + f = max(0, min(width, round(width * frac))) + t = Text() + t.append("━" * f, style=fill) + t.append("━" * (width - f), style=empty) + t.append(f" {label}", style=fill) + return t + + +def counter(P, playhead, tokens_done, dead): + """Bottom line: tokens processed + per-type entity tally (found so far).""" + t = Text() + t.append(f"{tokens_done:,}", style=(RED if dead else INK)) + t.append(f" / {P['n_tokens']:,} tok ", style=DIM) + for k, typ in enumerate(P["types"]): + found = bisect.bisect_left(P["by_type"][typ], playhead) + label, colour = TYPES.get(typ, (typ.upper(), DIM)) + on = found > 0 + if k: + t.append(" ") + t.append(f"{label} ", style=(f"bold {colour}" if on else FAINT)) + t.append(f"{found:,}", style=(INK if on else FAINT)) + return t + + +def pane(P, eng, real_elapsed, height, inner_w, winner): + n_tok = P["n_tokens"] + is_hero = eng["hero"] + fill, empty, idle = accent(is_hero) + body_lines = max(4, height - 8) + + oom_at = eng.get("oom_at_tokens") + proc = eng["proc_s"] + raw = 0.0 if proc <= 0 else min(1.0, real_elapsed / proc) + if oom_at is not None: # progress capped at the memory wall + frac = raw * (oom_at / n_tok) + dead = real_elapsed >= proc + done = False + else: + frac = raw + dead = False + done = real_elapsed >= proc + playhead = round(frac * len(P["doc"])) + tokens_done = min(round(frac * n_tok), oom_at if oom_at else n_tok) + + # scroll a page at a time: the page holding the processing frontier + cur_line = max(0, bisect.bisect_right(P["line_starts"], playhead) - 1) + page0 = (cur_line // body_lines) * body_lines + page_lines = P["ranges"][page0:page0 + body_lines] + lines = render_page(P, page_lines, playhead, fill) + body_txt = Text("\n").join(lines) + pad = body_lines - len(lines) + if pad > 0: + body_txt.append("\n" * pad) + + title = Text() + title.append(f" {eng['label']} ", style=f"bold {fill}") + title.append(f"{eng['device']} ", style=DIM) + + status = Text() + if dead: + status.append("✗ OOM ", style=f"bold {RED}") + status.append(f"killed at {oom_at:,} tok", style=f"bold {INK}") + status.append(f" {eng['tps']:,} tok/s", style=DIM) + elif done: + status.append("✓ ", style=f"bold {GREEN}") + status.append(f"{n_tok:,} tok", style=f"bold {INK}") + status.append(f" {proc * 1000:,.0f} ms {eng['tps']:,} tok/s", style=DIM) + if winner: + status.append(" ★", style=f"bold {GOLD}") + else: + status.append("▸ ", style=fill) + status.append(f"{real_elapsed * 1000:,.0f} ms", style=f"bold {INK}") + status.append(f" {eng['tps']:,} tok/s", style=DIM) + + if dead: + bfill, bempty, blabel, border = RED, RED_EMPTY, "OOM", RED + elif done: + bfill, bempty, blabel, border = fill, empty, "100%", fill + if winner: + blabel = "100% ★" + else: + bfill, bempty, blabel, border = fill, empty, f"{int(round(frac * 100)):>3d}%", idle + + body = Group(body_txt, Text(""), counter(P, playhead, tokens_done, dead), + bar(frac, max(10, inner_w - 8), bfill, bempty, blabel), status) + return Panel(body, title=title, title_align="left", border_style=border, + box=box.ROUNDED, padding=(1, 2), height=height) + + +def header(engines, note, dilate, cols): + a, b = engines + left = Text() + left.append(a["label"], style=f"bold {HERO_FILL}") + left.append(" vs ", style=DIM) + left.append(b["label"], style=f"bold {RIVAL_FILL}") + right = Text(justify="right") + if note: + right.append(note, style=INK) + if dilate > 1.01: + right.append(f" · slowed {dilate:g}×", style=FAINT) + g = Table.grid(expand=True) + g.add_column(justify="left"); g.add_column(justify="right") + g.add_row(left, right) + return Group(g, Text("─" * cols, style=RULE), Text("")) + + +def view(P, engines, note, real_elapsed, dilate, cols, rows): + avail = rows - 3 + finishers = [e for e in engines if e.get("oom_at_tokens") is None] + fastest = min(finishers, key=lambda e: e["proc_s"]) if finishers else None + pane_h = max(12, avail) # fill the screen (more text with a small font) + top_pad = max(0, (avail - pane_h) // 2) + inner_w = P["inner_w"] + g = Table.grid(expand=True, padding=(0, 1)) + g.add_column(ratio=1); g.add_column(ratio=1) + g.add_row(*[pane(P, e, real_elapsed, pane_h, inner_w, e is fastest) for e in engines]) + return Group(header(engines, note, dilate, cols), Text("\n" * top_pad), g) + + +def end_card(P, engines, note, link): + finishers = [e for e in engines if e.get("oom_at_tokens") is None] + fastest = min(finishers, key=lambda e: e["proc_s"]) + other = [e for e in engines if e is not fastest][0] + n_tok = P["n_tokens"] + g = Text() + if note: + g.append(note.upper() + "\n\n", style=f"bold {DIM}") + wbar, top = 34, max(e["tps"] for e in engines) + for e in engines: + oom = e.get("oom_at_tokens") + fill = RED if oom else accent(e["hero"])[0] + g.append(f"{e['label']:<20}", style=f"bold {fill}") + f = max(1, round(wbar * e["tps"] / top)) + g.append("━" * f, style=fill); g.append(" " * (wbar - f)) + if oom: + g.append(f" ✗ OOM at {oom:,} tok\n", style=f"bold {RED}") + else: + g.append(f" {n_tok / e['tps'] * 1000:,.0f} ms {e['tps']:,} tok/s\n", style=DIM) + g.append("\n") + if other.get("oom_at_tokens"): + g.append(f"{n_tok:,} tokens, flat memory", style=f"bold {HERO_FILL}") + g.append(" — the other ran out of memory", style=f"bold {INK}") + else: + g.append(f"{fastest['tps'] / other['tps']:.1f}× faster", style=f"bold {HERO_FILL}") + g.append(f" on the same {fastest['device'].split(' ')[0]}", style=f"bold {INK}") + if link: + g.append(f"\n\n{link}", style=DIM) + return Panel(Align.center(g, vertical="middle"), border_style=HERO_EMPTY, + box=box.ROUNDED, padding=(2, 6)) + + +def main(): + ap = argparse.ArgumentParser() + here = Path(__file__).resolve().parent + ap.add_argument("--scene", default=str(here / "traces/cpu"), help="dir with content.json + engines.json") + ap.add_argument("--link", default="github.com/richiejp/privacy-filter.cpp") + ap.add_argument("--fps", type=int, default=30) + ap.add_argument("--dilate", type=float, default=1.0, help="time scale (1 = real time)") + ap.add_argument("--hold", type=float, default=1.4) + ap.add_argument("--card", type=float, default=3.5) + a = ap.parse_args() + + scene = Path(a.scene) + content = json.load(open(scene / "content.json")) + engines = json.load(open(scene / "engines.json")) + if len(engines) != 2: + raise SystemExit(f"need exactly 2 engines, got {len(engines)}") + for e in engines: + oom = e.get("oom_at_tokens") + e["proc_s"] = (oom if oom else content["n_tokens"]) / e["tps"] + + console = Console() + cols, rows = console.size + P = prep(content, max(20, cols // 2 - 10)) + P["inner_w"] = max(20, cols // 2 - 10) + + real_end = max(e["proc_s"] for e in engines) + wall_end = real_end * a.dilate + a.hold + dt = 1.0 / a.fps + note = content.get("note", "") + with Live(console=console, refresh_per_second=a.fps, screen=True) as live: + t0 = time.perf_counter() + while (w := time.perf_counter() - t0) < wall_end: + live.update(view(P, engines, note, w / a.dilate, a.dilate, cols, rows)) + time.sleep(dt) + live.update(view(P, engines, note, real_end, a.dilate, cols, rows)) + time.sleep(0.7) + live.update(Panel(Align.center(end_card(P, engines, note, a.link), vertical="middle"), + border_style="black", box=box.SIMPLE, height=rows)) + time.sleep(a.card) + + +if __name__ == "__main__": + main() diff --git a/demo/traces/cpu/content.json b/demo/traces/cpu/content.json new file mode 100644 index 0000000..e08de47 --- /dev/null +++ b/demo/traces/cpu/content.json @@ -0,0 +1 @@ +{"document": "Thanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\n", "n_tokens": 8160, "note": "8k-token document · CPU (Ryzen 9 7900)", "entities": [{"type": "person", "start": 236, "end": 244}, {"type": "phone", "start": 419, "end": 430}, {"type": "date", "start": 531, "end": 541}, {"type": "email", "start": 624, "end": 653}, {"type": "person", "start": 967, "end": 975}, {"type": "phone", "start": 1150, "end": 1161}, {"type": "date", "start": 1262, "end": 1272}, {"type": "email", "start": 1355, "end": 1384}, {"type": "person", "start": 1698, "end": 1706}, {"type": "phone", "start": 1881, "end": 1892}, {"type": "date", "start": 1993, "end": 2003}, {"type": "email", "start": 2086, "end": 2115}, {"type": "person", "start": 2429, "end": 2437}, {"type": "phone", "start": 2612, "end": 2623}, {"type": "date", "start": 2724, "end": 2734}, {"type": "email", "start": 2817, "end": 2846}, {"type": "person", "start": 3160, "end": 3168}, {"type": "phone", "start": 3343, "end": 3354}, {"type": "date", "start": 3455, "end": 3465}, {"type": "email", "start": 3548, "end": 3577}, {"type": "person", "start": 3891, "end": 3899}, {"type": "phone", "start": 4074, "end": 4085}, {"type": "date", "start": 4186, "end": 4196}, {"type": "email", "start": 4279, "end": 4308}, {"type": "person", "start": 4622, "end": 4630}, {"type": "phone", "start": 4805, "end": 4816}, {"type": "date", "start": 4917, "end": 4927}, {"type": "email", "start": 5010, "end": 5039}, {"type": "person", "start": 5353, "end": 5361}, {"type": "phone", "start": 5536, "end": 5547}, {"type": "date", "start": 5648, "end": 5658}, {"type": "email", "start": 5741, "end": 5770}, {"type": "person", "start": 6084, "end": 6092}, {"type": "phone", "start": 6267, "end": 6278}, {"type": "date", "start": 6379, "end": 6389}, {"type": "email", "start": 6472, "end": 6501}, {"type": "person", "start": 6815, "end": 6823}, {"type": "phone", "start": 6998, "end": 7009}, {"type": "date", "start": 7110, "end": 7120}, {"type": "email", "start": 7203, "end": 7232}, {"type": "person", "start": 7546, "end": 7554}, {"type": "phone", "start": 7729, "end": 7740}, {"type": "date", "start": 7841, "end": 7851}, {"type": "email", "start": 7934, "end": 7963}, {"type": "person", "start": 8277, "end": 8285}, {"type": "phone", "start": 8460, "end": 8471}, {"type": "date", "start": 8572, "end": 8582}, {"type": "email", "start": 8665, "end": 8694}, {"type": "person", "start": 9008, "end": 9016}, {"type": "phone", "start": 9191, "end": 9202}, {"type": "date", "start": 9303, "end": 9313}, {"type": "email", "start": 9396, "end": 9425}, {"type": "person", "start": 9739, "end": 9747}, {"type": "phone", "start": 9922, "end": 9933}, {"type": "date", "start": 10034, "end": 10044}, {"type": "email", "start": 10127, "end": 10156}, {"type": "person", "start": 10470, "end": 10478}, {"type": "phone", "start": 10653, "end": 10664}, {"type": "date", "start": 10765, "end": 10775}, {"type": "email", "start": 10858, "end": 10887}, {"type": "person", "start": 11201, "end": 11209}, {"type": "phone", "start": 11384, "end": 11395}, {"type": "date", "start": 11496, "end": 11506}, {"type": "email", "start": 11589, "end": 11618}, {"type": "person", "start": 11932, "end": 11940}, {"type": "phone", "start": 12115, "end": 12126}, {"type": "date", "start": 12227, "end": 12237}, {"type": "email", "start": 12320, "end": 12349}, {"type": "person", "start": 12663, "end": 12671}, {"type": "phone", "start": 12846, "end": 12857}, {"type": "date", "start": 12958, "end": 12968}, {"type": "email", "start": 13051, "end": 13080}, {"type": "person", "start": 13394, "end": 13402}, {"type": "phone", "start": 13577, "end": 13588}, {"type": "date", "start": 13689, "end": 13699}, {"type": "email", "start": 13782, "end": 13811}, {"type": "person", "start": 14125, "end": 14133}, {"type": "phone", "start": 14308, "end": 14319}, {"type": "date", "start": 14420, "end": 14430}, {"type": "email", "start": 14513, "end": 14542}, {"type": "person", "start": 14856, "end": 14864}, {"type": "phone", "start": 15039, "end": 15050}, {"type": "date", "start": 15151, "end": 15161}, {"type": "email", "start": 15244, "end": 15273}, {"type": "person", "start": 15587, "end": 15595}, {"type": "phone", "start": 15770, "end": 15781}, {"type": "date", "start": 15882, "end": 15892}, {"type": "email", "start": 15975, "end": 16004}, {"type": "person", "start": 16318, "end": 16326}, {"type": "phone", "start": 16501, "end": 16512}, {"type": "date", "start": 16613, "end": 16623}, {"type": "email", "start": 16706, "end": 16735}, {"type": "person", "start": 17049, "end": 17057}, {"type": "phone", "start": 17232, "end": 17243}, {"type": "date", "start": 17344, "end": 17354}, {"type": "email", "start": 17437, "end": 17466}, {"type": "person", "start": 17780, "end": 17788}, {"type": "phone", "start": 17963, "end": 17974}, {"type": "date", "start": 18075, "end": 18085}, {"type": "email", "start": 18168, "end": 18197}, {"type": "person", "start": 18511, "end": 18519}, {"type": "phone", "start": 18694, "end": 18705}, {"type": "date", "start": 18806, "end": 18816}, {"type": "email", "start": 18899, "end": 18928}, {"type": "person", "start": 19242, "end": 19250}, {"type": "phone", "start": 19425, "end": 19436}, {"type": "date", "start": 19537, "end": 19547}, {"type": "email", "start": 19630, "end": 19659}, {"type": "person", "start": 19973, "end": 19981}, {"type": "phone", "start": 20156, "end": 20167}, {"type": "date", "start": 20268, "end": 20278}, {"type": "email", "start": 20361, "end": 20390}, {"type": "person", "start": 20704, "end": 20712}, {"type": "phone", "start": 20887, "end": 20898}, {"type": "date", "start": 20999, "end": 21009}, {"type": "email", "start": 21092, "end": 21121}, {"type": "person", "start": 21435, "end": 21443}, {"type": "phone", "start": 21618, "end": 21629}, {"type": "date", "start": 21730, "end": 21740}, {"type": "email", "start": 21823, "end": 21852}, {"type": "person", "start": 22166, "end": 22174}, {"type": "phone", "start": 22349, "end": 22360}, {"type": "date", "start": 22461, "end": 22471}, {"type": "email", "start": 22554, "end": 22583}, {"type": "person", "start": 22897, "end": 22905}, {"type": "phone", "start": 23080, "end": 23091}, {"type": "date", "start": 23192, "end": 23202}, {"type": "email", "start": 23285, "end": 23314}, {"type": "person", "start": 23628, "end": 23636}, {"type": "phone", "start": 23811, "end": 23822}, {"type": "date", "start": 23923, "end": 23933}, {"type": "email", "start": 24016, "end": 24045}, {"type": "person", "start": 24359, "end": 24367}, {"type": "phone", "start": 24542, "end": 24553}, {"type": "date", "start": 24654, "end": 24664}, {"type": "email", "start": 24747, "end": 24776}, {"type": "person", "start": 25090, "end": 25098}, {"type": "phone", "start": 25273, "end": 25284}, {"type": "date", "start": 25385, "end": 25395}, {"type": "email", "start": 25478, "end": 25507}, {"type": "person", "start": 25821, "end": 25829}, {"type": "phone", "start": 26004, "end": 26015}, {"type": "date", "start": 26116, "end": 26126}, {"type": "email", "start": 26209, "end": 26238}, {"type": "person", "start": 26552, "end": 26560}, {"type": "phone", "start": 26735, "end": 26746}, {"type": "date", "start": 26847, "end": 26857}, {"type": "email", "start": 26940, "end": 26969}, {"type": "person", "start": 27283, "end": 27291}, {"type": "phone", "start": 27466, "end": 27477}, {"type": "date", "start": 27578, "end": 27588}, {"type": "email", "start": 27671, "end": 27700}, {"type": "person", "start": 28014, "end": 28022}, {"type": "phone", "start": 28197, "end": 28208}, {"type": "date", "start": 28309, "end": 28319}, {"type": "email", "start": 28402, "end": 28431}, {"type": "person", "start": 28745, "end": 28753}, {"type": "phone", "start": 28928, "end": 28939}, {"type": "date", "start": 29040, "end": 29050}, {"type": "email", "start": 29133, "end": 29162}, {"type": "person", "start": 29476, "end": 29484}, {"type": "phone", "start": 29659, "end": 29670}, {"type": "date", "start": 29771, "end": 29781}, {"type": "email", "start": 29864, "end": 29893}, {"type": "person", "start": 30207, "end": 30215}, {"type": "phone", "start": 30390, "end": 30401}, {"type": "date", "start": 30502, "end": 30512}, {"type": "email", "start": 30595, "end": 30624}, {"type": "person", "start": 30938, "end": 30946}, {"type": "phone", "start": 31121, "end": 31132}, {"type": "date", "start": 31233, "end": 31243}, {"type": "email", "start": 31326, "end": 31355}, {"type": "person", "start": 31669, "end": 31677}, {"type": "phone", "start": 31852, "end": 31863}, {"type": "date", "start": 31964, "end": 31974}, {"type": "email", "start": 32057, "end": 32086}, {"type": "person", "start": 32400, "end": 32408}, {"type": "phone", "start": 32583, "end": 32594}, {"type": "date", "start": 32695, "end": 32705}, {"type": "email", "start": 32788, "end": 32817}, {"type": "person", "start": 33131, "end": 33139}, {"type": "phone", "start": 33314, "end": 33325}, {"type": "date", "start": 33426, "end": 33436}, {"type": "email", "start": 33519, "end": 33548}, {"type": "person", "start": 33862, "end": 33870}, {"type": "phone", "start": 34045, "end": 34056}, {"type": "date", "start": 34157, "end": 34167}, {"type": "email", "start": 34250, "end": 34279}, {"type": "person", "start": 34593, "end": 34601}, {"type": "phone", "start": 34776, "end": 34787}, {"type": "date", "start": 34888, "end": 34898}, {"type": "email", "start": 34981, "end": 35010}, {"type": "person", "start": 35324, "end": 35332}, {"type": "phone", "start": 35507, "end": 35518}, {"type": "date", "start": 35619, "end": 35629}, {"type": "email", "start": 35712, "end": 35741}, {"type": "person", "start": 36055, "end": 36063}, {"type": "phone", "start": 36238, "end": 36249}, {"type": "date", "start": 36350, "end": 36360}, {"type": "email", "start": 36443, "end": 36472}, {"type": "person", "start": 36786, "end": 36794}, {"type": "phone", "start": 36969, "end": 36980}, {"type": "date", "start": 37081, "end": 37091}, {"type": "email", "start": 37174, "end": 37203}]} \ No newline at end of file diff --git a/demo/traces/cpu/engines.json b/demo/traces/cpu/engines.json new file mode 100644 index 0000000..93e477c --- /dev/null +++ b/demo/traces/cpu/engines.json @@ -0,0 +1,16 @@ +[ + { + "key": "ours", + "label": "privacy-filter.cpp", + "device": "CPU", + "tps": 2332, + "hero": true + }, + { + "key": "hf", + "label": "HF Transformers", + "device": "CPU", + "tps": 304, + "hero": false + } +] \ No newline at end of file diff --git a/demo/traces/gpu/content.json b/demo/traces/gpu/content.json new file mode 100644 index 0000000..267c366 --- /dev/null +++ b/demo/traces/gpu/content.json @@ -0,0 +1 @@ +{"document": "Thanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\nThanks for getting back to me so quickly about the prior-authorization request. I want to make sure everything is in order before the review board meets next week, since the last batch got held up over a missing signature. The patient, John Doe, has been with our practice for years and is in good health, so we expect this one to be routine. If anything looks incomplete on your end, please call our billing office at +1 555-0112 rather than replying here. I have attached the updated history, and the relevant appointment was on 2026-05-12. If you still need the original signed consent form, you can email me directly at jane.roe@northside-clinic.org. Appreciate you helping get claim 4471 across the line before the deadline.\n\n", "n_tokens": 131040, "note": "132k-token document · GPU (RTX 5070 Ti, 16 GiB)", "entities": [{"type": "person", "start": 236, "end": 244}, {"type": "phone", "start": 419, "end": 430}, {"type": "date", "start": 531, "end": 541}, {"type": "email", "start": 624, "end": 653}, {"type": "person", "start": 967, "end": 975}, {"type": "phone", "start": 1150, "end": 1161}, {"type": "date", "start": 1262, "end": 1272}, {"type": "email", "start": 1355, "end": 1384}, {"type": "person", "start": 1698, "end": 1706}, {"type": "phone", "start": 1881, "end": 1892}, {"type": "date", "start": 1993, "end": 2003}, {"type": "email", "start": 2086, "end": 2115}, {"type": "person", "start": 2429, "end": 2437}, {"type": "phone", "start": 2612, "end": 2623}, {"type": "date", "start": 2724, "end": 2734}, {"type": "email", "start": 2817, "end": 2846}, {"type": "person", "start": 3160, "end": 3168}, {"type": "phone", "start": 3343, "end": 3354}, {"type": "date", "start": 3455, "end": 3465}, {"type": "email", "start": 3548, "end": 3577}, {"type": "person", "start": 3891, "end": 3899}, {"type": "phone", "start": 4074, "end": 4085}, {"type": "date", "start": 4186, "end": 4196}, {"type": "email", "start": 4279, "end": 4308}, {"type": "person", "start": 4622, "end": 4630}, {"type": "phone", "start": 4805, "end": 4816}, {"type": "date", "start": 4917, "end": 4927}, {"type": "email", "start": 5010, "end": 5039}, {"type": "person", "start": 5353, "end": 5361}, {"type": "phone", "start": 5536, "end": 5547}, {"type": "date", "start": 5648, "end": 5658}, {"type": "email", "start": 5741, "end": 5770}, {"type": "person", "start": 6084, "end": 6092}, {"type": "phone", "start": 6267, "end": 6278}, {"type": "date", "start": 6379, "end": 6389}, {"type": "email", "start": 6472, "end": 6501}, {"type": "person", "start": 6815, "end": 6823}, {"type": "phone", "start": 6998, "end": 7009}, {"type": "date", "start": 7110, "end": 7120}, {"type": "email", "start": 7203, "end": 7232}, {"type": "person", "start": 7546, "end": 7554}, {"type": "phone", "start": 7729, "end": 7740}, {"type": "date", "start": 7841, "end": 7851}, {"type": "email", "start": 7934, "end": 7963}, {"type": "person", "start": 8277, "end": 8285}, {"type": "phone", "start": 8460, "end": 8471}, {"type": "date", "start": 8572, "end": 8582}, {"type": "email", "start": 8665, "end": 8694}, {"type": "person", "start": 9008, "end": 9016}, {"type": "phone", "start": 9191, "end": 9202}, {"type": "date", "start": 9303, "end": 9313}, {"type": "email", "start": 9396, "end": 9425}, {"type": "person", "start": 9739, "end": 9747}, {"type": "phone", "start": 9922, "end": 9933}, {"type": "date", "start": 10034, "end": 10044}, {"type": "email", "start": 10127, "end": 10156}, {"type": "person", "start": 10470, "end": 10478}, {"type": "phone", "start": 10653, "end": 10664}, {"type": "date", "start": 10765, "end": 10775}, {"type": "email", "start": 10858, "end": 10887}, {"type": "person", "start": 11201, "end": 11209}, {"type": "phone", "start": 11384, "end": 11395}, {"type": "date", "start": 11496, "end": 11506}, {"type": "email", "start": 11589, "end": 11618}, {"type": "person", "start": 11932, "end": 11940}, {"type": "phone", "start": 12115, "end": 12126}, {"type": "date", "start": 12227, "end": 12237}, {"type": "email", "start": 12320, "end": 12349}, {"type": "person", "start": 12663, "end": 12671}, {"type": "phone", "start": 12846, "end": 12857}, {"type": "date", "start": 12958, "end": 12968}, {"type": "email", "start": 13051, "end": 13080}, {"type": "person", "start": 13394, "end": 13402}, {"type": "phone", "start": 13577, "end": 13588}, {"type": "date", "start": 13689, "end": 13699}, {"type": "email", "start": 13782, "end": 13811}, {"type": "person", "start": 14125, "end": 14133}, {"type": "phone", "start": 14308, "end": 14319}, {"type": "date", "start": 14420, "end": 14430}, {"type": "email", "start": 14513, "end": 14542}, {"type": "person", "start": 14856, "end": 14864}, {"type": "phone", "start": 15039, "end": 15050}, {"type": "date", "start": 15151, "end": 15161}, {"type": "email", "start": 15244, "end": 15273}, {"type": "person", "start": 15587, "end": 15595}, {"type": "phone", "start": 15770, "end": 15781}, {"type": "date", "start": 15882, "end": 15892}, {"type": "email", "start": 15975, "end": 16004}, {"type": "person", "start": 16318, "end": 16326}, {"type": "phone", "start": 16501, "end": 16512}, {"type": "date", "start": 16613, "end": 16623}, {"type": "email", "start": 16706, "end": 16735}, {"type": "person", "start": 17049, "end": 17057}, {"type": "phone", "start": 17232, "end": 17243}, {"type": "date", "start": 17344, "end": 17354}, {"type": "email", "start": 17437, "end": 17466}, {"type": "person", "start": 17780, "end": 17788}, {"type": "phone", "start": 17963, "end": 17974}, {"type": "date", "start": 18075, "end": 18085}, {"type": "email", "start": 18168, "end": 18197}, {"type": "person", "start": 18511, "end": 18519}, {"type": "phone", "start": 18694, "end": 18705}, {"type": "date", "start": 18806, "end": 18816}, {"type": "email", "start": 18899, "end": 18928}, {"type": "person", "start": 19242, "end": 19250}, {"type": "phone", "start": 19425, "end": 19436}, {"type": "date", "start": 19537, "end": 19547}, {"type": "email", "start": 19630, "end": 19659}, {"type": "person", "start": 19973, "end": 19981}, {"type": "phone", "start": 20156, "end": 20167}, {"type": "date", "start": 20268, "end": 20278}, {"type": "email", "start": 20361, "end": 20390}, {"type": "person", "start": 20704, "end": 20712}, {"type": "phone", "start": 20887, "end": 20898}, {"type": "date", "start": 20999, "end": 21009}, {"type": "email", "start": 21092, "end": 21121}, {"type": "person", "start": 21435, "end": 21443}, {"type": "phone", "start": 21618, "end": 21629}, {"type": "date", "start": 21730, "end": 21740}, {"type": "email", "start": 21823, "end": 21852}, {"type": "person", "start": 22166, "end": 22174}, {"type": "phone", "start": 22349, "end": 22360}, {"type": "date", "start": 22461, "end": 22471}, {"type": "email", "start": 22554, "end": 22583}, {"type": "person", "start": 22897, "end": 22905}, {"type": "phone", "start": 23080, "end": 23091}, {"type": "date", "start": 23192, "end": 23202}, {"type": "email", "start": 23285, "end": 23314}, {"type": "person", "start": 23628, "end": 23636}, {"type": "phone", "start": 23811, "end": 23822}, {"type": "date", "start": 23923, "end": 23933}, {"type": "email", "start": 24016, "end": 24045}, {"type": "person", "start": 24359, "end": 24367}, {"type": "phone", "start": 24542, "end": 24553}, {"type": "date", "start": 24654, "end": 24664}, {"type": "email", "start": 24747, "end": 24776}, {"type": "person", "start": 25090, "end": 25098}, {"type": "phone", "start": 25273, "end": 25284}, {"type": "date", "start": 25385, "end": 25395}, {"type": "email", "start": 25478, "end": 25507}, {"type": "person", "start": 25821, "end": 25829}, {"type": "phone", "start": 26004, "end": 26015}, {"type": "date", "start": 26116, "end": 26126}, {"type": "email", "start": 26209, "end": 26238}, {"type": "person", "start": 26552, "end": 26560}, {"type": "phone", "start": 26735, "end": 26746}, {"type": "date", "start": 26847, "end": 26857}, {"type": "email", "start": 26940, "end": 26969}, {"type": "person", "start": 27283, "end": 27291}, {"type": "phone", "start": 27466, "end": 27477}, {"type": "date", "start": 27578, "end": 27588}, {"type": "email", "start": 27671, "end": 27700}, {"type": "person", "start": 28014, "end": 28022}, {"type": "phone", "start": 28197, "end": 28208}, {"type": "date", "start": 28309, "end": 28319}, {"type": "email", "start": 28402, "end": 28431}, {"type": "person", "start": 28745, "end": 28753}, {"type": "phone", "start": 28928, "end": 28939}, {"type": "date", "start": 29040, "end": 29050}, {"type": "email", "start": 29133, "end": 29162}, {"type": "person", "start": 29476, "end": 29484}, {"type": "phone", "start": 29659, "end": 29670}, {"type": "date", "start": 29771, "end": 29781}, {"type": "email", "start": 29864, "end": 29893}, {"type": "person", "start": 30207, "end": 30215}, {"type": "phone", "start": 30390, "end": 30401}, {"type": "date", "start": 30502, "end": 30512}, {"type": "email", "start": 30595, "end": 30624}, {"type": "person", "start": 30938, "end": 30946}, {"type": "phone", "start": 31121, "end": 31132}, {"type": "date", "start": 31233, "end": 31243}, {"type": "email", "start": 31326, "end": 31355}, {"type": "person", "start": 31669, "end": 31677}, {"type": "phone", "start": 31852, "end": 31863}, {"type": "date", "start": 31964, "end": 31974}, {"type": "email", "start": 32057, "end": 32086}, {"type": "person", "start": 32400, "end": 32408}, {"type": "phone", "start": 32583, "end": 32594}, {"type": "date", "start": 32695, "end": 32705}, {"type": "email", "start": 32788, "end": 32817}, {"type": "person", "start": 33131, "end": 33139}, {"type": "phone", "start": 33314, "end": 33325}, {"type": "date", "start": 33426, "end": 33436}, {"type": "email", "start": 33519, "end": 33548}, {"type": "person", "start": 33862, "end": 33870}, {"type": "phone", "start": 34045, "end": 34056}, {"type": "date", "start": 34157, "end": 34167}, {"type": "email", "start": 34250, "end": 34279}, {"type": "person", "start": 34593, "end": 34601}, {"type": "phone", "start": 34776, "end": 34787}, {"type": "date", "start": 34888, "end": 34898}, {"type": "email", "start": 34981, "end": 35010}, {"type": "person", "start": 35324, "end": 35332}, {"type": "phone", "start": 35507, "end": 35518}, {"type": "date", "start": 35619, "end": 35629}, {"type": "email", "start": 35712, "end": 35741}, {"type": "person", "start": 36055, "end": 36063}, {"type": "phone", "start": 36238, "end": 36249}, {"type": "date", "start": 36350, "end": 36360}, {"type": "email", "start": 36443, "end": 36472}, {"type": "person", "start": 36786, "end": 36794}, {"type": "phone", "start": 36969, "end": 36980}, {"type": "date", "start": 37081, "end": 37091}, {"type": "email", "start": 37174, "end": 37203}, {"type": "person", "start": 37517, "end": 37525}, {"type": "phone", "start": 37700, "end": 37711}, {"type": "date", "start": 37812, "end": 37822}, {"type": "email", "start": 37905, "end": 37934}, {"type": "person", "start": 38248, "end": 38256}, {"type": "phone", "start": 38431, "end": 38442}, {"type": "date", "start": 38543, "end": 38553}, {"type": "email", "start": 38636, "end": 38665}, {"type": "person", "start": 38979, "end": 38987}, {"type": "phone", "start": 39162, "end": 39173}, {"type": "date", "start": 39274, "end": 39284}, {"type": "email", "start": 39367, "end": 39396}, {"type": "person", "start": 39710, "end": 39718}, {"type": "phone", "start": 39893, "end": 39904}, {"type": "date", "start": 40005, "end": 40015}, {"type": "email", "start": 40098, "end": 40127}, {"type": "person", "start": 40441, "end": 40449}, {"type": "phone", "start": 40624, "end": 40635}, {"type": "date", "start": 40736, "end": 40746}, {"type": "email", "start": 40829, "end": 40858}, {"type": "person", "start": 41172, "end": 41180}, {"type": "phone", "start": 41355, "end": 41366}, {"type": "date", "start": 41467, "end": 41477}, {"type": "email", "start": 41560, "end": 41589}, {"type": "person", "start": 41903, "end": 41911}, {"type": "phone", "start": 42086, "end": 42097}, {"type": "date", "start": 42198, "end": 42208}, {"type": "email", "start": 42291, "end": 42320}, {"type": "person", "start": 42634, "end": 42642}, {"type": "phone", "start": 42817, "end": 42828}, {"type": "date", "start": 42929, "end": 42939}, {"type": "email", "start": 43022, "end": 43051}, {"type": "person", "start": 43365, "end": 43373}, {"type": "phone", "start": 43548, "end": 43559}, {"type": "date", "start": 43660, "end": 43670}, {"type": "email", "start": 43753, "end": 43782}, {"type": "person", "start": 44096, "end": 44104}, {"type": "phone", "start": 44279, "end": 44290}, {"type": "date", "start": 44391, "end": 44401}, {"type": "email", "start": 44484, "end": 44513}, {"type": "person", "start": 44827, "end": 44835}, {"type": "phone", "start": 45010, "end": 45021}, {"type": "date", "start": 45122, "end": 45132}, {"type": "email", "start": 45215, "end": 45244}, {"type": "person", "start": 45558, "end": 45566}, {"type": "phone", "start": 45741, "end": 45752}, {"type": "date", "start": 45853, "end": 45863}, {"type": "email", "start": 45946, "end": 45975}, {"type": "person", "start": 46289, "end": 46297}, {"type": "phone", "start": 46472, "end": 46483}, {"type": "date", "start": 46584, "end": 46594}, {"type": "email", "start": 46677, "end": 46706}, {"type": "person", "start": 47020, "end": 47028}, {"type": "phone", "start": 47203, "end": 47214}, {"type": "date", "start": 47315, "end": 47325}, {"type": "email", "start": 47408, "end": 47437}, {"type": "person", "start": 47751, "end": 47759}, {"type": "phone", "start": 47934, "end": 47945}, {"type": "date", "start": 48046, "end": 48056}, {"type": "email", "start": 48139, "end": 48168}, {"type": "person", "start": 48482, "end": 48490}, {"type": "phone", "start": 48665, "end": 48676}, {"type": "date", "start": 48777, "end": 48787}, {"type": "email", "start": 48870, "end": 48899}, {"type": "person", "start": 49213, "end": 49221}, {"type": "phone", "start": 49396, "end": 49407}, {"type": "date", "start": 49508, "end": 49518}, {"type": "email", "start": 49601, "end": 49630}, {"type": "person", "start": 49944, "end": 49952}, {"type": "phone", "start": 50127, "end": 50138}, {"type": "date", "start": 50239, "end": 50249}, {"type": "email", "start": 50332, "end": 50361}, {"type": "person", "start": 50675, "end": 50683}, {"type": "phone", "start": 50858, "end": 50869}, {"type": "date", "start": 50970, "end": 50980}, {"type": "email", "start": 51063, "end": 51092}, {"type": "person", "start": 51406, "end": 51414}, {"type": "phone", "start": 51589, "end": 51600}, {"type": "date", "start": 51701, "end": 51711}, {"type": "email", "start": 51794, "end": 51823}, {"type": "person", "start": 52137, "end": 52145}, {"type": "phone", "start": 52320, "end": 52331}, {"type": "date", "start": 52432, "end": 52442}, {"type": "email", "start": 52525, "end": 52554}, {"type": "person", "start": 52868, "end": 52876}, {"type": "phone", "start": 53051, "end": 53062}, {"type": "date", "start": 53163, "end": 53173}, {"type": "email", "start": 53256, "end": 53285}, {"type": "person", "start": 53599, "end": 53607}, {"type": "phone", "start": 53782, "end": 53793}, {"type": "date", "start": 53894, "end": 53904}, {"type": "email", "start": 53987, "end": 54016}, {"type": "person", "start": 54330, "end": 54338}, {"type": "phone", "start": 54513, "end": 54524}, {"type": "date", "start": 54625, "end": 54635}, {"type": "email", "start": 54718, "end": 54747}, {"type": "person", "start": 55061, "end": 55069}, {"type": "phone", "start": 55244, "end": 55255}, {"type": "date", "start": 55356, "end": 55366}, {"type": "email", "start": 55449, "end": 55478}, {"type": "person", "start": 55792, "end": 55800}, {"type": "phone", "start": 55975, "end": 55986}, {"type": "date", "start": 56087, "end": 56097}, {"type": "email", "start": 56180, "end": 56209}, {"type": "person", "start": 56523, "end": 56531}, {"type": "phone", "start": 56706, "end": 56717}, {"type": "date", "start": 56818, "end": 56828}, {"type": "email", "start": 56911, "end": 56940}, {"type": "person", "start": 57254, "end": 57262}, {"type": "phone", "start": 57437, "end": 57448}, {"type": "date", "start": 57549, "end": 57559}, {"type": "email", "start": 57642, "end": 57671}, {"type": "person", "start": 57985, "end": 57993}, {"type": "phone", "start": 58168, "end": 58179}, {"type": "date", "start": 58280, "end": 58290}, {"type": "email", "start": 58373, "end": 58402}, {"type": "person", "start": 58716, "end": 58724}, {"type": "phone", "start": 58899, "end": 58910}, {"type": "date", "start": 59011, "end": 59021}, {"type": "email", "start": 59104, "end": 59133}, {"type": "person", "start": 59447, "end": 59455}, {"type": "phone", "start": 59630, "end": 59641}, {"type": "date", "start": 59742, "end": 59752}, {"type": "email", "start": 59835, "end": 59864}, {"type": "person", "start": 60178, "end": 60186}, {"type": "phone", "start": 60361, "end": 60372}, {"type": "date", "start": 60473, "end": 60483}, {"type": "email", "start": 60566, "end": 60595}, {"type": "person", "start": 60909, "end": 60917}, {"type": "phone", "start": 61092, "end": 61103}, {"type": "date", "start": 61204, "end": 61214}, {"type": "email", "start": 61297, "end": 61326}, {"type": "person", "start": 61640, "end": 61648}, {"type": "phone", "start": 61823, "end": 61834}, {"type": "date", "start": 61935, "end": 61945}, {"type": "email", "start": 62028, "end": 62057}, {"type": "person", "start": 62371, "end": 62379}, {"type": "phone", "start": 62554, "end": 62565}, {"type": "date", "start": 62666, "end": 62676}, {"type": "email", "start": 62759, "end": 62788}, {"type": "person", "start": 63102, "end": 63110}, {"type": "phone", "start": 63285, "end": 63296}, {"type": "date", "start": 63397, "end": 63407}, {"type": "email", "start": 63490, "end": 63519}, {"type": "person", "start": 63833, "end": 63841}, {"type": "phone", "start": 64016, "end": 64027}, {"type": "date", "start": 64128, "end": 64138}, {"type": "email", "start": 64221, "end": 64250}, {"type": "person", "start": 64564, "end": 64572}, {"type": "phone", "start": 64747, "end": 64758}, {"type": "date", "start": 64859, "end": 64869}, {"type": "email", "start": 64952, "end": 64981}, {"type": "person", "start": 65295, "end": 65303}, {"type": "phone", "start": 65478, "end": 65489}, {"type": "date", "start": 65590, "end": 65600}, {"type": "email", "start": 65683, "end": 65712}, {"type": "person", "start": 66026, "end": 66034}, {"type": "phone", "start": 66209, "end": 66220}, {"type": "date", "start": 66321, "end": 66331}, {"type": "email", "start": 66414, "end": 66443}, {"type": "person", "start": 66757, "end": 66765}, {"type": "phone", "start": 66940, "end": 66951}, {"type": "date", "start": 67052, "end": 67062}, {"type": "email", "start": 67145, "end": 67174}, {"type": "person", "start": 67488, "end": 67496}, {"type": "phone", "start": 67671, "end": 67682}, {"type": "date", "start": 67783, "end": 67793}, {"type": "email", "start": 67876, "end": 67905}, {"type": "person", "start": 68219, "end": 68227}, {"type": "phone", "start": 68402, "end": 68413}, {"type": "date", "start": 68514, "end": 68524}, {"type": "email", "start": 68607, "end": 68636}, {"type": "person", "start": 68950, "end": 68958}, {"type": "phone", "start": 69133, "end": 69144}, {"type": "date", "start": 69245, "end": 69255}, {"type": "email", "start": 69338, "end": 69367}, {"type": "person", "start": 69681, "end": 69689}, {"type": "phone", "start": 69864, "end": 69875}, {"type": "date", "start": 69976, "end": 69986}, {"type": "email", "start": 70069, "end": 70098}, {"type": "person", "start": 70412, "end": 70420}, {"type": "phone", "start": 70595, "end": 70606}, {"type": "date", "start": 70707, "end": 70717}, {"type": "email", "start": 70800, "end": 70829}, {"type": "person", "start": 71143, "end": 71151}, {"type": "phone", "start": 71326, "end": 71337}, {"type": "date", "start": 71438, "end": 71448}, {"type": "email", "start": 71531, "end": 71560}, {"type": "person", "start": 71874, "end": 71882}, {"type": "phone", "start": 72057, "end": 72068}, {"type": "date", "start": 72169, "end": 72179}, {"type": "email", "start": 72262, "end": 72291}, {"type": "person", "start": 72605, "end": 72613}, {"type": "phone", "start": 72788, "end": 72799}, {"type": "date", "start": 72900, "end": 72910}, {"type": "email", "start": 72993, "end": 73022}, {"type": "person", "start": 73336, "end": 73344}, {"type": "phone", "start": 73519, "end": 73530}, {"type": "date", "start": 73631, "end": 73641}, {"type": "email", "start": 73724, "end": 73753}, {"type": "person", "start": 74067, "end": 74075}, {"type": "phone", "start": 74250, "end": 74261}, {"type": "date", "start": 74362, "end": 74372}, {"type": "email", "start": 74455, "end": 74484}, {"type": "person", "start": 74798, "end": 74806}, {"type": "phone", "start": 74981, "end": 74992}, {"type": "date", "start": 75093, "end": 75103}, {"type": "email", "start": 75186, "end": 75215}, {"type": "person", "start": 75529, "end": 75537}, {"type": "phone", "start": 75712, "end": 75723}, {"type": "date", "start": 75824, "end": 75834}, {"type": "email", "start": 75917, "end": 75946}, {"type": "person", "start": 76260, "end": 76268}, {"type": "phone", "start": 76443, "end": 76454}, {"type": "date", "start": 76555, "end": 76565}, {"type": "email", "start": 76648, "end": 76677}, {"type": "person", "start": 76991, "end": 76999}, {"type": "phone", "start": 77174, "end": 77185}, {"type": "date", "start": 77286, "end": 77296}, {"type": "email", "start": 77379, "end": 77408}, {"type": "person", "start": 77722, "end": 77730}, {"type": "phone", "start": 77905, "end": 77916}, {"type": "date", "start": 78017, "end": 78027}, {"type": "email", "start": 78110, "end": 78139}, {"type": "person", "start": 78453, "end": 78461}, {"type": "phone", "start": 78636, "end": 78647}, {"type": "date", "start": 78748, "end": 78758}, {"type": "email", "start": 78841, "end": 78870}, {"type": "person", "start": 79184, "end": 79192}, {"type": "phone", "start": 79367, "end": 79378}, {"type": "date", "start": 79479, "end": 79489}, {"type": "email", "start": 79572, "end": 79601}, {"type": "person", "start": 79915, "end": 79923}, {"type": "phone", "start": 80098, "end": 80109}, {"type": "date", "start": 80210, "end": 80220}, {"type": "email", "start": 80303, "end": 80332}, {"type": "person", "start": 80646, "end": 80654}, {"type": "phone", "start": 80829, "end": 80840}, {"type": "date", "start": 80941, "end": 80951}, {"type": "email", "start": 81034, "end": 81063}, {"type": "person", "start": 81377, "end": 81385}, {"type": "phone", "start": 81560, "end": 81571}, {"type": "date", "start": 81672, "end": 81682}, {"type": "email", "start": 81765, "end": 81794}, {"type": "person", "start": 82108, "end": 82116}, {"type": "phone", "start": 82291, "end": 82302}, {"type": "date", "start": 82403, "end": 82413}, {"type": "email", "start": 82496, "end": 82525}, {"type": "person", "start": 82839, "end": 82847}, {"type": "phone", "start": 83022, "end": 83033}, {"type": "date", "start": 83134, "end": 83144}, {"type": "email", "start": 83227, "end": 83256}, {"type": "person", "start": 83570, "end": 83578}, {"type": "phone", "start": 83753, "end": 83764}, {"type": "date", "start": 83865, "end": 83875}, {"type": "email", "start": 83958, "end": 83987}, {"type": "person", "start": 84301, "end": 84309}, {"type": "phone", "start": 84484, "end": 84495}, {"type": "date", "start": 84596, "end": 84606}, {"type": "email", "start": 84689, "end": 84718}, {"type": "person", "start": 85032, "end": 85040}, {"type": "phone", "start": 85215, "end": 85226}, {"type": "date", "start": 85327, "end": 85337}, {"type": "email", "start": 85420, "end": 85449}, {"type": "person", "start": 85763, "end": 85771}, {"type": "phone", "start": 85946, "end": 85957}, {"type": "date", "start": 86058, "end": 86068}, {"type": "email", "start": 86151, "end": 86180}, {"type": "person", "start": 86494, "end": 86502}, {"type": "phone", "start": 86677, "end": 86688}, {"type": "date", "start": 86789, "end": 86799}, {"type": "email", "start": 86882, "end": 86911}, {"type": "person", "start": 87225, "end": 87233}, {"type": "phone", "start": 87408, "end": 87419}, {"type": "date", "start": 87520, "end": 87530}, {"type": "email", "start": 87613, "end": 87642}, {"type": "person", "start": 87956, "end": 87964}, {"type": "phone", "start": 88139, "end": 88150}, {"type": "date", "start": 88251, "end": 88261}, {"type": "email", "start": 88344, "end": 88373}, {"type": "person", "start": 88687, "end": 88695}, {"type": "phone", "start": 88870, "end": 88881}, {"type": "date", "start": 88982, "end": 88992}, {"type": "email", "start": 89075, "end": 89104}, {"type": "person", "start": 89418, "end": 89426}, {"type": "phone", "start": 89601, "end": 89612}, {"type": "date", "start": 89713, "end": 89723}, {"type": "email", "start": 89806, "end": 89835}, {"type": "person", "start": 90149, "end": 90157}, {"type": "phone", "start": 90332, "end": 90343}, {"type": "date", "start": 90444, "end": 90454}, {"type": "email", "start": 90537, "end": 90566}, {"type": "person", "start": 90880, "end": 90888}, {"type": "phone", "start": 91063, "end": 91074}, {"type": "date", "start": 91175, "end": 91185}, {"type": "email", "start": 91268, "end": 91297}, {"type": "person", "start": 91611, "end": 91619}, {"type": "phone", "start": 91794, "end": 91805}, {"type": "date", "start": 91906, "end": 91916}, {"type": "email", "start": 91999, "end": 92028}, {"type": "person", "start": 92342, "end": 92350}, {"type": "phone", "start": 92525, "end": 92536}, {"type": "date", "start": 92637, "end": 92647}, {"type": "email", "start": 92730, "end": 92759}, {"type": "person", "start": 93073, "end": 93081}, {"type": "phone", "start": 93256, "end": 93267}, {"type": "date", "start": 93368, "end": 93378}, {"type": "email", "start": 93461, "end": 93490}, {"type": "person", "start": 93804, "end": 93812}, {"type": "phone", "start": 93987, "end": 93998}, {"type": "date", "start": 94099, "end": 94109}, {"type": "email", "start": 94192, "end": 94221}, {"type": "person", "start": 94535, "end": 94543}, {"type": "phone", "start": 94718, "end": 94729}, {"type": "date", "start": 94830, "end": 94840}, {"type": "email", "start": 94923, "end": 94952}, {"type": "person", "start": 95266, "end": 95274}, {"type": "phone", "start": 95449, "end": 95460}, {"type": "date", "start": 95561, "end": 95571}, {"type": "email", "start": 95654, "end": 95683}, {"type": "person", "start": 95997, "end": 96005}, {"type": "phone", "start": 96180, "end": 96191}, {"type": "date", "start": 96292, "end": 96302}, {"type": "email", "start": 96385, "end": 96414}, {"type": "person", "start": 96728, "end": 96736}, {"type": "phone", "start": 96911, "end": 96922}, {"type": "date", "start": 97023, "end": 97033}, {"type": "email", "start": 97116, "end": 97145}, {"type": "person", "start": 97459, "end": 97467}, {"type": "phone", "start": 97642, "end": 97653}, {"type": "date", "start": 97754, "end": 97764}, {"type": "email", "start": 97847, "end": 97876}, {"type": "person", "start": 98190, "end": 98198}, {"type": "phone", "start": 98373, "end": 98384}, {"type": "date", "start": 98485, "end": 98495}, {"type": "email", "start": 98578, "end": 98607}, {"type": "person", "start": 98921, "end": 98929}, {"type": "phone", "start": 99104, "end": 99115}, {"type": "date", "start": 99216, "end": 99226}, {"type": "email", "start": 99309, "end": 99338}, {"type": "person", "start": 99652, "end": 99660}, {"type": "phone", "start": 99835, "end": 99846}, {"type": "date", "start": 99947, "end": 99957}, {"type": "email", "start": 100040, "end": 100069}, {"type": "person", "start": 100383, "end": 100391}, {"type": "phone", "start": 100566, "end": 100577}, {"type": "date", "start": 100678, "end": 100688}, {"type": "email", "start": 100771, "end": 100800}, {"type": "person", "start": 101114, "end": 101122}, {"type": "phone", "start": 101297, "end": 101308}, {"type": "date", "start": 101409, "end": 101419}, {"type": "email", "start": 101502, "end": 101531}, {"type": "person", "start": 101845, "end": 101853}, {"type": "phone", "start": 102028, "end": 102039}, {"type": "date", "start": 102140, "end": 102150}, {"type": "email", "start": 102233, "end": 102262}, {"type": "person", "start": 102576, "end": 102584}, {"type": "phone", "start": 102759, "end": 102770}, {"type": "date", "start": 102871, "end": 102881}, {"type": "email", "start": 102964, "end": 102993}, {"type": "person", "start": 103307, "end": 103315}, {"type": "phone", "start": 103490, "end": 103501}, {"type": "date", "start": 103602, "end": 103612}, {"type": "email", "start": 103695, "end": 103724}, {"type": "person", "start": 104038, "end": 104046}, {"type": "phone", "start": 104221, "end": 104232}, {"type": "date", "start": 104333, "end": 104343}, {"type": "email", "start": 104426, "end": 104455}, {"type": "person", "start": 104769, "end": 104777}, {"type": "phone", "start": 104952, "end": 104963}, {"type": "date", "start": 105064, "end": 105074}, {"type": "email", "start": 105157, "end": 105186}, {"type": "person", "start": 105500, "end": 105508}, {"type": "phone", "start": 105683, "end": 105694}, {"type": "date", "start": 105795, "end": 105805}, {"type": "email", "start": 105888, "end": 105917}, {"type": "person", "start": 106231, "end": 106239}, {"type": "phone", "start": 106414, "end": 106425}, {"type": "date", "start": 106526, "end": 106536}, {"type": "email", "start": 106619, "end": 106648}, {"type": "person", "start": 106962, "end": 106970}, {"type": "phone", "start": 107145, "end": 107156}, {"type": "date", "start": 107257, "end": 107267}, {"type": "email", "start": 107350, "end": 107379}, {"type": "person", "start": 107693, "end": 107701}, {"type": "phone", "start": 107876, "end": 107887}, {"type": "date", "start": 107988, "end": 107998}, {"type": "email", "start": 108081, "end": 108110}, {"type": "person", "start": 108424, "end": 108432}, {"type": "phone", "start": 108607, "end": 108618}, {"type": "date", "start": 108719, "end": 108729}, {"type": "email", "start": 108812, "end": 108841}, {"type": "person", "start": 109155, "end": 109163}, {"type": "phone", "start": 109338, "end": 109349}, {"type": "date", "start": 109450, "end": 109460}, {"type": "email", "start": 109543, "end": 109572}, {"type": "person", "start": 109886, "end": 109894}, {"type": "phone", "start": 110069, "end": 110080}, {"type": "date", "start": 110181, "end": 110191}, {"type": "email", "start": 110274, "end": 110303}, {"type": "person", "start": 110617, "end": 110625}, {"type": "phone", "start": 110800, "end": 110811}, {"type": "date", "start": 110912, "end": 110922}, {"type": "email", "start": 111005, "end": 111034}, {"type": "person", "start": 111348, "end": 111356}, {"type": "phone", "start": 111531, "end": 111542}, {"type": "date", "start": 111643, "end": 111653}, {"type": "email", "start": 111736, "end": 111765}, {"type": "person", "start": 112079, "end": 112087}, {"type": "phone", "start": 112262, "end": 112273}, {"type": "date", "start": 112374, "end": 112384}, {"type": "email", "start": 112467, "end": 112496}, {"type": "person", "start": 112810, "end": 112818}, {"type": "phone", "start": 112993, "end": 113004}, {"type": "date", "start": 113105, "end": 113115}, {"type": "email", "start": 113198, "end": 113227}, {"type": "person", "start": 113541, "end": 113549}, {"type": "phone", "start": 113724, "end": 113735}, {"type": "date", "start": 113836, "end": 113846}, {"type": "email", "start": 113929, "end": 113958}, {"type": "person", "start": 114272, "end": 114280}, {"type": "phone", "start": 114455, "end": 114466}, {"type": "date", "start": 114567, "end": 114577}, {"type": "email", "start": 114660, "end": 114689}, {"type": "person", "start": 115003, "end": 115011}, {"type": "phone", "start": 115186, "end": 115197}, {"type": "date", "start": 115298, "end": 115308}, {"type": "email", "start": 115391, "end": 115420}, {"type": "person", "start": 115734, "end": 115742}, {"type": "phone", "start": 115917, "end": 115928}, {"type": "date", "start": 116029, "end": 116039}, {"type": "email", "start": 116122, "end": 116151}, {"type": "person", "start": 116465, "end": 116473}, {"type": "phone", "start": 116648, "end": 116659}, {"type": "date", "start": 116760, "end": 116770}, {"type": "email", "start": 116853, "end": 116882}, {"type": "person", "start": 117196, "end": 117204}, {"type": "phone", "start": 117379, "end": 117390}, {"type": "date", "start": 117491, "end": 117501}, {"type": "email", "start": 117584, "end": 117613}, {"type": "person", "start": 117927, "end": 117935}, {"type": "phone", "start": 118110, "end": 118121}, {"type": "date", "start": 118222, "end": 118232}, {"type": "email", "start": 118315, "end": 118344}, {"type": "person", "start": 118658, "end": 118666}, {"type": "phone", "start": 118841, "end": 118852}, {"type": "date", "start": 118953, "end": 118963}, {"type": "email", "start": 119046, "end": 119075}, {"type": "person", "start": 119389, "end": 119397}, {"type": "phone", "start": 119572, "end": 119583}, {"type": "date", "start": 119684, "end": 119694}, {"type": "email", "start": 119777, "end": 119806}, {"type": "person", "start": 120120, "end": 120128}, {"type": "phone", "start": 120303, "end": 120314}, {"type": "date", "start": 120415, "end": 120425}, {"type": "email", "start": 120508, "end": 120537}, {"type": "person", "start": 120851, "end": 120859}, {"type": "phone", "start": 121034, "end": 121045}, {"type": "date", "start": 121146, "end": 121156}, {"type": "email", "start": 121239, "end": 121268}, {"type": "person", "start": 121582, "end": 121590}, {"type": "phone", "start": 121765, "end": 121776}, {"type": "date", "start": 121877, "end": 121887}, {"type": "email", "start": 121970, "end": 121999}, {"type": "person", "start": 122313, "end": 122321}, {"type": "phone", "start": 122496, "end": 122507}, {"type": "date", "start": 122608, "end": 122618}, {"type": "email", "start": 122701, "end": 122730}, {"type": "person", "start": 123044, "end": 123052}, {"type": "phone", "start": 123227, "end": 123238}, {"type": "date", "start": 123339, "end": 123349}, {"type": "email", "start": 123432, "end": 123461}, {"type": "person", "start": 123775, "end": 123783}, {"type": "phone", "start": 123958, "end": 123969}, {"type": "date", "start": 124070, "end": 124080}, {"type": "email", "start": 124163, "end": 124192}, {"type": "person", "start": 124506, "end": 124514}, {"type": "phone", "start": 124689, "end": 124700}, {"type": "date", "start": 124801, "end": 124811}, {"type": "email", "start": 124894, "end": 124923}, {"type": "person", "start": 125237, "end": 125245}, {"type": "phone", "start": 125420, "end": 125431}, {"type": "date", "start": 125532, "end": 125542}, {"type": "email", "start": 125625, "end": 125654}, {"type": "person", "start": 125968, "end": 125976}, {"type": "phone", "start": 126151, "end": 126162}, {"type": "date", "start": 126263, "end": 126273}, {"type": "email", "start": 126356, "end": 126385}, {"type": "person", "start": 126699, "end": 126707}, {"type": "phone", "start": 126882, "end": 126893}, {"type": "date", "start": 126994, "end": 127004}, {"type": "email", "start": 127087, "end": 127116}, {"type": "person", "start": 127430, "end": 127438}, {"type": "phone", "start": 127613, "end": 127624}, {"type": "date", "start": 127725, "end": 127735}, {"type": "email", "start": 127818, "end": 127847}, {"type": "person", "start": 128161, "end": 128169}, {"type": "phone", "start": 128344, "end": 128355}, {"type": "date", "start": 128456, "end": 128466}, {"type": "email", "start": 128549, "end": 128578}, {"type": "person", "start": 128892, "end": 128900}, {"type": "phone", "start": 129075, "end": 129086}, {"type": "date", "start": 129187, "end": 129197}, {"type": "email", "start": 129280, "end": 129309}, {"type": "person", "start": 129623, "end": 129631}, {"type": "phone", "start": 129806, "end": 129817}, {"type": "date", "start": 129918, "end": 129928}, {"type": "email", "start": 130011, "end": 130040}, {"type": "person", "start": 130354, "end": 130362}, {"type": "phone", "start": 130537, "end": 130548}, {"type": "date", "start": 130649, "end": 130659}, {"type": "email", "start": 130742, "end": 130771}, {"type": "person", "start": 131085, "end": 131093}, {"type": "phone", "start": 131268, "end": 131279}, {"type": "date", "start": 131380, "end": 131390}, {"type": "email", "start": 131473, "end": 131502}, {"type": "person", "start": 131816, "end": 131824}, {"type": "phone", "start": 131999, "end": 132010}, {"type": "date", "start": 132111, "end": 132121}, {"type": "email", "start": 132204, "end": 132233}, {"type": "person", "start": 132547, "end": 132555}, {"type": "phone", "start": 132730, "end": 132741}, {"type": "date", "start": 132842, "end": 132852}, {"type": "email", "start": 132935, "end": 132964}, {"type": "person", "start": 133278, "end": 133286}, {"type": "phone", "start": 133461, "end": 133472}, {"type": "date", "start": 133573, "end": 133583}, {"type": "email", "start": 133666, "end": 133695}, {"type": "person", "start": 134009, "end": 134017}, {"type": "phone", "start": 134192, "end": 134203}, {"type": "date", "start": 134304, "end": 134314}, {"type": "email", "start": 134397, "end": 134426}, {"type": "person", "start": 134740, "end": 134748}, {"type": "phone", "start": 134923, "end": 134934}, {"type": "date", "start": 135035, "end": 135045}, {"type": "email", "start": 135128, "end": 135157}, {"type": "person", "start": 135471, "end": 135479}, {"type": "phone", "start": 135654, "end": 135665}, {"type": "date", "start": 135766, "end": 135776}, {"type": "email", "start": 135859, "end": 135888}, {"type": "person", "start": 136202, "end": 136210}, {"type": "phone", "start": 136385, "end": 136396}, {"type": "date", "start": 136497, "end": 136507}, {"type": "email", "start": 136590, "end": 136619}, {"type": "person", "start": 136933, "end": 136941}, {"type": "phone", "start": 137116, "end": 137127}, {"type": "date", "start": 137228, "end": 137238}, {"type": "email", "start": 137321, "end": 137350}, {"type": "person", "start": 137664, "end": 137672}, {"type": "phone", "start": 137847, "end": 137858}, {"type": "date", "start": 137959, "end": 137969}, {"type": "email", "start": 138052, "end": 138081}, {"type": "person", "start": 138395, "end": 138403}, {"type": "phone", "start": 138578, "end": 138589}, {"type": "date", "start": 138690, "end": 138700}, {"type": "email", "start": 138783, "end": 138812}, {"type": "person", "start": 139126, "end": 139134}, {"type": "phone", "start": 139309, "end": 139320}, {"type": "date", "start": 139421, "end": 139431}, {"type": "email", "start": 139514, "end": 139543}, {"type": "person", "start": 139857, "end": 139865}, {"type": "phone", "start": 140040, "end": 140051}, {"type": "date", "start": 140152, "end": 140162}, {"type": "email", "start": 140245, "end": 140274}, {"type": "person", "start": 140588, "end": 140596}, {"type": "phone", "start": 140771, "end": 140782}, {"type": "date", "start": 140883, "end": 140893}, {"type": "email", "start": 140976, "end": 141005}, {"type": "person", "start": 141319, "end": 141327}, {"type": "phone", "start": 141502, "end": 141513}, {"type": "date", "start": 141614, "end": 141624}, {"type": "email", "start": 141707, "end": 141736}, {"type": "person", "start": 142050, "end": 142058}, {"type": "phone", "start": 142233, "end": 142244}, {"type": "date", "start": 142345, "end": 142355}, {"type": "email", "start": 142438, "end": 142467}, {"type": "person", "start": 142781, "end": 142789}, {"type": "phone", "start": 142964, "end": 142975}, {"type": "date", "start": 143076, "end": 143086}, {"type": "email", "start": 143169, "end": 143198}, {"type": "person", "start": 143512, "end": 143520}, {"type": "phone", "start": 143695, "end": 143706}, {"type": "date", "start": 143807, "end": 143817}, {"type": "email", "start": 143900, "end": 143929}, {"type": "person", "start": 144243, "end": 144251}, {"type": "phone", "start": 144426, "end": 144437}, {"type": "date", "start": 144538, "end": 144548}, {"type": "email", "start": 144631, "end": 144660}, {"type": "person", "start": 144974, "end": 144982}, {"type": "phone", "start": 145157, "end": 145168}, {"type": "date", "start": 145269, "end": 145279}, {"type": "email", "start": 145362, "end": 145391}, {"type": "person", "start": 145705, "end": 145713}, {"type": "phone", "start": 145888, "end": 145899}, {"type": "date", "start": 146000, "end": 146010}, {"type": "email", "start": 146093, "end": 146122}, {"type": "person", "start": 146436, "end": 146444}, {"type": "phone", "start": 146619, "end": 146630}, {"type": "date", "start": 146731, "end": 146741}, {"type": "email", "start": 146824, "end": 146853}, {"type": "person", "start": 147167, "end": 147175}, {"type": "phone", "start": 147350, "end": 147361}, {"type": "date", "start": 147462, "end": 147472}, {"type": "email", "start": 147555, "end": 147584}, {"type": "person", "start": 147898, "end": 147906}, {"type": "phone", "start": 148081, "end": 148092}, {"type": "date", "start": 148193, "end": 148203}, {"type": "email", "start": 148286, "end": 148315}, {"type": "person", "start": 148629, "end": 148637}, {"type": "phone", "start": 148812, "end": 148823}, {"type": "date", "start": 148924, "end": 148934}, {"type": "email", "start": 149017, "end": 149046}, {"type": "person", "start": 149360, "end": 149368}, {"type": "phone", "start": 149543, "end": 149554}, {"type": "date", "start": 149655, "end": 149665}, {"type": "email", "start": 149748, "end": 149777}, {"type": "person", "start": 150091, "end": 150099}, {"type": "phone", "start": 150274, "end": 150285}, {"type": "date", "start": 150386, "end": 150396}, {"type": "email", "start": 150479, "end": 150508}, {"type": "person", "start": 150822, "end": 150830}, {"type": "phone", "start": 151005, "end": 151016}, {"type": "date", "start": 151117, "end": 151127}, {"type": "email", "start": 151210, "end": 151239}, {"type": "person", "start": 151553, "end": 151561}, {"type": "phone", "start": 151736, "end": 151747}, {"type": "date", "start": 151848, "end": 151858}, {"type": "email", "start": 151941, "end": 151970}, {"type": "person", "start": 152284, "end": 152292}, {"type": "phone", "start": 152467, "end": 152478}, {"type": "date", "start": 152579, "end": 152589}, {"type": "email", "start": 152672, "end": 152701}, {"type": "person", "start": 153015, "end": 153023}, {"type": "phone", "start": 153198, "end": 153209}, {"type": "date", "start": 153310, "end": 153320}, {"type": "email", "start": 153403, "end": 153432}, {"type": "person", "start": 153746, "end": 153754}, {"type": "phone", "start": 153929, "end": 153940}, {"type": "date", "start": 154041, "end": 154051}, {"type": "email", "start": 154134, "end": 154163}, {"type": "person", "start": 154477, "end": 154485}, {"type": "phone", "start": 154660, "end": 154671}, {"type": "date", "start": 154772, "end": 154782}, {"type": "email", "start": 154865, "end": 154894}, {"type": "person", "start": 155208, "end": 155216}, {"type": "phone", "start": 155391, "end": 155402}, {"type": "date", "start": 155503, "end": 155513}, {"type": "email", "start": 155596, "end": 155625}, {"type": "person", "start": 155939, "end": 155947}, {"type": "phone", "start": 156122, "end": 156133}, {"type": "date", "start": 156234, "end": 156244}, {"type": "email", "start": 156327, "end": 156356}, {"type": "person", "start": 156670, "end": 156678}, {"type": "phone", "start": 156853, "end": 156864}, {"type": "date", "start": 156965, "end": 156975}, {"type": "email", "start": 157058, "end": 157087}, {"type": "person", "start": 157401, "end": 157409}, {"type": "phone", "start": 157584, "end": 157595}, {"type": "date", "start": 157696, "end": 157706}, {"type": "email", "start": 157789, "end": 157818}, {"type": "person", "start": 158132, "end": 158140}, {"type": "phone", "start": 158315, "end": 158326}, {"type": "date", "start": 158427, "end": 158437}, {"type": "email", "start": 158520, "end": 158549}, {"type": "person", "start": 158863, "end": 158871}, {"type": "phone", "start": 159046, "end": 159057}, {"type": "date", "start": 159158, "end": 159168}, {"type": "email", "start": 159251, "end": 159280}, {"type": "person", "start": 159594, "end": 159602}, {"type": "phone", "start": 159777, "end": 159788}, {"type": "date", "start": 159889, "end": 159899}, {"type": "email", "start": 159982, "end": 160011}, {"type": "person", "start": 160325, "end": 160333}, {"type": "phone", "start": 160508, "end": 160519}, {"type": "date", "start": 160620, "end": 160630}, {"type": "email", "start": 160713, "end": 160742}, {"type": "person", "start": 161056, "end": 161064}, {"type": "phone", "start": 161239, "end": 161250}, {"type": "date", "start": 161351, "end": 161361}, {"type": "email", "start": 161444, "end": 161473}, {"type": "person", "start": 161787, "end": 161795}, {"type": "phone", "start": 161970, "end": 161981}, {"type": "date", "start": 162082, "end": 162092}, {"type": "email", "start": 162175, "end": 162204}, {"type": "person", "start": 162518, "end": 162526}, {"type": "phone", "start": 162701, "end": 162712}, {"type": "date", "start": 162813, "end": 162823}, {"type": "email", "start": 162906, "end": 162935}, {"type": "person", "start": 163249, "end": 163257}, {"type": "phone", "start": 163432, "end": 163443}, {"type": "date", "start": 163544, "end": 163554}, {"type": "email", "start": 163637, "end": 163666}, {"type": "person", "start": 163980, "end": 163988}, {"type": "phone", "start": 164163, "end": 164174}, {"type": "date", "start": 164275, "end": 164285}, {"type": "email", "start": 164368, "end": 164397}, {"type": "person", "start": 164711, "end": 164719}, {"type": "phone", "start": 164894, "end": 164905}, {"type": "date", "start": 165006, "end": 165016}, {"type": "email", "start": 165099, "end": 165128}, {"type": "person", "start": 165442, "end": 165450}, {"type": "phone", "start": 165625, "end": 165636}, {"type": "date", "start": 165737, "end": 165747}, {"type": "email", "start": 165830, "end": 165859}, {"type": "person", "start": 166173, "end": 166181}, {"type": "phone", "start": 166356, "end": 166367}, {"type": "date", "start": 166468, "end": 166478}, {"type": "email", "start": 166561, "end": 166590}, {"type": "person", "start": 166904, "end": 166912}, {"type": "phone", "start": 167087, "end": 167098}, {"type": "date", "start": 167199, "end": 167209}, {"type": "email", "start": 167292, "end": 167321}, {"type": "person", "start": 167635, "end": 167643}, {"type": "phone", "start": 167818, "end": 167829}, {"type": "date", "start": 167930, "end": 167940}, {"type": "email", "start": 168023, "end": 168052}, {"type": "person", "start": 168366, "end": 168374}, {"type": "phone", "start": 168549, "end": 168560}, {"type": "date", "start": 168661, "end": 168671}, {"type": "email", "start": 168754, "end": 168783}, {"type": "person", "start": 169097, "end": 169105}, {"type": "phone", "start": 169280, "end": 169291}, {"type": "date", "start": 169392, "end": 169402}, {"type": "email", "start": 169485, "end": 169514}, {"type": "person", "start": 169828, "end": 169836}, {"type": "phone", "start": 170011, "end": 170022}, {"type": "date", "start": 170123, "end": 170133}, {"type": "email", "start": 170216, "end": 170245}, {"type": "person", "start": 170559, "end": 170567}, {"type": "phone", "start": 170742, "end": 170753}, {"type": "date", "start": 170854, "end": 170864}, {"type": "email", "start": 170947, "end": 170976}, {"type": "person", "start": 171290, "end": 171298}, {"type": "phone", "start": 171473, "end": 171484}, {"type": "date", "start": 171585, "end": 171595}, {"type": "email", "start": 171678, "end": 171707}, {"type": "person", "start": 172021, "end": 172029}, {"type": "phone", "start": 172204, "end": 172215}, {"type": "date", "start": 172316, "end": 172326}, {"type": "email", "start": 172409, "end": 172438}, {"type": "person", "start": 172752, "end": 172760}, {"type": "phone", "start": 172935, "end": 172946}, {"type": "date", "start": 173047, "end": 173057}, {"type": "email", "start": 173140, "end": 173169}, {"type": "person", "start": 173483, "end": 173491}, {"type": "phone", "start": 173666, "end": 173677}, {"type": "date", "start": 173778, "end": 173788}, {"type": "email", "start": 173871, "end": 173900}, {"type": "person", "start": 174214, "end": 174222}, {"type": "phone", "start": 174397, "end": 174408}, {"type": "date", "start": 174509, "end": 174519}, {"type": "email", "start": 174602, "end": 174631}, {"type": "person", "start": 174945, "end": 174953}, {"type": "phone", "start": 175128, "end": 175139}, {"type": "date", "start": 175240, "end": 175250}, {"type": "email", "start": 175333, "end": 175362}, {"type": "person", "start": 175676, "end": 175684}, {"type": "phone", "start": 175859, "end": 175870}, {"type": "date", "start": 175971, "end": 175981}, {"type": "email", "start": 176064, "end": 176093}, {"type": "person", "start": 176407, "end": 176415}, {"type": "phone", "start": 176590, "end": 176601}, {"type": "date", "start": 176702, "end": 176712}, {"type": "email", "start": 176795, "end": 176824}, {"type": "person", "start": 177138, "end": 177146}, {"type": "phone", "start": 177321, "end": 177332}, {"type": "date", "start": 177433, "end": 177443}, {"type": "email", "start": 177526, "end": 177555}, {"type": "person", "start": 177869, "end": 177877}, {"type": "phone", "start": 178052, "end": 178063}, {"type": "date", "start": 178164, "end": 178174}, {"type": "email", "start": 178257, "end": 178286}, {"type": "person", "start": 178600, "end": 178608}, {"type": "phone", "start": 178783, "end": 178794}, {"type": "date", "start": 178895, "end": 178905}, {"type": "email", "start": 178988, "end": 179017}, {"type": "person", "start": 179331, "end": 179339}, {"type": "phone", "start": 179514, "end": 179525}, {"type": "date", "start": 179626, "end": 179636}, {"type": "email", "start": 179719, "end": 179748}, {"type": "person", "start": 180062, "end": 180070}, {"type": "phone", "start": 180245, "end": 180256}, {"type": "date", "start": 180357, "end": 180367}, {"type": "email", "start": 180450, "end": 180479}, {"type": "person", "start": 180793, "end": 180801}, {"type": "phone", "start": 180976, "end": 180987}, {"type": "date", "start": 181088, "end": 181098}, {"type": "email", "start": 181181, "end": 181210}, {"type": "person", "start": 181524, "end": 181532}, {"type": "phone", "start": 181707, "end": 181718}, {"type": "date", "start": 181819, "end": 181829}, {"type": "email", "start": 181912, "end": 181941}, {"type": "person", "start": 182255, "end": 182263}, {"type": "phone", "start": 182438, "end": 182449}, {"type": "date", "start": 182550, "end": 182560}, {"type": "email", "start": 182643, "end": 182672}, {"type": "person", "start": 182986, "end": 182994}, {"type": "phone", "start": 183169, "end": 183180}, {"type": "date", "start": 183281, "end": 183291}, {"type": "email", "start": 183374, "end": 183403}, {"type": "person", "start": 183717, "end": 183725}, {"type": "phone", "start": 183900, "end": 183911}, {"type": "date", "start": 184012, "end": 184022}, {"type": "email", "start": 184105, "end": 184134}, {"type": "person", "start": 184448, "end": 184456}, {"type": "phone", "start": 184631, "end": 184642}, {"type": "date", "start": 184743, "end": 184753}, {"type": "email", "start": 184836, "end": 184865}, {"type": "person", "start": 185179, "end": 185187}, {"type": "phone", "start": 185362, "end": 185373}, {"type": "date", "start": 185474, "end": 185484}, {"type": "email", "start": 185567, "end": 185596}, {"type": "person", "start": 185910, "end": 185918}, {"type": "phone", "start": 186093, "end": 186104}, {"type": "date", "start": 186205, "end": 186215}, {"type": "email", "start": 186298, "end": 186327}, {"type": "person", "start": 186641, "end": 186649}, {"type": "phone", "start": 186824, "end": 186835}, {"type": "date", "start": 186936, "end": 186946}, {"type": "email", "start": 187029, "end": 187058}, {"type": "person", "start": 187372, "end": 187380}, {"type": "phone", "start": 187555, "end": 187566}, {"type": "date", "start": 187667, "end": 187677}, {"type": "email", "start": 187760, "end": 187789}, {"type": "person", "start": 188103, "end": 188111}, {"type": "phone", "start": 188286, "end": 188297}, {"type": "date", "start": 188398, "end": 188408}, {"type": "email", "start": 188491, "end": 188520}, {"type": "person", "start": 188834, "end": 188842}, {"type": "phone", "start": 189017, "end": 189028}, {"type": "date", "start": 189129, "end": 189139}, {"type": "email", "start": 189222, "end": 189251}, {"type": "person", "start": 189565, "end": 189573}, {"type": "phone", "start": 189748, "end": 189759}, {"type": "date", "start": 189860, "end": 189870}, {"type": "email", "start": 189953, "end": 189982}, {"type": "person", "start": 190296, "end": 190304}, {"type": "phone", "start": 190479, "end": 190490}, {"type": "date", "start": 190591, "end": 190601}, {"type": "email", "start": 190684, "end": 190713}, {"type": "person", "start": 191027, "end": 191035}, {"type": "phone", "start": 191210, "end": 191221}, {"type": "date", "start": 191322, "end": 191332}, {"type": "email", "start": 191415, "end": 191444}, {"type": "person", "start": 191758, "end": 191766}, {"type": "phone", "start": 191941, "end": 191952}, {"type": "date", "start": 192053, "end": 192063}, {"type": "email", "start": 192146, "end": 192175}, {"type": "person", "start": 192489, "end": 192497}, {"type": "phone", "start": 192672, "end": 192683}, {"type": "date", "start": 192784, "end": 192794}, {"type": "email", "start": 192877, "end": 192906}, {"type": "person", "start": 193220, "end": 193228}, {"type": "phone", "start": 193403, "end": 193414}, {"type": "date", "start": 193515, "end": 193525}, {"type": "email", "start": 193608, "end": 193637}, {"type": "person", "start": 193951, "end": 193959}, {"type": "phone", "start": 194134, "end": 194145}, {"type": "date", "start": 194246, "end": 194256}, {"type": "email", "start": 194339, "end": 194368}, {"type": "person", "start": 194682, "end": 194690}, {"type": "phone", "start": 194865, "end": 194876}, {"type": "date", "start": 194977, "end": 194987}, {"type": "email", "start": 195070, "end": 195099}, {"type": "person", "start": 195413, "end": 195421}, {"type": "phone", "start": 195596, "end": 195607}, {"type": "date", "start": 195708, "end": 195718}, {"type": "email", "start": 195801, "end": 195830}, {"type": "person", "start": 196144, "end": 196152}, {"type": "phone", "start": 196327, "end": 196338}, {"type": "date", "start": 196439, "end": 196449}, {"type": "email", "start": 196532, "end": 196561}, {"type": "person", "start": 196875, "end": 196883}, {"type": "phone", "start": 197058, "end": 197069}, {"type": "date", "start": 197170, "end": 197180}, {"type": "email", "start": 197263, "end": 197292}, {"type": "person", "start": 197606, "end": 197614}, {"type": "phone", "start": 197789, "end": 197800}, {"type": "date", "start": 197901, "end": 197911}, {"type": "email", "start": 197994, "end": 198023}, {"type": "person", "start": 198337, "end": 198345}, {"type": "phone", "start": 198520, "end": 198531}, {"type": "date", "start": 198632, "end": 198642}, {"type": "email", "start": 198725, "end": 198754}, {"type": "person", "start": 199068, "end": 199076}, {"type": "phone", "start": 199251, "end": 199262}, {"type": "date", "start": 199363, "end": 199373}, {"type": "email", "start": 199456, "end": 199485}, {"type": "person", "start": 199799, "end": 199807}, {"type": "phone", "start": 199982, "end": 199993}, {"type": "date", "start": 200094, "end": 200104}, {"type": "email", "start": 200187, "end": 200216}, {"type": "person", "start": 200530, "end": 200538}, {"type": "phone", "start": 200713, "end": 200724}, {"type": "date", "start": 200825, "end": 200835}, {"type": "email", "start": 200918, "end": 200947}, {"type": "person", "start": 201261, "end": 201269}, {"type": "phone", "start": 201444, "end": 201455}, {"type": "date", "start": 201556, "end": 201566}, {"type": "email", "start": 201649, "end": 201678}, {"type": "person", "start": 201992, "end": 202000}, {"type": "phone", "start": 202175, "end": 202186}, {"type": "date", "start": 202287, "end": 202297}, {"type": "email", "start": 202380, "end": 202409}, {"type": "person", "start": 202723, "end": 202731}, {"type": "phone", "start": 202906, "end": 202917}, {"type": "date", "start": 203018, "end": 203028}, {"type": "email", "start": 203111, "end": 203140}, {"type": "person", "start": 203454, "end": 203462}, {"type": "phone", "start": 203637, "end": 203648}, {"type": "date", "start": 203749, "end": 203759}, {"type": "email", "start": 203842, "end": 203871}, {"type": "person", "start": 204185, "end": 204193}, {"type": "phone", "start": 204368, "end": 204379}, {"type": "date", "start": 204480, "end": 204490}, {"type": "email", "start": 204573, "end": 204602}, {"type": "person", "start": 204916, "end": 204924}, {"type": "phone", "start": 205099, "end": 205110}, {"type": "date", "start": 205211, "end": 205221}, {"type": "email", "start": 205304, "end": 205333}, {"type": "person", "start": 205647, "end": 205655}, {"type": "phone", "start": 205830, "end": 205841}, {"type": "date", "start": 205942, "end": 205952}, {"type": "email", "start": 206035, "end": 206064}, {"type": "person", "start": 206378, "end": 206386}, {"type": "phone", "start": 206561, "end": 206572}, {"type": "date", "start": 206673, "end": 206683}, {"type": "email", "start": 206766, "end": 206795}, {"type": "person", "start": 207109, "end": 207117}, {"type": "phone", "start": 207292, "end": 207303}, {"type": "date", "start": 207404, "end": 207414}, {"type": "email", "start": 207497, "end": 207526}, {"type": "person", "start": 207840, "end": 207848}, {"type": "phone", "start": 208023, "end": 208034}, {"type": "date", "start": 208135, "end": 208145}, {"type": "email", "start": 208228, "end": 208257}, {"type": "person", "start": 208571, "end": 208579}, {"type": "phone", "start": 208754, "end": 208765}, {"type": "date", "start": 208866, "end": 208876}, {"type": "email", "start": 208959, "end": 208988}, {"type": "person", "start": 209302, "end": 209310}, {"type": "phone", "start": 209485, "end": 209496}, {"type": "date", "start": 209597, "end": 209607}, {"type": "email", "start": 209690, "end": 209719}, {"type": "person", "start": 210033, "end": 210041}, {"type": "phone", "start": 210216, "end": 210227}, {"type": "date", "start": 210328, "end": 210338}, {"type": "email", "start": 210421, "end": 210450}, {"type": "person", "start": 210764, "end": 210772}, {"type": "phone", "start": 210947, "end": 210958}, {"type": "date", "start": 211059, "end": 211069}, {"type": "email", "start": 211152, "end": 211181}, {"type": "person", "start": 211495, "end": 211503}, {"type": "phone", "start": 211678, "end": 211689}, {"type": "date", "start": 211790, "end": 211800}, {"type": "email", "start": 211883, "end": 211912}, {"type": "person", "start": 212226, "end": 212234}, {"type": "phone", "start": 212409, "end": 212420}, {"type": "date", "start": 212521, "end": 212531}, {"type": "email", "start": 212614, "end": 212643}, {"type": "person", "start": 212957, "end": 212965}, {"type": "phone", "start": 213140, "end": 213151}, {"type": "date", "start": 213252, "end": 213262}, {"type": "email", "start": 213345, "end": 213374}, {"type": "person", "start": 213688, "end": 213696}, {"type": "phone", "start": 213871, "end": 213882}, {"type": "date", "start": 213983, "end": 213993}, {"type": "email", "start": 214076, "end": 214105}, {"type": "person", "start": 214419, "end": 214427}, {"type": "phone", "start": 214602, "end": 214613}, {"type": "date", "start": 214714, "end": 214724}, {"type": "email", "start": 214807, "end": 214836}, {"type": "person", "start": 215150, "end": 215158}, {"type": "phone", "start": 215333, "end": 215344}, {"type": "date", "start": 215445, "end": 215455}, {"type": "email", "start": 215538, "end": 215567}, {"type": "person", "start": 215881, "end": 215889}, {"type": "phone", "start": 216064, "end": 216075}, {"type": "date", "start": 216176, "end": 216186}, {"type": "email", "start": 216269, "end": 216298}, {"type": "person", "start": 216612, "end": 216620}, {"type": "phone", "start": 216795, "end": 216806}, {"type": "date", "start": 216907, "end": 216917}, {"type": "email", "start": 217000, "end": 217029}, {"type": "person", "start": 217343, "end": 217351}, {"type": "phone", "start": 217526, "end": 217537}, {"type": "date", "start": 217638, "end": 217648}, {"type": "email", "start": 217731, "end": 217760}, {"type": "person", "start": 218074, "end": 218082}, {"type": "phone", "start": 218257, "end": 218268}, {"type": "date", "start": 218369, "end": 218379}, {"type": "email", "start": 218462, "end": 218491}, {"type": "person", "start": 218805, "end": 218813}, {"type": "phone", "start": 218988, "end": 218999}, {"type": "date", "start": 219100, "end": 219110}, {"type": "email", "start": 219193, "end": 219222}, {"type": "person", "start": 219536, "end": 219544}, {"type": "phone", "start": 219719, "end": 219730}, {"type": "date", "start": 219831, "end": 219841}, {"type": "email", "start": 219924, "end": 219953}, {"type": "person", "start": 220267, "end": 220275}, {"type": "phone", "start": 220450, "end": 220461}, {"type": "date", "start": 220562, "end": 220572}, {"type": "email", "start": 220655, "end": 220684}, {"type": "person", "start": 220998, "end": 221006}, {"type": "phone", "start": 221181, "end": 221192}, {"type": "date", "start": 221293, "end": 221303}, {"type": "email", "start": 221386, "end": 221415}, {"type": "person", "start": 221729, "end": 221737}, {"type": "phone", "start": 221912, "end": 221923}, {"type": "date", "start": 222024, "end": 222034}, {"type": "email", "start": 222117, "end": 222146}, {"type": "person", "start": 222460, "end": 222468}, {"type": "phone", "start": 222643, "end": 222654}, {"type": "date", "start": 222755, "end": 222765}, {"type": "email", "start": 222848, "end": 222877}, {"type": "person", "start": 223191, "end": 223199}, {"type": "phone", "start": 223374, "end": 223385}, {"type": "date", "start": 223486, "end": 223496}, {"type": "email", "start": 223579, "end": 223608}, {"type": "person", "start": 223922, "end": 223930}, {"type": "phone", "start": 224105, "end": 224116}, {"type": "date", "start": 224217, "end": 224227}, {"type": "email", "start": 224310, "end": 224339}, {"type": "person", "start": 224653, "end": 224661}, {"type": "phone", "start": 224836, "end": 224847}, {"type": "date", "start": 224948, "end": 224958}, {"type": "email", "start": 225041, "end": 225070}, {"type": "person", "start": 225384, "end": 225392}, {"type": "phone", "start": 225567, "end": 225578}, {"type": "date", "start": 225679, "end": 225689}, {"type": "email", "start": 225772, "end": 225801}, {"type": "person", "start": 226115, "end": 226123}, {"type": "phone", "start": 226298, "end": 226309}, {"type": "date", "start": 226410, "end": 226420}, {"type": "email", "start": 226503, "end": 226532}, {"type": "person", "start": 226846, "end": 226854}, {"type": "phone", "start": 227029, "end": 227040}, {"type": "date", "start": 227141, "end": 227151}, {"type": "email", "start": 227234, "end": 227263}, {"type": "person", "start": 227577, "end": 227585}, {"type": "phone", "start": 227760, "end": 227771}, {"type": "date", "start": 227872, "end": 227882}, {"type": "email", "start": 227965, "end": 227994}, {"type": "person", "start": 228308, "end": 228316}, {"type": "phone", "start": 228491, "end": 228502}, {"type": "date", "start": 228603, "end": 228613}, {"type": "email", "start": 228696, "end": 228725}, {"type": "person", "start": 229039, "end": 229047}, {"type": "phone", "start": 229222, "end": 229233}, {"type": "date", "start": 229334, "end": 229344}, {"type": "email", "start": 229427, "end": 229456}, {"type": "person", "start": 229770, "end": 229778}, {"type": "phone", "start": 229953, "end": 229964}, {"type": "date", "start": 230065, "end": 230075}, {"type": "email", "start": 230158, "end": 230187}, {"type": "person", "start": 230501, "end": 230509}, {"type": "phone", "start": 230684, "end": 230695}, {"type": "date", "start": 230796, "end": 230806}, {"type": "email", "start": 230889, "end": 230918}, {"type": "person", "start": 231232, "end": 231240}, {"type": "phone", "start": 231415, "end": 231426}, {"type": "date", "start": 231527, "end": 231537}, {"type": "email", "start": 231620, "end": 231649}, {"type": "person", "start": 231963, "end": 231971}, {"type": "phone", "start": 232146, "end": 232157}, {"type": "date", "start": 232258, "end": 232268}, {"type": "email", "start": 232351, "end": 232380}, {"type": "person", "start": 232694, "end": 232702}, {"type": "phone", "start": 232877, "end": 232888}, {"type": "date", "start": 232989, "end": 232999}, {"type": "email", "start": 233082, "end": 233111}, {"type": "person", "start": 233425, "end": 233433}, {"type": "phone", "start": 233608, "end": 233619}, {"type": "date", "start": 233720, "end": 233730}, {"type": "email", "start": 233813, "end": 233842}, {"type": "person", "start": 234156, "end": 234164}, {"type": "phone", "start": 234339, "end": 234350}, {"type": "date", "start": 234451, "end": 234461}, {"type": "email", "start": 234544, "end": 234573}, {"type": "person", "start": 234887, "end": 234895}, {"type": "phone", "start": 235070, "end": 235081}, {"type": "date", "start": 235182, "end": 235192}, {"type": "email", "start": 235275, "end": 235304}, {"type": "person", "start": 235618, "end": 235626}, {"type": "phone", "start": 235801, "end": 235812}, {"type": "date", "start": 235913, "end": 235923}, {"type": "email", "start": 236006, "end": 236035}, {"type": "person", "start": 236349, "end": 236357}, {"type": "phone", "start": 236532, "end": 236543}, {"type": "date", "start": 236644, "end": 236654}, {"type": "email", "start": 236737, "end": 236766}, {"type": "person", "start": 237080, "end": 237088}, {"type": "phone", "start": 237263, "end": 237274}, {"type": "date", "start": 237375, "end": 237385}, {"type": "email", "start": 237468, "end": 237497}, {"type": "person", "start": 237811, "end": 237819}, {"type": "phone", "start": 237994, "end": 238005}, {"type": "date", "start": 238106, "end": 238116}, {"type": "email", "start": 238199, "end": 238228}, {"type": "person", "start": 238542, "end": 238550}, {"type": "phone", "start": 238725, "end": 238736}, {"type": "date", "start": 238837, "end": 238847}, {"type": "email", "start": 238930, "end": 238959}, {"type": "person", "start": 239273, "end": 239281}, {"type": "phone", "start": 239456, "end": 239467}, {"type": "date", "start": 239568, "end": 239578}, {"type": "email", "start": 239661, "end": 239690}, {"type": "person", "start": 240004, "end": 240012}, {"type": "phone", "start": 240187, "end": 240198}, {"type": "date", "start": 240299, "end": 240309}, {"type": "email", "start": 240392, "end": 240421}, {"type": "person", "start": 240735, "end": 240743}, {"type": "phone", "start": 240918, "end": 240929}, {"type": "date", "start": 241030, "end": 241040}, {"type": "email", "start": 241123, "end": 241152}, {"type": "person", "start": 241466, "end": 241474}, {"type": "phone", "start": 241649, "end": 241660}, {"type": "date", "start": 241761, "end": 241771}, {"type": "email", "start": 241854, "end": 241883}, {"type": "person", "start": 242197, "end": 242205}, {"type": "phone", "start": 242380, "end": 242391}, {"type": "date", "start": 242492, "end": 242502}, {"type": "email", "start": 242585, "end": 242614}, {"type": "person", "start": 242928, "end": 242936}, {"type": "phone", "start": 243111, "end": 243122}, {"type": "date", "start": 243223, "end": 243233}, {"type": "email", "start": 243316, "end": 243345}, {"type": "person", "start": 243659, "end": 243667}, {"type": "phone", "start": 243842, "end": 243853}, {"type": "date", "start": 243954, "end": 243964}, {"type": "email", "start": 244047, "end": 244076}, {"type": "person", "start": 244390, "end": 244398}, {"type": "phone", "start": 244573, "end": 244584}, {"type": "date", "start": 244685, "end": 244695}, {"type": "email", "start": 244778, "end": 244807}, {"type": "person", "start": 245121, "end": 245129}, {"type": "phone", "start": 245304, "end": 245315}, {"type": "date", "start": 245416, "end": 245426}, {"type": "email", "start": 245509, "end": 245538}, {"type": "person", "start": 245852, "end": 245860}, {"type": "phone", "start": 246035, "end": 246046}, {"type": "date", "start": 246147, "end": 246157}, {"type": "email", "start": 246240, "end": 246269}, {"type": "person", "start": 246583, "end": 246591}, {"type": "phone", "start": 246766, "end": 246777}, {"type": "date", "start": 246878, "end": 246888}, {"type": "email", "start": 246971, "end": 247000}, {"type": "person", "start": 247314, "end": 247322}, {"type": "phone", "start": 247497, "end": 247508}, {"type": "date", "start": 247609, "end": 247619}, {"type": "email", "start": 247702, "end": 247731}, {"type": "person", "start": 248045, "end": 248053}, {"type": "phone", "start": 248228, "end": 248239}, {"type": "date", "start": 248340, "end": 248350}, {"type": "email", "start": 248433, "end": 248462}, {"type": "person", "start": 248776, "end": 248784}, {"type": "phone", "start": 248959, "end": 248970}, {"type": "date", "start": 249071, "end": 249081}, {"type": "email", "start": 249164, "end": 249193}, {"type": "person", "start": 249507, "end": 249515}, {"type": "phone", "start": 249690, "end": 249701}, {"type": "date", "start": 249802, "end": 249812}, {"type": "email", "start": 249895, "end": 249924}, {"type": "person", "start": 250238, "end": 250246}, {"type": "phone", "start": 250421, "end": 250432}, {"type": "date", "start": 250533, "end": 250543}, {"type": "email", "start": 250626, "end": 250655}, {"type": "person", "start": 250969, "end": 250977}, {"type": "phone", "start": 251152, "end": 251163}, {"type": "date", "start": 251264, "end": 251274}, {"type": "email", "start": 251357, "end": 251386}, {"type": "person", "start": 251700, "end": 251708}, {"type": "phone", "start": 251883, "end": 251894}, {"type": "date", "start": 251995, "end": 252005}, {"type": "email", "start": 252088, "end": 252117}, {"type": "person", "start": 252431, "end": 252439}, {"type": "phone", "start": 252614, "end": 252625}, {"type": "date", "start": 252726, "end": 252736}, {"type": "email", "start": 252819, "end": 252848}, {"type": "person", "start": 253162, "end": 253170}, {"type": "phone", "start": 253345, "end": 253356}, {"type": "date", "start": 253457, "end": 253467}, {"type": "email", "start": 253550, "end": 253579}, {"type": "person", "start": 253893, "end": 253901}, {"type": "phone", "start": 254076, "end": 254087}, {"type": "date", "start": 254188, "end": 254198}, {"type": "email", "start": 254281, "end": 254310}, {"type": "person", "start": 254624, "end": 254632}, {"type": "phone", "start": 254807, "end": 254818}, {"type": "date", "start": 254919, "end": 254929}, {"type": "email", "start": 255012, "end": 255041}, {"type": "person", "start": 255355, "end": 255363}, {"type": "phone", "start": 255538, "end": 255549}, {"type": "date", "start": 255650, "end": 255660}, {"type": "email", "start": 255743, "end": 255772}, {"type": "person", "start": 256086, "end": 256094}, {"type": "phone", "start": 256269, "end": 256280}, {"type": "date", "start": 256381, "end": 256391}, {"type": "email", "start": 256474, "end": 256503}, {"type": "person", "start": 256817, "end": 256825}, {"type": "phone", "start": 257000, "end": 257011}, {"type": "date", "start": 257112, "end": 257122}, {"type": "email", "start": 257205, "end": 257234}, {"type": "person", "start": 257548, "end": 257556}, {"type": "phone", "start": 257731, "end": 257742}, {"type": "date", "start": 257843, "end": 257853}, {"type": "email", "start": 257936, "end": 257965}, {"type": "person", "start": 258279, "end": 258287}, {"type": "phone", "start": 258462, "end": 258473}, {"type": "date", "start": 258574, "end": 258584}, {"type": "email", "start": 258667, "end": 258696}, {"type": "person", "start": 259010, "end": 259018}, {"type": "phone", "start": 259193, "end": 259204}, {"type": "date", "start": 259305, "end": 259315}, {"type": "email", "start": 259398, "end": 259427}, {"type": "person", "start": 259741, "end": 259749}, {"type": "phone", "start": 259924, "end": 259935}, {"type": "date", "start": 260036, "end": 260046}, {"type": "email", "start": 260129, "end": 260158}, {"type": "person", "start": 260472, "end": 260480}, {"type": "phone", "start": 260655, "end": 260666}, {"type": "date", "start": 260767, "end": 260777}, {"type": "email", "start": 260860, "end": 260889}, {"type": "person", "start": 261203, "end": 261211}, {"type": "phone", "start": 261386, "end": 261397}, {"type": "date", "start": 261498, "end": 261508}, {"type": "email", "start": 261591, "end": 261620}, {"type": "person", "start": 261934, "end": 261942}, {"type": "phone", "start": 262117, "end": 262128}, {"type": "date", "start": 262229, "end": 262239}, {"type": "email", "start": 262322, "end": 262351}, {"type": "person", "start": 262665, "end": 262673}, {"type": "phone", "start": 262848, "end": 262859}, {"type": "date", "start": 262960, "end": 262970}, {"type": "email", "start": 263053, "end": 263082}, {"type": "person", "start": 263396, "end": 263404}, {"type": "phone", "start": 263579, "end": 263590}, {"type": "date", "start": 263691, "end": 263701}, {"type": "email", "start": 263784, "end": 263813}, {"type": "person", "start": 264127, "end": 264135}, {"type": "phone", "start": 264310, "end": 264321}, {"type": "date", "start": 264422, "end": 264432}, {"type": "email", "start": 264515, "end": 264544}, {"type": "person", "start": 264858, "end": 264866}, {"type": "phone", "start": 265041, "end": 265052}, {"type": "date", "start": 265153, "end": 265163}, {"type": "email", "start": 265246, "end": 265275}, {"type": "person", "start": 265589, "end": 265597}, {"type": "phone", "start": 265772, "end": 265783}, {"type": "date", "start": 265884, "end": 265894}, {"type": "email", "start": 265977, "end": 266006}, {"type": "person", "start": 266320, "end": 266328}, {"type": "phone", "start": 266503, "end": 266514}, {"type": "date", "start": 266615, "end": 266625}, {"type": "email", "start": 266708, "end": 266737}, {"type": "person", "start": 267051, "end": 267059}, {"type": "phone", "start": 267234, "end": 267245}, {"type": "date", "start": 267346, "end": 267356}, {"type": "email", "start": 267439, "end": 267468}, {"type": "person", "start": 267782, "end": 267790}, {"type": "phone", "start": 267965, "end": 267976}, {"type": "date", "start": 268077, "end": 268087}, {"type": "email", "start": 268170, "end": 268199}, {"type": "person", "start": 268513, "end": 268521}, {"type": "phone", "start": 268696, "end": 268707}, {"type": "date", "start": 268808, "end": 268818}, {"type": "email", "start": 268901, "end": 268930}, {"type": "person", "start": 269244, "end": 269252}, {"type": "phone", "start": 269427, "end": 269438}, {"type": "date", "start": 269539, "end": 269549}, {"type": "email", "start": 269632, "end": 269661}, {"type": "person", "start": 269975, "end": 269983}, {"type": "phone", "start": 270158, "end": 270169}, {"type": "date", "start": 270270, "end": 270280}, {"type": "email", "start": 270363, "end": 270392}, {"type": "person", "start": 270706, "end": 270714}, {"type": "phone", "start": 270889, "end": 270900}, {"type": "date", "start": 271001, "end": 271011}, {"type": "email", "start": 271094, "end": 271123}, {"type": "person", "start": 271437, "end": 271445}, {"type": "phone", "start": 271620, "end": 271631}, {"type": "date", "start": 271732, "end": 271742}, {"type": "email", "start": 271825, "end": 271854}, {"type": "person", "start": 272168, "end": 272176}, {"type": "phone", "start": 272351, "end": 272362}, {"type": "date", "start": 272463, "end": 272473}, {"type": "email", "start": 272556, "end": 272585}, {"type": "person", "start": 272899, "end": 272907}, {"type": "phone", "start": 273082, "end": 273093}, {"type": "date", "start": 273194, "end": 273204}, {"type": "email", "start": 273287, "end": 273316}, {"type": "person", "start": 273630, "end": 273638}, {"type": "phone", "start": 273813, "end": 273824}, {"type": "date", "start": 273925, "end": 273935}, {"type": "email", "start": 274018, "end": 274047}, {"type": "person", "start": 274361, "end": 274369}, {"type": "phone", "start": 274544, "end": 274555}, {"type": "date", "start": 274656, "end": 274666}, {"type": "email", "start": 274749, "end": 274778}, {"type": "person", "start": 275092, "end": 275100}, {"type": "phone", "start": 275275, "end": 275286}, {"type": "date", "start": 275387, "end": 275397}, {"type": "email", "start": 275480, "end": 275509}, {"type": "person", "start": 275823, "end": 275831}, {"type": "phone", "start": 276006, "end": 276017}, {"type": "date", "start": 276118, "end": 276128}, {"type": "email", "start": 276211, "end": 276240}, {"type": "person", "start": 276554, "end": 276562}, {"type": "phone", "start": 276737, "end": 276748}, {"type": "date", "start": 276849, "end": 276859}, {"type": "email", "start": 276942, "end": 276971}, {"type": "person", "start": 277285, "end": 277293}, {"type": "phone", "start": 277468, "end": 277479}, {"type": "date", "start": 277580, "end": 277590}, {"type": "email", "start": 277673, "end": 277702}, {"type": "person", "start": 278016, "end": 278024}, {"type": "phone", "start": 278199, "end": 278210}, {"type": "date", "start": 278311, "end": 278321}, {"type": "email", "start": 278404, "end": 278433}, {"type": "person", "start": 278747, "end": 278755}, {"type": "phone", "start": 278930, "end": 278941}, {"type": "date", "start": 279042, "end": 279052}, {"type": "email", "start": 279135, "end": 279164}, {"type": "person", "start": 279478, "end": 279486}, {"type": "phone", "start": 279661, "end": 279672}, {"type": "date", "start": 279773, "end": 279783}, {"type": "email", "start": 279866, "end": 279895}, {"type": "person", "start": 280209, "end": 280217}, {"type": "phone", "start": 280392, "end": 280403}, {"type": "date", "start": 280504, "end": 280514}, {"type": "email", "start": 280597, "end": 280626}, {"type": "person", "start": 280940, "end": 280948}, {"type": "phone", "start": 281123, "end": 281134}, {"type": "date", "start": 281235, "end": 281245}, {"type": "email", "start": 281328, "end": 281357}, {"type": "person", "start": 281671, "end": 281679}, {"type": "phone", "start": 281854, "end": 281865}, {"type": "date", "start": 281966, "end": 281976}, {"type": "email", "start": 282059, "end": 282088}, {"type": "person", "start": 282402, "end": 282410}, {"type": "phone", "start": 282585, "end": 282596}, {"type": "date", "start": 282697, "end": 282707}, {"type": "email", "start": 282790, "end": 282819}, {"type": "person", "start": 283133, "end": 283141}, {"type": "phone", "start": 283316, "end": 283327}, {"type": "date", "start": 283428, "end": 283438}, {"type": "email", "start": 283521, "end": 283550}, {"type": "person", "start": 283864, "end": 283872}, {"type": "phone", "start": 284047, "end": 284058}, {"type": "date", "start": 284159, "end": 284169}, {"type": "email", "start": 284252, "end": 284281}, {"type": "person", "start": 284595, "end": 284603}, {"type": "phone", "start": 284778, "end": 284789}, {"type": "date", "start": 284890, "end": 284900}, {"type": "email", "start": 284983, "end": 285012}, {"type": "person", "start": 285326, "end": 285334}, {"type": "phone", "start": 285509, "end": 285520}, {"type": "date", "start": 285621, "end": 285631}, {"type": "email", "start": 285714, "end": 285743}, {"type": "person", "start": 286057, "end": 286065}, {"type": "phone", "start": 286240, "end": 286251}, {"type": "date", "start": 286352, "end": 286362}, {"type": "email", "start": 286445, "end": 286474}, {"type": "person", "start": 286788, "end": 286796}, {"type": "phone", "start": 286971, "end": 286982}, {"type": "date", "start": 287083, "end": 287093}, {"type": "email", "start": 287176, "end": 287205}, {"type": "person", "start": 287519, "end": 287527}, {"type": "phone", "start": 287702, "end": 287713}, {"type": "date", "start": 287814, "end": 287824}, {"type": "email", "start": 287907, "end": 287936}, {"type": "person", "start": 288250, "end": 288258}, {"type": "phone", "start": 288433, "end": 288444}, {"type": "date", "start": 288545, "end": 288555}, {"type": "email", "start": 288638, "end": 288667}, {"type": "person", "start": 288981, "end": 288989}, {"type": "phone", "start": 289164, "end": 289175}, {"type": "date", "start": 289276, "end": 289286}, {"type": "email", "start": 289369, "end": 289398}, {"type": "person", "start": 289712, "end": 289720}, {"type": "phone", "start": 289895, "end": 289906}, {"type": "date", "start": 290007, "end": 290017}, {"type": "email", "start": 290100, "end": 290129}, {"type": "person", "start": 290443, "end": 290451}, {"type": "phone", "start": 290626, "end": 290637}, {"type": "date", "start": 290738, "end": 290748}, {"type": "email", "start": 290831, "end": 290860}, {"type": "person", "start": 291174, "end": 291182}, {"type": "phone", "start": 291357, "end": 291368}, {"type": "date", "start": 291469, "end": 291479}, {"type": "email", "start": 291562, "end": 291591}, {"type": "person", "start": 291905, "end": 291913}, {"type": "phone", "start": 292088, "end": 292099}, {"type": "date", "start": 292200, "end": 292210}, {"type": "email", "start": 292293, "end": 292322}, {"type": "person", "start": 292636, "end": 292644}, {"type": "phone", "start": 292819, "end": 292830}, {"type": "date", "start": 292931, "end": 292941}, {"type": "email", "start": 293024, "end": 293053}, {"type": "person", "start": 293367, "end": 293375}, {"type": "phone", "start": 293550, "end": 293561}, {"type": "date", "start": 293662, "end": 293672}, {"type": "email", "start": 293755, "end": 293784}, {"type": "person", "start": 294098, "end": 294106}, {"type": "phone", "start": 294281, "end": 294292}, {"type": "date", "start": 294393, "end": 294403}, {"type": "email", "start": 294486, "end": 294515}, {"type": "person", "start": 294829, "end": 294837}, {"type": "phone", "start": 295012, "end": 295023}, {"type": "date", "start": 295124, "end": 295134}, {"type": "email", "start": 295217, "end": 295246}, {"type": "person", "start": 295560, "end": 295568}, {"type": "phone", "start": 295743, "end": 295754}, {"type": "date", "start": 295855, "end": 295865}, {"type": "email", "start": 295948, "end": 295977}, {"type": "person", "start": 296291, "end": 296299}, {"type": "phone", "start": 296474, "end": 296485}, {"type": "date", "start": 296586, "end": 296596}, {"type": "email", "start": 296679, "end": 296708}, {"type": "person", "start": 297022, "end": 297030}, {"type": "phone", "start": 297205, "end": 297216}, {"type": "date", "start": 297317, "end": 297327}, {"type": "email", "start": 297410, "end": 297439}, {"type": "person", "start": 297753, "end": 297761}, {"type": "phone", "start": 297936, "end": 297947}, {"type": "date", "start": 298048, "end": 298058}, {"type": "email", "start": 298141, "end": 298170}, {"type": "person", "start": 298484, "end": 298492}, {"type": "phone", "start": 298667, "end": 298678}, {"type": "date", "start": 298779, "end": 298789}, {"type": "email", "start": 298872, "end": 298901}, {"type": "person", "start": 299215, "end": 299223}, {"type": "phone", "start": 299398, "end": 299409}, {"type": "date", "start": 299510, "end": 299520}, {"type": "email", "start": 299603, "end": 299632}, {"type": "person", "start": 299946, "end": 299954}, {"type": "phone", "start": 300129, "end": 300140}, {"type": "date", "start": 300241, "end": 300251}, {"type": "email", "start": 300334, "end": 300363}, {"type": "person", "start": 300677, "end": 300685}, {"type": "phone", "start": 300860, "end": 300871}, {"type": "date", "start": 300972, "end": 300982}, {"type": "email", "start": 301065, "end": 301094}, {"type": "person", "start": 301408, "end": 301416}, {"type": "phone", "start": 301591, "end": 301602}, {"type": "date", "start": 301703, "end": 301713}, {"type": "email", "start": 301796, "end": 301825}, {"type": "person", "start": 302139, "end": 302147}, {"type": "phone", "start": 302322, "end": 302333}, {"type": "date", "start": 302434, "end": 302444}, {"type": "email", "start": 302527, "end": 302556}, {"type": "person", "start": 302870, "end": 302878}, {"type": "phone", "start": 303053, "end": 303064}, {"type": "date", "start": 303165, "end": 303175}, {"type": "email", "start": 303258, "end": 303287}, {"type": "person", "start": 303601, "end": 303609}, {"type": "phone", "start": 303784, "end": 303795}, {"type": "date", "start": 303896, "end": 303906}, {"type": "email", "start": 303989, "end": 304018}, {"type": "person", "start": 304332, "end": 304340}, {"type": "phone", "start": 304515, "end": 304526}, {"type": "date", "start": 304627, "end": 304637}, {"type": "email", "start": 304720, "end": 304749}, {"type": "person", "start": 305063, "end": 305071}, {"type": "phone", "start": 305246, "end": 305257}, {"type": "date", "start": 305358, "end": 305368}, {"type": "email", "start": 305451, "end": 305480}, {"type": "person", "start": 305794, "end": 305802}, {"type": "phone", "start": 305977, "end": 305988}, {"type": "date", "start": 306089, "end": 306099}, {"type": "email", "start": 306182, "end": 306211}, {"type": "person", "start": 306525, "end": 306533}, {"type": "phone", "start": 306708, "end": 306719}, {"type": "date", "start": 306820, "end": 306830}, {"type": "email", "start": 306913, "end": 306942}, {"type": "person", "start": 307256, "end": 307264}, {"type": "phone", "start": 307439, "end": 307450}, {"type": "date", "start": 307551, "end": 307561}, {"type": "email", "start": 307644, "end": 307673}, {"type": "person", "start": 307987, "end": 307995}, {"type": "phone", "start": 308170, "end": 308181}, {"type": "date", "start": 308282, "end": 308292}, {"type": "email", "start": 308375, "end": 308404}, {"type": "person", "start": 308718, "end": 308726}, {"type": "phone", "start": 308901, "end": 308912}, {"type": "date", "start": 309013, "end": 309023}, {"type": "email", "start": 309106, "end": 309135}, {"type": "person", "start": 309449, "end": 309457}, {"type": "phone", "start": 309632, "end": 309643}, {"type": "date", "start": 309744, "end": 309754}, {"type": "email", "start": 309837, "end": 309866}, {"type": "person", "start": 310180, "end": 310188}, {"type": "phone", "start": 310363, "end": 310374}, {"type": "date", "start": 310475, "end": 310485}, {"type": "email", "start": 310568, "end": 310597}, {"type": "person", "start": 310911, "end": 310919}, {"type": "phone", "start": 311094, "end": 311105}, {"type": "date", "start": 311206, "end": 311216}, {"type": "email", "start": 311299, "end": 311328}, {"type": "person", "start": 311642, "end": 311650}, {"type": "phone", "start": 311825, "end": 311836}, {"type": "date", "start": 311937, "end": 311947}, {"type": "email", "start": 312030, "end": 312059}, {"type": "person", "start": 312373, "end": 312381}, {"type": "phone", "start": 312556, "end": 312567}, {"type": "date", "start": 312668, "end": 312678}, {"type": "email", "start": 312761, "end": 312790}, {"type": "person", "start": 313104, "end": 313112}, {"type": "phone", "start": 313287, "end": 313298}, {"type": "date", "start": 313399, "end": 313409}, {"type": "email", "start": 313492, "end": 313521}, {"type": "person", "start": 313835, "end": 313843}, {"type": "phone", "start": 314018, "end": 314029}, {"type": "date", "start": 314130, "end": 314140}, {"type": "email", "start": 314223, "end": 314252}, {"type": "person", "start": 314566, "end": 314574}, {"type": "phone", "start": 314749, "end": 314760}, {"type": "date", "start": 314861, "end": 314871}, {"type": "email", "start": 314954, "end": 314983}, {"type": "person", "start": 315297, "end": 315305}, {"type": "phone", "start": 315480, "end": 315491}, {"type": "date", "start": 315592, "end": 315602}, {"type": "email", "start": 315685, "end": 315714}, {"type": "person", "start": 316028, "end": 316036}, {"type": "phone", "start": 316211, "end": 316222}, {"type": "date", "start": 316323, "end": 316333}, {"type": "email", "start": 316416, "end": 316445}, {"type": "person", "start": 316759, "end": 316767}, {"type": "phone", "start": 316942, "end": 316953}, {"type": "date", "start": 317054, "end": 317064}, {"type": "email", "start": 317147, "end": 317176}, {"type": "person", "start": 317490, "end": 317498}, {"type": "phone", "start": 317673, "end": 317684}, {"type": "date", "start": 317785, "end": 317795}, {"type": "email", "start": 317878, "end": 317907}, {"type": "person", "start": 318221, "end": 318229}, {"type": "phone", "start": 318404, "end": 318415}, {"type": "date", "start": 318516, "end": 318526}, {"type": "email", "start": 318609, "end": 318638}, {"type": "person", "start": 318952, "end": 318960}, {"type": "phone", "start": 319135, "end": 319146}, {"type": "date", "start": 319247, "end": 319257}, {"type": "email", "start": 319340, "end": 319369}, {"type": "person", "start": 319683, "end": 319691}, {"type": "phone", "start": 319866, "end": 319877}, {"type": "date", "start": 319978, "end": 319988}, {"type": "email", "start": 320071, "end": 320100}, {"type": "person", "start": 320414, "end": 320422}, {"type": "phone", "start": 320597, "end": 320608}, {"type": "date", "start": 320709, "end": 320719}, {"type": "email", "start": 320802, "end": 320831}, {"type": "person", "start": 321145, "end": 321153}, {"type": "phone", "start": 321328, "end": 321339}, {"type": "date", "start": 321440, "end": 321450}, {"type": "email", "start": 321533, "end": 321562}, {"type": "person", "start": 321876, "end": 321884}, {"type": "phone", "start": 322059, "end": 322070}, {"type": "date", "start": 322171, "end": 322181}, {"type": "email", "start": 322264, "end": 322293}, {"type": "person", "start": 322607, "end": 322615}, {"type": "phone", "start": 322790, "end": 322801}, {"type": "date", "start": 322902, "end": 322912}, {"type": "email", "start": 322995, "end": 323024}, {"type": "person", "start": 323338, "end": 323346}, {"type": "phone", "start": 323521, "end": 323532}, {"type": "date", "start": 323633, "end": 323643}, {"type": "email", "start": 323726, "end": 323755}, {"type": "person", "start": 324069, "end": 324077}, {"type": "phone", "start": 324252, "end": 324263}, {"type": "date", "start": 324364, "end": 324374}, {"type": "email", "start": 324457, "end": 324486}, {"type": "person", "start": 324800, "end": 324808}, {"type": "phone", "start": 324983, "end": 324994}, {"type": "date", "start": 325095, "end": 325105}, {"type": "email", "start": 325188, "end": 325217}, {"type": "person", "start": 325531, "end": 325539}, {"type": "phone", "start": 325714, "end": 325725}, {"type": "date", "start": 325826, "end": 325836}, {"type": "email", "start": 325919, "end": 325948}, {"type": "person", "start": 326262, "end": 326270}, {"type": "phone", "start": 326445, "end": 326456}, {"type": "date", "start": 326557, "end": 326567}, {"type": "email", "start": 326650, "end": 326679}, {"type": "person", "start": 326993, "end": 327001}, {"type": "phone", "start": 327176, "end": 327187}, {"type": "date", "start": 327288, "end": 327298}, {"type": "email", "start": 327381, "end": 327410}, {"type": "person", "start": 327724, "end": 327732}, {"type": "phone", "start": 327907, "end": 327918}, {"type": "date", "start": 328019, "end": 328029}, {"type": "email", "start": 328112, "end": 328141}, {"type": "person", "start": 328455, "end": 328463}, {"type": "phone", "start": 328638, "end": 328649}, {"type": "date", "start": 328750, "end": 328760}, {"type": "email", "start": 328843, "end": 328872}, {"type": "person", "start": 329186, "end": 329194}, {"type": "phone", "start": 329369, "end": 329380}, {"type": "date", "start": 329481, "end": 329491}, {"type": "email", "start": 329574, "end": 329603}, {"type": "person", "start": 329917, "end": 329925}, {"type": "phone", "start": 330100, "end": 330111}, {"type": "date", "start": 330212, "end": 330222}, {"type": "email", "start": 330305, "end": 330334}, {"type": "person", "start": 330648, "end": 330656}, {"type": "phone", "start": 330831, "end": 330842}, {"type": "date", "start": 330943, "end": 330953}, {"type": "email", "start": 331036, "end": 331065}, {"type": "person", "start": 331379, "end": 331387}, {"type": "phone", "start": 331562, "end": 331573}, {"type": "date", "start": 331674, "end": 331684}, {"type": "email", "start": 331767, "end": 331796}, {"type": "person", "start": 332110, "end": 332118}, {"type": "phone", "start": 332293, "end": 332304}, {"type": "date", "start": 332405, "end": 332415}, {"type": "email", "start": 332498, "end": 332527}, {"type": "person", "start": 332841, "end": 332849}, {"type": "phone", "start": 333024, "end": 333035}, {"type": "date", "start": 333136, "end": 333146}, {"type": "email", "start": 333229, "end": 333258}, {"type": "person", "start": 333572, "end": 333580}, {"type": "phone", "start": 333755, "end": 333766}, {"type": "date", "start": 333867, "end": 333877}, {"type": "email", "start": 333960, "end": 333989}, {"type": "person", "start": 334303, "end": 334311}, {"type": "phone", "start": 334486, "end": 334497}, {"type": "date", "start": 334598, "end": 334608}, {"type": "email", "start": 334691, "end": 334720}, {"type": "person", "start": 335034, "end": 335042}, {"type": "phone", "start": 335217, "end": 335228}, {"type": "date", "start": 335329, "end": 335339}, {"type": "email", "start": 335422, "end": 335451}, {"type": "person", "start": 335765, "end": 335773}, {"type": "phone", "start": 335948, "end": 335959}, {"type": "date", "start": 336060, "end": 336070}, {"type": "email", "start": 336153, "end": 336182}, {"type": "person", "start": 336496, "end": 336504}, {"type": "phone", "start": 336679, "end": 336690}, {"type": "date", "start": 336791, "end": 336801}, {"type": "email", "start": 336884, "end": 336913}, {"type": "person", "start": 337227, "end": 337235}, {"type": "phone", "start": 337410, "end": 337421}, {"type": "date", "start": 337522, "end": 337532}, {"type": "email", "start": 337615, "end": 337644}, {"type": "person", "start": 337958, "end": 337966}, {"type": "phone", "start": 338141, "end": 338152}, {"type": "date", "start": 338253, "end": 338263}, {"type": "email", "start": 338346, "end": 338375}, {"type": "person", "start": 338689, "end": 338697}, {"type": "phone", "start": 338872, "end": 338883}, {"type": "date", "start": 338984, "end": 338994}, {"type": "email", "start": 339077, "end": 339106}, {"type": "person", "start": 339420, "end": 339428}, {"type": "phone", "start": 339603, "end": 339614}, {"type": "date", "start": 339715, "end": 339725}, {"type": "email", "start": 339808, "end": 339837}, {"type": "person", "start": 340151, "end": 340159}, {"type": "phone", "start": 340334, "end": 340345}, {"type": "date", "start": 340446, "end": 340456}, {"type": "email", "start": 340539, "end": 340568}, {"type": "person", "start": 340882, "end": 340890}, {"type": "phone", "start": 341065, "end": 341076}, {"type": "date", "start": 341177, "end": 341187}, {"type": "email", "start": 341270, "end": 341299}, {"type": "person", "start": 341613, "end": 341621}, {"type": "phone", "start": 341796, "end": 341807}, {"type": "date", "start": 341908, "end": 341918}, {"type": "email", "start": 342001, "end": 342030}, {"type": "person", "start": 342344, "end": 342352}, {"type": "phone", "start": 342527, "end": 342538}, {"type": "date", "start": 342639, "end": 342649}, {"type": "email", "start": 342732, "end": 342761}, {"type": "person", "start": 343075, "end": 343083}, {"type": "phone", "start": 343258, "end": 343269}, {"type": "date", "start": 343370, "end": 343380}, {"type": "email", "start": 343463, "end": 343492}, {"type": "person", "start": 343806, "end": 343814}, {"type": "phone", "start": 343989, "end": 344000}, {"type": "date", "start": 344101, "end": 344111}, {"type": "email", "start": 344194, "end": 344223}, {"type": "person", "start": 344537, "end": 344545}, {"type": "phone", "start": 344720, "end": 344731}, {"type": "date", "start": 344832, "end": 344842}, {"type": "email", "start": 344925, "end": 344954}, {"type": "person", "start": 345268, "end": 345276}, {"type": "phone", "start": 345451, "end": 345462}, {"type": "date", "start": 345563, "end": 345573}, {"type": "email", "start": 345656, "end": 345685}, {"type": "person", "start": 345999, "end": 346007}, {"type": "phone", "start": 346182, "end": 346193}, {"type": "date", "start": 346294, "end": 346304}, {"type": "email", "start": 346387, "end": 346416}, {"type": "person", "start": 346730, "end": 346738}, {"type": "phone", "start": 346913, "end": 346924}, {"type": "date", "start": 347025, "end": 347035}, {"type": "email", "start": 347118, "end": 347147}, {"type": "person", "start": 347461, "end": 347469}, {"type": "phone", "start": 347644, "end": 347655}, {"type": "date", "start": 347756, "end": 347766}, {"type": "email", "start": 347849, "end": 347878}, {"type": "person", "start": 348192, "end": 348200}, {"type": "phone", "start": 348375, "end": 348386}, {"type": "date", "start": 348487, "end": 348497}, {"type": "email", "start": 348580, "end": 348609}, {"type": "person", "start": 348923, "end": 348931}, {"type": "phone", "start": 349106, "end": 349117}, {"type": "date", "start": 349218, "end": 349228}, {"type": "email", "start": 349311, "end": 349340}, {"type": "person", "start": 349654, "end": 349662}, {"type": "phone", "start": 349837, "end": 349848}, {"type": "date", "start": 349949, "end": 349959}, {"type": "email", "start": 350042, "end": 350071}, {"type": "person", "start": 350385, "end": 350393}, {"type": "phone", "start": 350568, "end": 350579}, {"type": "date", "start": 350680, "end": 350690}, {"type": "email", "start": 350773, "end": 350802}, {"type": "person", "start": 351116, "end": 351124}, {"type": "phone", "start": 351299, "end": 351310}, {"type": "date", "start": 351411, "end": 351421}, {"type": "email", "start": 351504, "end": 351533}, {"type": "person", "start": 351847, "end": 351855}, {"type": "phone", "start": 352030, "end": 352041}, {"type": "date", "start": 352142, "end": 352152}, {"type": "email", "start": 352235, "end": 352264}, {"type": "person", "start": 352578, "end": 352586}, {"type": "phone", "start": 352761, "end": 352772}, {"type": "date", "start": 352873, "end": 352883}, {"type": "email", "start": 352966, "end": 352995}, {"type": "person", "start": 353309, "end": 353317}, {"type": "phone", "start": 353492, "end": 353503}, {"type": "date", "start": 353604, "end": 353614}, {"type": "email", "start": 353697, "end": 353726}, {"type": "person", "start": 354040, "end": 354048}, {"type": "phone", "start": 354223, "end": 354234}, {"type": "date", "start": 354335, "end": 354345}, {"type": "email", "start": 354428, "end": 354457}, {"type": "person", "start": 354771, "end": 354779}, {"type": "phone", "start": 354954, "end": 354965}, {"type": "date", "start": 355066, "end": 355076}, {"type": "email", "start": 355159, "end": 355188}, {"type": "person", "start": 355502, "end": 355510}, {"type": "phone", "start": 355685, "end": 355696}, {"type": "date", "start": 355797, "end": 355807}, {"type": "email", "start": 355890, "end": 355919}, {"type": "person", "start": 356233, "end": 356241}, {"type": "phone", "start": 356416, "end": 356427}, {"type": "date", "start": 356528, "end": 356538}, {"type": "email", "start": 356621, "end": 356650}, {"type": "person", "start": 356964, "end": 356972}, {"type": "phone", "start": 357147, "end": 357158}, {"type": "date", "start": 357259, "end": 357269}, {"type": "email", "start": 357352, "end": 357381}, {"type": "person", "start": 357695, "end": 357703}, {"type": "phone", "start": 357878, "end": 357889}, {"type": "date", "start": 357990, "end": 358000}, {"type": "email", "start": 358083, "end": 358112}, {"type": "person", "start": 358426, "end": 358434}, {"type": "phone", "start": 358609, "end": 358620}, {"type": "date", "start": 358721, "end": 358731}, {"type": "email", "start": 358814, "end": 358843}, {"type": "person", "start": 359157, "end": 359165}, {"type": "phone", "start": 359340, "end": 359351}, {"type": "date", "start": 359452, "end": 359462}, {"type": "email", "start": 359545, "end": 359574}, {"type": "person", "start": 359888, "end": 359896}, {"type": "phone", "start": 360071, "end": 360082}, {"type": "date", "start": 360183, "end": 360193}, {"type": "email", "start": 360276, "end": 360305}, {"type": "person", "start": 360619, "end": 360627}, {"type": "phone", "start": 360802, "end": 360813}, {"type": "date", "start": 360914, "end": 360924}, {"type": "email", "start": 361007, "end": 361036}, {"type": "person", "start": 361350, "end": 361358}, {"type": "phone", "start": 361533, "end": 361544}, {"type": "date", "start": 361645, "end": 361655}, {"type": "email", "start": 361738, "end": 361767}, {"type": "person", "start": 362081, "end": 362089}, {"type": "phone", "start": 362264, "end": 362275}, {"type": "date", "start": 362376, "end": 362386}, {"type": "email", "start": 362469, "end": 362498}, {"type": "person", "start": 362812, "end": 362820}, {"type": "phone", "start": 362995, "end": 363006}, {"type": "date", "start": 363107, "end": 363117}, {"type": "email", "start": 363200, "end": 363229}, {"type": "person", "start": 363543, "end": 363551}, {"type": "phone", "start": 363726, "end": 363737}, {"type": "date", "start": 363838, "end": 363848}, {"type": "email", "start": 363931, "end": 363960}, {"type": "person", "start": 364274, "end": 364282}, {"type": "phone", "start": 364457, "end": 364468}, {"type": "date", "start": 364569, "end": 364579}, {"type": "email", "start": 364662, "end": 364691}, {"type": "person", "start": 365005, "end": 365013}, {"type": "phone", "start": 365188, "end": 365199}, {"type": "date", "start": 365300, "end": 365310}, {"type": "email", "start": 365393, "end": 365422}, {"type": "person", "start": 365736, "end": 365744}, {"type": "phone", "start": 365919, "end": 365930}, {"type": "date", "start": 366031, "end": 366041}, {"type": "email", "start": 366124, "end": 366153}, {"type": "person", "start": 366467, "end": 366475}, {"type": "phone", "start": 366650, "end": 366661}, {"type": "date", "start": 366762, "end": 366772}, {"type": "email", "start": 366855, "end": 366884}, {"type": "person", "start": 367198, "end": 367206}, {"type": "phone", "start": 367381, "end": 367392}, {"type": "date", "start": 367493, "end": 367503}, {"type": "email", "start": 367586, "end": 367615}, {"type": "person", "start": 367929, "end": 367937}, {"type": "phone", "start": 368112, "end": 368123}, {"type": "date", "start": 368224, "end": 368234}, {"type": "email", "start": 368317, "end": 368346}, {"type": "person", "start": 368660, "end": 368668}, {"type": "phone", "start": 368843, "end": 368854}, {"type": "date", "start": 368955, "end": 368965}, {"type": "email", "start": 369048, "end": 369077}, {"type": "person", "start": 369391, "end": 369399}, {"type": "phone", "start": 369574, "end": 369585}, {"type": "date", "start": 369686, "end": 369696}, {"type": "email", "start": 369779, "end": 369808}, {"type": "person", "start": 370122, "end": 370130}, {"type": "phone", "start": 370305, "end": 370316}, {"type": "date", "start": 370417, "end": 370427}, {"type": "email", "start": 370510, "end": 370539}, {"type": "person", "start": 370853, "end": 370861}, {"type": "phone", "start": 371036, "end": 371047}, {"type": "date", "start": 371148, "end": 371158}, {"type": "email", "start": 371241, "end": 371270}, {"type": "person", "start": 371584, "end": 371592}, {"type": "phone", "start": 371767, "end": 371778}, {"type": "date", "start": 371879, "end": 371889}, {"type": "email", "start": 371972, "end": 372001}, {"type": "person", "start": 372315, "end": 372323}, {"type": "phone", "start": 372498, "end": 372509}, {"type": "date", "start": 372610, "end": 372620}, {"type": "email", "start": 372703, "end": 372732}, {"type": "person", "start": 373046, "end": 373054}, {"type": "phone", "start": 373229, "end": 373240}, {"type": "date", "start": 373341, "end": 373351}, {"type": "email", "start": 373434, "end": 373463}, {"type": "person", "start": 373777, "end": 373785}, {"type": "phone", "start": 373960, "end": 373971}, {"type": "date", "start": 374072, "end": 374082}, {"type": "email", "start": 374165, "end": 374194}, {"type": "person", "start": 374508, "end": 374516}, {"type": "phone", "start": 374691, "end": 374702}, {"type": "date", "start": 374803, "end": 374813}, {"type": "email", "start": 374896, "end": 374925}, {"type": "person", "start": 375239, "end": 375247}, {"type": "phone", "start": 375422, "end": 375433}, {"type": "date", "start": 375534, "end": 375544}, {"type": "email", "start": 375627, "end": 375656}, {"type": "person", "start": 375970, "end": 375978}, {"type": "phone", "start": 376153, "end": 376164}, {"type": "date", "start": 376265, "end": 376275}, {"type": "email", "start": 376358, "end": 376387}, {"type": "person", "start": 376701, "end": 376709}, {"type": "phone", "start": 376884, "end": 376895}, {"type": "date", "start": 376996, "end": 377006}, {"type": "email", "start": 377089, "end": 377118}, {"type": "person", "start": 377432, "end": 377440}, {"type": "phone", "start": 377615, "end": 377626}, {"type": "date", "start": 377727, "end": 377737}, {"type": "email", "start": 377820, "end": 377849}, {"type": "person", "start": 378163, "end": 378171}, {"type": "phone", "start": 378346, "end": 378357}, {"type": "date", "start": 378458, "end": 378468}, {"type": "email", "start": 378551, "end": 378580}, {"type": "person", "start": 378894, "end": 378902}, {"type": "phone", "start": 379077, "end": 379088}, {"type": "date", "start": 379189, "end": 379199}, {"type": "email", "start": 379282, "end": 379311}, {"type": "person", "start": 379625, "end": 379633}, {"type": "phone", "start": 379808, "end": 379819}, {"type": "date", "start": 379920, "end": 379930}, {"type": "email", "start": 380013, "end": 380042}, {"type": "person", "start": 380356, "end": 380364}, {"type": "phone", "start": 380539, "end": 380550}, {"type": "date", "start": 380651, "end": 380661}, {"type": "email", "start": 380744, "end": 380773}, {"type": "person", "start": 381087, "end": 381095}, {"type": "phone", "start": 381270, "end": 381281}, {"type": "date", "start": 381382, "end": 381392}, {"type": "email", "start": 381475, "end": 381504}, {"type": "person", "start": 381818, "end": 381826}, {"type": "phone", "start": 382001, "end": 382012}, {"type": "date", "start": 382113, "end": 382123}, {"type": "email", "start": 382206, "end": 382235}, {"type": "person", "start": 382549, "end": 382557}, {"type": "phone", "start": 382732, "end": 382743}, {"type": "date", "start": 382844, "end": 382854}, {"type": "email", "start": 382937, "end": 382966}, {"type": "person", "start": 383280, "end": 383288}, {"type": "phone", "start": 383463, "end": 383474}, {"type": "date", "start": 383575, "end": 383585}, {"type": "email", "start": 383668, "end": 383697}, {"type": "person", "start": 384011, "end": 384019}, {"type": "phone", "start": 384194, "end": 384205}, {"type": "date", "start": 384306, "end": 384316}, {"type": "email", "start": 384399, "end": 384428}, {"type": "person", "start": 384742, "end": 384750}, {"type": "phone", "start": 384925, "end": 384936}, {"type": "date", "start": 385037, "end": 385047}, {"type": "email", "start": 385130, "end": 385159}, {"type": "person", "start": 385473, "end": 385481}, {"type": "phone", "start": 385656, "end": 385667}, {"type": "date", "start": 385768, "end": 385778}, {"type": "email", "start": 385861, "end": 385890}, {"type": "person", "start": 386204, "end": 386212}, {"type": "phone", "start": 386387, "end": 386398}, {"type": "date", "start": 386499, "end": 386509}, {"type": "email", "start": 386592, "end": 386621}, {"type": "person", "start": 386935, "end": 386943}, {"type": "phone", "start": 387118, "end": 387129}, {"type": "date", "start": 387230, "end": 387240}, {"type": "email", "start": 387323, "end": 387352}, {"type": "person", "start": 387666, "end": 387674}, {"type": "phone", "start": 387849, "end": 387860}, {"type": "date", "start": 387961, "end": 387971}, {"type": "email", "start": 388054, "end": 388083}, {"type": "person", "start": 388397, "end": 388405}, {"type": "phone", "start": 388580, "end": 388591}, {"type": "date", "start": 388692, "end": 388702}, {"type": "email", "start": 388785, "end": 388814}, {"type": "person", "start": 389128, "end": 389136}, {"type": "phone", "start": 389311, "end": 389322}, {"type": "date", "start": 389423, "end": 389433}, {"type": "email", "start": 389516, "end": 389545}, {"type": "person", "start": 389859, "end": 389867}, {"type": "phone", "start": 390042, "end": 390053}, {"type": "date", "start": 390154, "end": 390164}, {"type": "email", "start": 390247, "end": 390276}, {"type": "person", "start": 390590, "end": 390598}, {"type": "phone", "start": 390773, "end": 390784}, {"type": "date", "start": 390885, "end": 390895}, {"type": "email", "start": 390978, "end": 391007}, {"type": "person", "start": 391321, "end": 391329}, {"type": "phone", "start": 391504, "end": 391515}, {"type": "date", "start": 391616, "end": 391626}, {"type": "email", "start": 391709, "end": 391738}, {"type": "person", "start": 392052, "end": 392060}, {"type": "phone", "start": 392235, "end": 392246}, {"type": "date", "start": 392347, "end": 392357}, {"type": "email", "start": 392440, "end": 392469}, {"type": "person", "start": 392783, "end": 392791}, {"type": "phone", "start": 392966, "end": 392977}, {"type": "date", "start": 393078, "end": 393088}, {"type": "email", "start": 393171, "end": 393200}, {"type": "person", "start": 393514, "end": 393522}, {"type": "phone", "start": 393697, "end": 393708}, {"type": "date", "start": 393809, "end": 393819}, {"type": "email", "start": 393902, "end": 393931}, {"type": "person", "start": 394245, "end": 394253}, {"type": "phone", "start": 394428, "end": 394439}, {"type": "date", "start": 394540, "end": 394550}, {"type": "email", "start": 394633, "end": 394662}, {"type": "person", "start": 394976, "end": 394984}, {"type": "phone", "start": 395159, "end": 395170}, {"type": "date", "start": 395271, "end": 395281}, {"type": "email", "start": 395364, "end": 395393}, {"type": "person", "start": 395707, "end": 395715}, {"type": "phone", "start": 395890, "end": 395901}, {"type": "date", "start": 396002, "end": 396012}, {"type": "email", "start": 396095, "end": 396124}, {"type": "person", "start": 396438, "end": 396446}, {"type": "phone", "start": 396621, "end": 396632}, {"type": "date", "start": 396733, "end": 396743}, {"type": "email", "start": 396826, "end": 396855}, {"type": "person", "start": 397169, "end": 397177}, {"type": "phone", "start": 397352, "end": 397363}, {"type": "date", "start": 397464, "end": 397474}, {"type": "email", "start": 397557, "end": 397586}, {"type": "person", "start": 397900, "end": 397908}, {"type": "phone", "start": 398083, "end": 398094}, {"type": "date", "start": 398195, "end": 398205}, {"type": "email", "start": 398288, "end": 398317}, {"type": "person", "start": 398631, "end": 398639}, {"type": "phone", "start": 398814, "end": 398825}, {"type": "date", "start": 398926, "end": 398936}, {"type": "email", "start": 399019, "end": 399048}, {"type": "person", "start": 399362, "end": 399370}, {"type": "phone", "start": 399545, "end": 399556}, {"type": "date", "start": 399657, "end": 399667}, {"type": "email", "start": 399750, "end": 399779}, {"type": "person", "start": 400093, "end": 400101}, {"type": "phone", "start": 400276, "end": 400287}, {"type": "date", "start": 400388, "end": 400398}, {"type": "email", "start": 400481, "end": 400510}, {"type": "person", "start": 400824, "end": 400832}, {"type": "phone", "start": 401007, "end": 401018}, {"type": "date", "start": 401119, "end": 401129}, {"type": "email", "start": 401212, "end": 401241}, {"type": "person", "start": 401555, "end": 401563}, {"type": "phone", "start": 401738, "end": 401749}, {"type": "date", "start": 401850, "end": 401860}, {"type": "email", "start": 401943, "end": 401972}, {"type": "person", "start": 402286, "end": 402294}, {"type": "phone", "start": 402469, "end": 402480}, {"type": "date", "start": 402581, "end": 402591}, {"type": "email", "start": 402674, "end": 402703}, {"type": "person", "start": 403017, "end": 403025}, {"type": "phone", "start": 403200, "end": 403211}, {"type": "date", "start": 403312, "end": 403322}, {"type": "email", "start": 403405, "end": 403434}, {"type": "person", "start": 403748, "end": 403756}, {"type": "phone", "start": 403931, "end": 403942}, {"type": "date", "start": 404043, "end": 404053}, {"type": "email", "start": 404136, "end": 404165}, {"type": "person", "start": 404479, "end": 404487}, {"type": "phone", "start": 404662, "end": 404673}, {"type": "date", "start": 404774, "end": 404784}, {"type": "email", "start": 404867, "end": 404896}, {"type": "person", "start": 405210, "end": 405218}, {"type": "phone", "start": 405393, "end": 405404}, {"type": "date", "start": 405505, "end": 405515}, {"type": "email", "start": 405598, "end": 405627}, {"type": "person", "start": 405941, "end": 405949}, {"type": "phone", "start": 406124, "end": 406135}, {"type": "date", "start": 406236, "end": 406246}, {"type": "email", "start": 406329, "end": 406358}, {"type": "person", "start": 406672, "end": 406680}, {"type": "phone", "start": 406855, "end": 406866}, {"type": "date", "start": 406967, "end": 406977}, {"type": "email", "start": 407060, "end": 407089}, {"type": "person", "start": 407403, "end": 407411}, {"type": "phone", "start": 407586, "end": 407597}, {"type": "date", "start": 407698, "end": 407708}, {"type": "email", "start": 407791, "end": 407820}, {"type": "person", "start": 408134, "end": 408142}, {"type": "phone", "start": 408317, "end": 408328}, {"type": "date", "start": 408429, "end": 408439}, {"type": "email", "start": 408522, "end": 408551}, {"type": "person", "start": 408865, "end": 408873}, {"type": "phone", "start": 409048, "end": 409059}, {"type": "date", "start": 409160, "end": 409170}, {"type": "email", "start": 409253, "end": 409282}, {"type": "person", "start": 409596, "end": 409604}, {"type": "phone", "start": 409779, "end": 409790}, {"type": "date", "start": 409891, "end": 409901}, {"type": "email", "start": 409984, "end": 410013}, {"type": "person", "start": 410327, "end": 410335}, {"type": "phone", "start": 410510, "end": 410521}, {"type": "date", "start": 410622, "end": 410632}, {"type": "email", "start": 410715, "end": 410744}, {"type": "person", "start": 411058, "end": 411066}, {"type": "phone", "start": 411241, "end": 411252}, {"type": "date", "start": 411353, "end": 411363}, {"type": "email", "start": 411446, "end": 411475}, {"type": "person", "start": 411789, "end": 411797}, {"type": "phone", "start": 411972, "end": 411983}, {"type": "date", "start": 412084, "end": 412094}, {"type": "email", "start": 412177, "end": 412206}, {"type": "person", "start": 412520, "end": 412528}, {"type": "phone", "start": 412703, "end": 412714}, {"type": "date", "start": 412815, "end": 412825}, {"type": "email", "start": 412908, "end": 412937}, {"type": "person", "start": 413251, "end": 413259}, {"type": "phone", "start": 413434, "end": 413445}, {"type": "date", "start": 413546, "end": 413556}, {"type": "email", "start": 413639, "end": 413668}, {"type": "person", "start": 413982, "end": 413990}, {"type": "phone", "start": 414165, "end": 414176}, {"type": "date", "start": 414277, "end": 414287}, {"type": "email", "start": 414370, "end": 414399}, {"type": "person", "start": 414713, "end": 414721}, {"type": "phone", "start": 414896, "end": 414907}, {"type": "date", "start": 415008, "end": 415018}, {"type": "email", "start": 415101, "end": 415130}, {"type": "person", "start": 415444, "end": 415452}, {"type": "phone", "start": 415627, "end": 415638}, {"type": "date", "start": 415739, "end": 415749}, {"type": "email", "start": 415832, "end": 415861}, {"type": "person", "start": 416175, "end": 416183}, {"type": "phone", "start": 416358, "end": 416369}, {"type": "date", "start": 416470, "end": 416480}, {"type": "email", "start": 416563, "end": 416592}, {"type": "person", "start": 416906, "end": 416914}, {"type": "phone", "start": 417089, "end": 417100}, {"type": "date", "start": 417201, "end": 417211}, {"type": "email", "start": 417294, "end": 417323}, {"type": "person", "start": 417637, "end": 417645}, {"type": "phone", "start": 417820, "end": 417831}, {"type": "date", "start": 417932, "end": 417942}, {"type": "email", "start": 418025, "end": 418054}, {"type": "person", "start": 418368, "end": 418376}, {"type": "phone", "start": 418551, "end": 418562}, {"type": "date", "start": 418663, "end": 418673}, {"type": "email", "start": 418756, "end": 418785}, {"type": "person", "start": 419099, "end": 419107}, {"type": "phone", "start": 419282, "end": 419293}, {"type": "date", "start": 419394, "end": 419404}, {"type": "email", "start": 419487, "end": 419516}, {"type": "person", "start": 419830, "end": 419838}, {"type": "phone", "start": 420013, "end": 420024}, {"type": "date", "start": 420125, "end": 420135}, {"type": "email", "start": 420218, "end": 420247}, {"type": "person", "start": 420561, "end": 420569}, {"type": "phone", "start": 420744, "end": 420755}, {"type": "date", "start": 420856, "end": 420866}, {"type": "email", "start": 420949, "end": 420978}, {"type": "person", "start": 421292, "end": 421300}, {"type": "phone", "start": 421475, "end": 421486}, {"type": "date", "start": 421587, "end": 421597}, {"type": "email", "start": 421680, "end": 421709}, {"type": "person", "start": 422023, "end": 422031}, {"type": "phone", "start": 422206, "end": 422217}, {"type": "date", "start": 422318, "end": 422328}, {"type": "email", "start": 422411, "end": 422440}, {"type": "person", "start": 422754, "end": 422762}, {"type": "phone", "start": 422937, "end": 422948}, {"type": "date", "start": 423049, "end": 423059}, {"type": "email", "start": 423142, "end": 423171}, {"type": "person", "start": 423485, "end": 423493}, {"type": "phone", "start": 423668, "end": 423679}, {"type": "date", "start": 423780, "end": 423790}, {"type": "email", "start": 423873, "end": 423902}, {"type": "person", "start": 424216, "end": 424224}, {"type": "phone", "start": 424399, "end": 424410}, {"type": "date", "start": 424511, "end": 424521}, {"type": "email", "start": 424604, "end": 424633}, {"type": "person", "start": 424947, "end": 424955}, {"type": "phone", "start": 425130, "end": 425141}, {"type": "date", "start": 425242, "end": 425252}, {"type": "email", "start": 425335, "end": 425364}, {"type": "person", "start": 425678, "end": 425686}, {"type": "phone", "start": 425861, "end": 425872}, {"type": "date", "start": 425973, "end": 425983}, {"type": "email", "start": 426066, "end": 426095}, {"type": "person", "start": 426409, "end": 426417}, {"type": "phone", "start": 426592, "end": 426603}, {"type": "date", "start": 426704, "end": 426714}, {"type": "email", "start": 426797, "end": 426826}, {"type": "person", "start": 427140, "end": 427148}, {"type": "phone", "start": 427323, "end": 427334}, {"type": "date", "start": 427435, "end": 427445}, {"type": "email", "start": 427528, "end": 427557}, {"type": "person", "start": 427871, "end": 427879}, {"type": "phone", "start": 428054, "end": 428065}, {"type": "date", "start": 428166, "end": 428176}, {"type": "email", "start": 428259, "end": 428288}, {"type": "person", "start": 428602, "end": 428610}, {"type": "phone", "start": 428785, "end": 428796}, {"type": "date", "start": 428897, "end": 428907}, {"type": "email", "start": 428990, "end": 429019}, {"type": "person", "start": 429333, "end": 429341}, {"type": "phone", "start": 429516, "end": 429527}, {"type": "date", "start": 429628, "end": 429638}, {"type": "email", "start": 429721, "end": 429750}, {"type": "person", "start": 430064, "end": 430072}, {"type": "phone", "start": 430247, "end": 430258}, {"type": "date", "start": 430359, "end": 430369}, {"type": "email", "start": 430452, "end": 430481}, {"type": "person", "start": 430795, "end": 430803}, {"type": "phone", "start": 430978, "end": 430989}, {"type": "date", "start": 431090, "end": 431100}, {"type": "email", "start": 431183, "end": 431212}, {"type": "person", "start": 431526, "end": 431534}, {"type": "phone", "start": 431709, "end": 431720}, {"type": "date", "start": 431821, "end": 431831}, {"type": "email", "start": 431914, "end": 431943}, {"type": "person", "start": 432257, "end": 432265}, {"type": "phone", "start": 432440, "end": 432451}, {"type": "date", "start": 432552, "end": 432562}, {"type": "email", "start": 432645, "end": 432674}, {"type": "person", "start": 432988, "end": 432996}, {"type": "phone", "start": 433171, "end": 433182}, {"type": "date", "start": 433283, "end": 433293}, {"type": "email", "start": 433376, "end": 433405}, {"type": "person", "start": 433719, "end": 433727}, {"type": "phone", "start": 433902, "end": 433913}, {"type": "date", "start": 434014, "end": 434024}, {"type": "email", "start": 434107, "end": 434136}, {"type": "person", "start": 434450, "end": 434458}, {"type": "phone", "start": 434633, "end": 434644}, {"type": "date", "start": 434745, "end": 434755}, {"type": "email", "start": 434838, "end": 434867}, {"type": "person", "start": 435181, "end": 435189}, {"type": "phone", "start": 435364, "end": 435375}, {"type": "date", "start": 435476, "end": 435486}, {"type": "email", "start": 435569, "end": 435598}, {"type": "person", "start": 435912, "end": 435920}, {"type": "phone", "start": 436095, "end": 436106}, {"type": "date", "start": 436207, "end": 436217}, {"type": "email", "start": 436300, "end": 436329}, {"type": "person", "start": 436643, "end": 436651}, {"type": "phone", "start": 436826, "end": 436837}, {"type": "date", "start": 436938, "end": 436948}, {"type": "email", "start": 437031, "end": 437060}, {"type": "person", "start": 437374, "end": 437382}, {"type": "phone", "start": 437557, "end": 437568}, {"type": "date", "start": 437669, "end": 437679}, {"type": "email", "start": 437762, "end": 437791}, {"type": "person", "start": 438105, "end": 438113}, {"type": "phone", "start": 438288, "end": 438299}, {"type": "date", "start": 438400, "end": 438410}, {"type": "email", "start": 438493, "end": 438522}, {"type": "person", "start": 438836, "end": 438844}, {"type": "phone", "start": 439019, "end": 439030}, {"type": "date", "start": 439131, "end": 439141}, {"type": "email", "start": 439224, "end": 439253}, {"type": "person", "start": 439567, "end": 439575}, {"type": "phone", "start": 439750, "end": 439761}, {"type": "date", "start": 439862, "end": 439872}, {"type": "email", "start": 439955, "end": 439984}, {"type": "person", "start": 440298, "end": 440306}, {"type": "phone", "start": 440481, "end": 440492}, {"type": "date", "start": 440593, "end": 440603}, {"type": "email", "start": 440686, "end": 440715}, {"type": "person", "start": 441029, "end": 441037}, {"type": "phone", "start": 441212, "end": 441223}, {"type": "date", "start": 441324, "end": 441334}, {"type": "email", "start": 441417, "end": 441446}, {"type": "person", "start": 441760, "end": 441768}, {"type": "phone", "start": 441943, "end": 441954}, {"type": "date", "start": 442055, "end": 442065}, {"type": "email", "start": 442148, "end": 442177}, {"type": "person", "start": 442491, "end": 442499}, {"type": "phone", "start": 442674, "end": 442685}, {"type": "date", "start": 442786, "end": 442796}, {"type": "email", "start": 442879, "end": 442908}, {"type": "person", "start": 443222, "end": 443230}, {"type": "phone", "start": 443405, "end": 443416}, {"type": "date", "start": 443517, "end": 443527}, {"type": "email", "start": 443610, "end": 443639}, {"type": "person", "start": 443953, "end": 443961}, {"type": "phone", "start": 444136, "end": 444147}, {"type": "date", "start": 444248, "end": 444258}, {"type": "email", "start": 444341, "end": 444370}, {"type": "person", "start": 444684, "end": 444692}, {"type": "phone", "start": 444867, "end": 444878}, {"type": "date", "start": 444979, "end": 444989}, {"type": "email", "start": 445072, "end": 445101}, {"type": "person", "start": 445415, "end": 445423}, {"type": "phone", "start": 445598, "end": 445609}, {"type": "date", "start": 445710, "end": 445720}, {"type": "email", "start": 445803, "end": 445832}, {"type": "person", "start": 446146, "end": 446154}, {"type": "phone", "start": 446329, "end": 446340}, {"type": "date", "start": 446441, "end": 446451}, {"type": "email", "start": 446534, "end": 446563}, {"type": "person", "start": 446877, "end": 446885}, {"type": "phone", "start": 447060, "end": 447071}, {"type": "date", "start": 447172, "end": 447182}, {"type": "email", "start": 447265, "end": 447294}, {"type": "person", "start": 447608, "end": 447616}, {"type": "phone", "start": 447791, "end": 447802}, {"type": "date", "start": 447903, "end": 447913}, {"type": "email", "start": 447996, "end": 448025}, {"type": "person", "start": 448339, "end": 448347}, {"type": "phone", "start": 448522, "end": 448533}, {"type": "date", "start": 448634, "end": 448644}, {"type": "email", "start": 448727, "end": 448756}, {"type": "person", "start": 449070, "end": 449078}, {"type": "phone", "start": 449253, "end": 449264}, {"type": "date", "start": 449365, "end": 449375}, {"type": "email", "start": 449458, "end": 449487}, {"type": "person", "start": 449801, "end": 449809}, {"type": "phone", "start": 449984, "end": 449995}, {"type": "date", "start": 450096, "end": 450106}, {"type": "email", "start": 450189, "end": 450218}, {"type": "person", "start": 450532, "end": 450540}, {"type": "phone", "start": 450715, "end": 450726}, {"type": "date", "start": 450827, "end": 450837}, {"type": "email", "start": 450920, "end": 450949}, {"type": "person", "start": 451263, "end": 451271}, {"type": "phone", "start": 451446, "end": 451457}, {"type": "date", "start": 451558, "end": 451568}, {"type": "email", "start": 451651, "end": 451680}, {"type": "person", "start": 451994, "end": 452002}, {"type": "phone", "start": 452177, "end": 452188}, {"type": "date", "start": 452289, "end": 452299}, {"type": "email", "start": 452382, "end": 452411}, {"type": "person", "start": 452725, "end": 452733}, {"type": "phone", "start": 452908, "end": 452919}, {"type": "date", "start": 453020, "end": 453030}, {"type": "email", "start": 453113, "end": 453142}, {"type": "person", "start": 453456, "end": 453464}, {"type": "phone", "start": 453639, "end": 453650}, {"type": "date", "start": 453751, "end": 453761}, {"type": "email", "start": 453844, "end": 453873}, {"type": "person", "start": 454187, "end": 454195}, {"type": "phone", "start": 454370, "end": 454381}, {"type": "date", "start": 454482, "end": 454492}, {"type": "email", "start": 454575, "end": 454604}, {"type": "person", "start": 454918, "end": 454926}, {"type": "phone", "start": 455101, "end": 455112}, {"type": "date", "start": 455213, "end": 455223}, {"type": "email", "start": 455306, "end": 455335}, {"type": "person", "start": 455649, "end": 455657}, {"type": "phone", "start": 455832, "end": 455843}, {"type": "date", "start": 455944, "end": 455954}, {"type": "email", "start": 456037, "end": 456066}, {"type": "person", "start": 456380, "end": 456388}, {"type": "phone", "start": 456563, "end": 456574}, {"type": "date", "start": 456675, "end": 456685}, {"type": "email", "start": 456768, "end": 456797}, {"type": "person", "start": 457111, "end": 457119}, {"type": "phone", "start": 457294, "end": 457305}, {"type": "date", "start": 457406, "end": 457416}, {"type": "email", "start": 457499, "end": 457528}, {"type": "person", "start": 457842, "end": 457850}, {"type": "phone", "start": 458025, "end": 458036}, {"type": "date", "start": 458137, "end": 458147}, {"type": "email", "start": 458230, "end": 458259}, {"type": "person", "start": 458573, "end": 458581}, {"type": "phone", "start": 458756, "end": 458767}, {"type": "date", "start": 458868, "end": 458878}, {"type": "email", "start": 458961, "end": 458990}, {"type": "person", "start": 459304, "end": 459312}, {"type": "phone", "start": 459487, "end": 459498}, {"type": "date", "start": 459599, "end": 459609}, {"type": "email", "start": 459692, "end": 459721}, {"type": "person", "start": 460035, "end": 460043}, {"type": "phone", "start": 460218, "end": 460229}, {"type": "date", "start": 460330, "end": 460340}, {"type": "email", "start": 460423, "end": 460452}, {"type": "person", "start": 460766, "end": 460774}, {"type": "phone", "start": 460949, "end": 460960}, {"type": "date", "start": 461061, "end": 461071}, {"type": "email", "start": 461154, "end": 461183}, {"type": "person", "start": 461497, "end": 461505}, {"type": "phone", "start": 461680, "end": 461691}, {"type": "date", "start": 461792, "end": 461802}, {"type": "email", "start": 461885, "end": 461914}, {"type": "person", "start": 462228, "end": 462236}, {"type": "phone", "start": 462411, "end": 462422}, {"type": "date", "start": 462523, "end": 462533}, {"type": "email", "start": 462616, "end": 462645}, {"type": "person", "start": 462959, "end": 462967}, {"type": "phone", "start": 463142, "end": 463153}, {"type": "date", "start": 463254, "end": 463264}, {"type": "email", "start": 463347, "end": 463376}, {"type": "person", "start": 463690, "end": 463698}, {"type": "phone", "start": 463873, "end": 463884}, {"type": "date", "start": 463985, "end": 463995}, {"type": "email", "start": 464078, "end": 464107}, {"type": "person", "start": 464421, "end": 464429}, {"type": "phone", "start": 464604, "end": 464615}, {"type": "date", "start": 464716, "end": 464726}, {"type": "email", "start": 464809, "end": 464838}, {"type": "person", "start": 465152, "end": 465160}, {"type": "phone", "start": 465335, "end": 465346}, {"type": "date", "start": 465447, "end": 465457}, {"type": "email", "start": 465540, "end": 465569}, {"type": "person", "start": 465883, "end": 465891}, {"type": "phone", "start": 466066, "end": 466077}, {"type": "date", "start": 466178, "end": 466188}, {"type": "email", "start": 466271, "end": 466300}, {"type": "person", "start": 466614, "end": 466622}, {"type": "phone", "start": 466797, "end": 466808}, {"type": "date", "start": 466909, "end": 466919}, {"type": "email", "start": 467002, "end": 467031}, {"type": "person", "start": 467345, "end": 467353}, {"type": "phone", "start": 467528, "end": 467539}, {"type": "date", "start": 467640, "end": 467650}, {"type": "email", "start": 467733, "end": 467762}, {"type": "person", "start": 468076, "end": 468084}, {"type": "phone", "start": 468259, "end": 468270}, {"type": "date", "start": 468371, "end": 468381}, {"type": "email", "start": 468464, "end": 468493}, {"type": "person", "start": 468807, "end": 468815}, {"type": "phone", "start": 468990, "end": 469001}, {"type": "date", "start": 469102, "end": 469112}, {"type": "email", "start": 469195, "end": 469224}, {"type": "person", "start": 469538, "end": 469546}, {"type": "phone", "start": 469721, "end": 469732}, {"type": "date", "start": 469833, "end": 469843}, {"type": "email", "start": 469926, "end": 469955}, {"type": "person", "start": 470269, "end": 470277}, {"type": "phone", "start": 470452, "end": 470463}, {"type": "date", "start": 470564, "end": 470574}, {"type": "email", "start": 470657, "end": 470686}, {"type": "person", "start": 471000, "end": 471008}, {"type": "phone", "start": 471183, "end": 471194}, {"type": "date", "start": 471295, "end": 471305}, {"type": "email", "start": 471388, "end": 471417}, {"type": "person", "start": 471731, "end": 471739}, {"type": "phone", "start": 471914, "end": 471925}, {"type": "date", "start": 472026, "end": 472036}, {"type": "email", "start": 472119, "end": 472148}, {"type": "person", "start": 472462, "end": 472470}, {"type": "phone", "start": 472645, "end": 472656}, {"type": "date", "start": 472757, "end": 472767}, {"type": "email", "start": 472850, "end": 472879}, {"type": "person", "start": 473193, "end": 473201}, {"type": "phone", "start": 473376, "end": 473387}, {"type": "date", "start": 473488, "end": 473498}, {"type": "email", "start": 473581, "end": 473610}, {"type": "person", "start": 473924, "end": 473932}, {"type": "phone", "start": 474107, "end": 474118}, {"type": "date", "start": 474219, "end": 474229}, {"type": "email", "start": 474312, "end": 474341}, {"type": "person", "start": 474655, "end": 474663}, {"type": "phone", "start": 474838, "end": 474849}, {"type": "date", "start": 474950, "end": 474960}, {"type": "email", "start": 475043, "end": 475072}, {"type": "person", "start": 475386, "end": 475394}, {"type": "phone", "start": 475569, "end": 475580}, {"type": "date", "start": 475681, "end": 475691}, {"type": "email", "start": 475774, "end": 475803}, {"type": "person", "start": 476117, "end": 476125}, {"type": "phone", "start": 476300, "end": 476311}, {"type": "date", "start": 476412, "end": 476422}, {"type": "email", "start": 476505, "end": 476534}, {"type": "person", "start": 476848, "end": 476856}, {"type": "phone", "start": 477031, "end": 477042}, {"type": "date", "start": 477143, "end": 477153}, {"type": "email", "start": 477236, "end": 477265}, {"type": "person", "start": 477579, "end": 477587}, {"type": "phone", "start": 477762, "end": 477773}, {"type": "date", "start": 477874, "end": 477884}, {"type": "email", "start": 477967, "end": 477996}, {"type": "person", "start": 478310, "end": 478318}, {"type": "phone", "start": 478493, "end": 478504}, {"type": "date", "start": 478605, "end": 478615}, {"type": "email", "start": 478698, "end": 478727}, {"type": "person", "start": 479041, "end": 479049}, {"type": "phone", "start": 479224, "end": 479235}, {"type": "date", "start": 479336, "end": 479346}, {"type": "email", "start": 479429, "end": 479458}, {"type": "person", "start": 479772, "end": 479780}, {"type": "phone", "start": 479955, "end": 479966}, {"type": "date", "start": 480067, "end": 480077}, {"type": "email", "start": 480160, "end": 480189}, {"type": "person", "start": 480503, "end": 480511}, {"type": "phone", "start": 480686, "end": 480697}, {"type": "date", "start": 480798, "end": 480808}, {"type": "email", "start": 480891, "end": 480920}, {"type": "person", "start": 481234, "end": 481242}, {"type": "phone", "start": 481417, "end": 481428}, {"type": "date", "start": 481529, "end": 481539}, {"type": "email", "start": 481622, "end": 481651}, {"type": "person", "start": 481965, "end": 481973}, {"type": "phone", "start": 482148, "end": 482159}, {"type": "date", "start": 482260, "end": 482270}, {"type": "email", "start": 482353, "end": 482382}, {"type": "person", "start": 482696, "end": 482704}, {"type": "phone", "start": 482879, "end": 482890}, {"type": "date", "start": 482991, "end": 483001}, {"type": "email", "start": 483084, "end": 483113}, {"type": "person", "start": 483427, "end": 483435}, {"type": "phone", "start": 483610, "end": 483621}, {"type": "date", "start": 483722, "end": 483732}, {"type": "email", "start": 483815, "end": 483844}, {"type": "person", "start": 484158, "end": 484166}, {"type": "phone", "start": 484341, "end": 484352}, {"type": "date", "start": 484453, "end": 484463}, {"type": "email", "start": 484546, "end": 484575}, {"type": "person", "start": 484889, "end": 484897}, {"type": "phone", "start": 485072, "end": 485083}, {"type": "date", "start": 485184, "end": 485194}, {"type": "email", "start": 485277, "end": 485306}, {"type": "person", "start": 485620, "end": 485628}, {"type": "phone", "start": 485803, "end": 485814}, {"type": "date", "start": 485915, "end": 485925}, {"type": "email", "start": 486008, "end": 486037}, {"type": "person", "start": 486351, "end": 486359}, {"type": "phone", "start": 486534, "end": 486545}, {"type": "date", "start": 486646, "end": 486656}, {"type": "email", "start": 486739, "end": 486768}, {"type": "person", "start": 487082, "end": 487090}, {"type": "phone", "start": 487265, "end": 487276}, {"type": "date", "start": 487377, "end": 487387}, {"type": "email", "start": 487470, "end": 487499}, {"type": "person", "start": 487813, "end": 487821}, {"type": "phone", "start": 487996, "end": 488007}, {"type": "date", "start": 488108, "end": 488118}, {"type": "email", "start": 488201, "end": 488230}, {"type": "person", "start": 488544, "end": 488552}, {"type": "phone", "start": 488727, "end": 488738}, {"type": "date", "start": 488839, "end": 488849}, {"type": "email", "start": 488932, "end": 488961}, {"type": "person", "start": 489275, "end": 489283}, {"type": "phone", "start": 489458, "end": 489469}, {"type": "date", "start": 489570, "end": 489580}, {"type": "email", "start": 489663, "end": 489692}, {"type": "person", "start": 490006, "end": 490014}, {"type": "phone", "start": 490189, "end": 490200}, {"type": "date", "start": 490301, "end": 490311}, {"type": "email", "start": 490394, "end": 490423}, {"type": "person", "start": 490737, "end": 490745}, {"type": "phone", "start": 490920, "end": 490931}, {"type": "date", "start": 491032, "end": 491042}, {"type": "email", "start": 491125, "end": 491154}, {"type": "person", "start": 491468, "end": 491476}, {"type": "phone", "start": 491651, "end": 491662}, {"type": "date", "start": 491763, "end": 491773}, {"type": "email", "start": 491856, "end": 491885}, {"type": "person", "start": 492199, "end": 492207}, {"type": "phone", "start": 492382, "end": 492393}, {"type": "date", "start": 492494, "end": 492504}, {"type": "email", "start": 492587, "end": 492616}, {"type": "person", "start": 492930, "end": 492938}, {"type": "phone", "start": 493113, "end": 493124}, {"type": "date", "start": 493225, "end": 493235}, {"type": "email", "start": 493318, "end": 493347}, {"type": "person", "start": 493661, "end": 493669}, {"type": "phone", "start": 493844, "end": 493855}, {"type": "date", "start": 493956, "end": 493966}, {"type": "email", "start": 494049, "end": 494078}, {"type": "person", "start": 494392, "end": 494400}, {"type": "phone", "start": 494575, "end": 494586}, {"type": "date", "start": 494687, "end": 494697}, {"type": "email", "start": 494780, "end": 494809}, {"type": "person", "start": 495123, "end": 495131}, {"type": "phone", "start": 495306, "end": 495317}, {"type": "date", "start": 495418, "end": 495428}, {"type": "email", "start": 495511, "end": 495540}, {"type": "person", "start": 495854, "end": 495862}, {"type": "phone", "start": 496037, "end": 496048}, {"type": "date", "start": 496149, "end": 496159}, {"type": "email", "start": 496242, "end": 496271}, {"type": "person", "start": 496585, "end": 496593}, {"type": "phone", "start": 496768, "end": 496779}, {"type": "date", "start": 496880, "end": 496890}, {"type": "email", "start": 496973, "end": 497002}, {"type": "person", "start": 497316, "end": 497324}, {"type": "phone", "start": 497499, "end": 497510}, {"type": "date", "start": 497611, "end": 497621}, {"type": "email", "start": 497704, "end": 497733}, {"type": "person", "start": 498047, "end": 498055}, {"type": "phone", "start": 498230, "end": 498241}, {"type": "date", "start": 498342, "end": 498352}, {"type": "email", "start": 498435, "end": 498464}, {"type": "person", "start": 498778, "end": 498786}, {"type": "phone", "start": 498961, "end": 498972}, {"type": "date", "start": 499073, "end": 499083}, {"type": "email", "start": 499166, "end": 499195}, {"type": "person", "start": 499509, "end": 499517}, {"type": "phone", "start": 499692, "end": 499703}, {"type": "date", "start": 499804, "end": 499814}, {"type": "email", "start": 499897, "end": 499926}, {"type": "person", "start": 500240, "end": 500248}, {"type": "phone", "start": 500423, "end": 500434}, {"type": "date", "start": 500535, "end": 500545}, {"type": "email", "start": 500628, "end": 500657}, {"type": "person", "start": 500971, "end": 500979}, {"type": "phone", "start": 501154, "end": 501165}, {"type": "date", "start": 501266, "end": 501276}, {"type": "email", "start": 501359, "end": 501388}, {"type": "person", "start": 501702, "end": 501710}, {"type": "phone", "start": 501885, "end": 501896}, {"type": "date", "start": 501997, "end": 502007}, {"type": "email", "start": 502090, "end": 502119}, {"type": "person", "start": 502433, "end": 502441}, {"type": "phone", "start": 502616, "end": 502627}, {"type": "date", "start": 502728, "end": 502738}, {"type": "email", "start": 502821, "end": 502850}, {"type": "person", "start": 503164, "end": 503172}, {"type": "phone", "start": 503347, "end": 503358}, {"type": "date", "start": 503459, "end": 503469}, {"type": "email", "start": 503552, "end": 503581}, {"type": "person", "start": 503895, "end": 503903}, {"type": "phone", "start": 504078, "end": 504089}, {"type": "date", "start": 504190, "end": 504200}, {"type": "email", "start": 504283, "end": 504312}, {"type": "person", "start": 504626, "end": 504634}, {"type": "phone", "start": 504809, "end": 504820}, {"type": "date", "start": 504921, "end": 504931}, {"type": "email", "start": 505014, "end": 505043}, {"type": "person", "start": 505357, "end": 505365}, {"type": "phone", "start": 505540, "end": 505551}, {"type": "date", "start": 505652, "end": 505662}, {"type": "email", "start": 505745, "end": 505774}, {"type": "person", "start": 506088, "end": 506096}, {"type": "phone", "start": 506271, "end": 506282}, {"type": "date", "start": 506383, "end": 506393}, {"type": "email", "start": 506476, "end": 506505}, {"type": "person", "start": 506819, "end": 506827}, {"type": "phone", "start": 507002, "end": 507013}, {"type": "date", "start": 507114, "end": 507124}, {"type": "email", "start": 507207, "end": 507236}, {"type": "person", "start": 507550, "end": 507558}, {"type": "phone", "start": 507733, "end": 507744}, {"type": "date", "start": 507845, "end": 507855}, {"type": "email", "start": 507938, "end": 507967}, {"type": "person", "start": 508281, "end": 508289}, {"type": "phone", "start": 508464, "end": 508475}, {"type": "date", "start": 508576, "end": 508586}, {"type": "email", "start": 508669, "end": 508698}, {"type": "person", "start": 509012, "end": 509020}, {"type": "phone", "start": 509195, "end": 509206}, {"type": "date", "start": 509307, "end": 509317}, {"type": "email", "start": 509400, "end": 509429}, {"type": "person", "start": 509743, "end": 509751}, {"type": "phone", "start": 509926, "end": 509937}, {"type": "date", "start": 510038, "end": 510048}, {"type": "email", "start": 510131, "end": 510160}, {"type": "person", "start": 510474, "end": 510482}, {"type": "phone", "start": 510657, "end": 510668}, {"type": "date", "start": 510769, "end": 510779}, {"type": "email", "start": 510862, "end": 510891}, {"type": "person", "start": 511205, "end": 511213}, {"type": "phone", "start": 511388, "end": 511399}, {"type": "date", "start": 511500, "end": 511510}, {"type": "email", "start": 511593, "end": 511622}, {"type": "person", "start": 511936, "end": 511944}, {"type": "phone", "start": 512119, "end": 512130}, {"type": "date", "start": 512231, "end": 512241}, {"type": "email", "start": 512324, "end": 512353}, {"type": "person", "start": 512667, "end": 512675}, {"type": "phone", "start": 512850, "end": 512861}, {"type": "date", "start": 512962, "end": 512972}, {"type": "email", "start": 513055, "end": 513084}, {"type": "person", "start": 513398, "end": 513406}, {"type": "phone", "start": 513581, "end": 513592}, {"type": "date", "start": 513693, "end": 513703}, {"type": "email", "start": 513786, "end": 513815}, {"type": "person", "start": 514129, "end": 514137}, {"type": "phone", "start": 514312, "end": 514323}, {"type": "date", "start": 514424, "end": 514434}, {"type": "email", "start": 514517, "end": 514546}, {"type": "person", "start": 514860, "end": 514868}, {"type": "phone", "start": 515043, "end": 515054}, {"type": "date", "start": 515155, "end": 515165}, {"type": "email", "start": 515248, "end": 515277}, {"type": "person", "start": 515591, "end": 515599}, {"type": "phone", "start": 515774, "end": 515785}, {"type": "date", "start": 515886, "end": 515896}, {"type": "email", "start": 515979, "end": 516008}, {"type": "person", "start": 516322, "end": 516330}, {"type": "phone", "start": 516505, "end": 516516}, {"type": "date", "start": 516617, "end": 516627}, {"type": "email", "start": 516710, "end": 516739}, {"type": "person", "start": 517053, "end": 517061}, {"type": "phone", "start": 517236, "end": 517247}, {"type": "date", "start": 517348, "end": 517358}, {"type": "email", "start": 517441, "end": 517470}, {"type": "person", "start": 517784, "end": 517792}, {"type": "phone", "start": 517967, "end": 517978}, {"type": "date", "start": 518079, "end": 518089}, {"type": "email", "start": 518172, "end": 518201}, {"type": "person", "start": 518515, "end": 518523}, {"type": "phone", "start": 518698, "end": 518709}, {"type": "date", "start": 518810, "end": 518820}, {"type": "email", "start": 518903, "end": 518932}, {"type": "person", "start": 519246, "end": 519254}, {"type": "phone", "start": 519429, "end": 519440}, {"type": "date", "start": 519541, "end": 519551}, {"type": "email", "start": 519634, "end": 519663}, {"type": "person", "start": 519977, "end": 519985}, {"type": "phone", "start": 520160, "end": 520171}, {"type": "date", "start": 520272, "end": 520282}, {"type": "email", "start": 520365, "end": 520394}, {"type": "person", "start": 520708, "end": 520716}, {"type": "phone", "start": 520891, "end": 520902}, {"type": "date", "start": 521003, "end": 521013}, {"type": "email", "start": 521096, "end": 521125}, {"type": "person", "start": 521439, "end": 521447}, {"type": "phone", "start": 521622, "end": 521633}, {"type": "date", "start": 521734, "end": 521744}, {"type": "email", "start": 521827, "end": 521856}, {"type": "person", "start": 522170, "end": 522178}, {"type": "phone", "start": 522353, "end": 522364}, {"type": "date", "start": 522465, "end": 522475}, {"type": "email", "start": 522558, "end": 522587}, {"type": "person", "start": 522901, "end": 522909}, {"type": "phone", "start": 523084, "end": 523095}, {"type": "date", "start": 523196, "end": 523206}, {"type": "email", "start": 523289, "end": 523318}, {"type": "person", "start": 523632, "end": 523640}, {"type": "phone", "start": 523815, "end": 523826}, {"type": "date", "start": 523927, "end": 523937}, {"type": "email", "start": 524020, "end": 524049}, {"type": "person", "start": 524363, "end": 524371}, {"type": "phone", "start": 524546, "end": 524557}, {"type": "date", "start": 524658, "end": 524668}, {"type": "email", "start": 524751, "end": 524780}, {"type": "person", "start": 525094, "end": 525102}, {"type": "phone", "start": 525277, "end": 525288}, {"type": "date", "start": 525389, "end": 525399}, {"type": "email", "start": 525482, "end": 525511}, {"type": "person", "start": 525825, "end": 525833}, {"type": "phone", "start": 526008, "end": 526019}, {"type": "date", "start": 526120, "end": 526130}, {"type": "email", "start": 526213, "end": 526242}, {"type": "person", "start": 526556, "end": 526564}, {"type": "phone", "start": 526739, "end": 526750}, {"type": "date", "start": 526851, "end": 526861}, {"type": "email", "start": 526944, "end": 526973}, {"type": "person", "start": 527287, "end": 527295}, {"type": "phone", "start": 527470, "end": 527481}, {"type": "date", "start": 527582, "end": 527592}, {"type": "email", "start": 527675, "end": 527704}, {"type": "person", "start": 528018, "end": 528026}, {"type": "phone", "start": 528201, "end": 528212}, {"type": "date", "start": 528313, "end": 528323}, {"type": "email", "start": 528406, "end": 528435}, {"type": "person", "start": 528749, "end": 528757}, {"type": "phone", "start": 528932, "end": 528943}, {"type": "date", "start": 529044, "end": 529054}, {"type": "email", "start": 529137, "end": 529166}, {"type": "person", "start": 529480, "end": 529488}, {"type": "phone", "start": 529663, "end": 529674}, {"type": "date", "start": 529775, "end": 529785}, {"type": "email", "start": 529868, "end": 529897}, {"type": "person", "start": 530211, "end": 530219}, {"type": "phone", "start": 530394, "end": 530405}, {"type": "date", "start": 530506, "end": 530516}, {"type": "email", "start": 530599, "end": 530628}, {"type": "person", "start": 530942, "end": 530950}, {"type": "phone", "start": 531125, "end": 531136}, {"type": "date", "start": 531237, "end": 531247}, {"type": "email", "start": 531330, "end": 531359}, {"type": "person", "start": 531673, "end": 531681}, {"type": "phone", "start": 531856, "end": 531867}, {"type": "date", "start": 531968, "end": 531978}, {"type": "email", "start": 532061, "end": 532090}, {"type": "person", "start": 532404, "end": 532412}, {"type": "phone", "start": 532587, "end": 532598}, {"type": "date", "start": 532699, "end": 532709}, {"type": "email", "start": 532792, "end": 532821}, {"type": "person", "start": 533135, "end": 533143}, {"type": "phone", "start": 533318, "end": 533329}, {"type": "date", "start": 533430, "end": 533440}, {"type": "email", "start": 533523, "end": 533552}, {"type": "person", "start": 533866, "end": 533874}, {"type": "phone", "start": 534049, "end": 534060}, {"type": "date", "start": 534161, "end": 534171}, {"type": "email", "start": 534254, "end": 534283}, {"type": "person", "start": 534597, "end": 534605}, {"type": "phone", "start": 534780, "end": 534791}, {"type": "date", "start": 534892, "end": 534902}, {"type": "email", "start": 534985, "end": 535014}, {"type": "person", "start": 535328, "end": 535336}, {"type": "phone", "start": 535511, "end": 535522}, {"type": "date", "start": 535623, "end": 535633}, {"type": "email", "start": 535716, "end": 535745}, {"type": "person", "start": 536059, "end": 536067}, {"type": "phone", "start": 536242, "end": 536253}, {"type": "date", "start": 536354, "end": 536364}, {"type": "email", "start": 536447, "end": 536476}, {"type": "person", "start": 536790, "end": 536798}, {"type": "phone", "start": 536973, "end": 536984}, {"type": "date", "start": 537085, "end": 537095}, {"type": "email", "start": 537178, "end": 537207}, {"type": "person", "start": 537521, "end": 537529}, {"type": "phone", "start": 537704, "end": 537715}, {"type": "date", "start": 537816, "end": 537826}, {"type": "email", "start": 537909, "end": 537938}, {"type": "person", "start": 538252, "end": 538260}, {"type": "phone", "start": 538435, "end": 538446}, {"type": "date", "start": 538547, "end": 538557}, {"type": "email", "start": 538640, "end": 538669}, {"type": "person", "start": 538983, "end": 538991}, {"type": "phone", "start": 539166, "end": 539177}, {"type": "date", "start": 539278, "end": 539288}, {"type": "email", "start": 539371, "end": 539400}, {"type": "person", "start": 539714, "end": 539722}, {"type": "phone", "start": 539897, "end": 539908}, {"type": "date", "start": 540009, "end": 540019}, {"type": "email", "start": 540102, "end": 540131}, {"type": "person", "start": 540445, "end": 540453}, {"type": "phone", "start": 540628, "end": 540639}, {"type": "date", "start": 540740, "end": 540750}, {"type": "email", "start": 540833, "end": 540862}, {"type": "person", "start": 541176, "end": 541184}, {"type": "phone", "start": 541359, "end": 541370}, {"type": "date", "start": 541471, "end": 541481}, {"type": "email", "start": 541564, "end": 541593}, {"type": "person", "start": 541907, "end": 541915}, {"type": "phone", "start": 542090, "end": 542101}, {"type": "date", "start": 542202, "end": 542212}, {"type": "email", "start": 542295, "end": 542324}, {"type": "person", "start": 542638, "end": 542646}, {"type": "phone", "start": 542821, "end": 542832}, {"type": "date", "start": 542933, "end": 542943}, {"type": "email", "start": 543026, "end": 543055}, {"type": "person", "start": 543369, "end": 543377}, {"type": "phone", "start": 543552, "end": 543563}, {"type": "date", "start": 543664, "end": 543674}, {"type": "email", "start": 543757, "end": 543786}, {"type": "person", "start": 544100, "end": 544108}, {"type": "phone", "start": 544283, "end": 544294}, {"type": "date", "start": 544395, "end": 544405}, {"type": "email", "start": 544488, "end": 544517}, {"type": "person", "start": 544831, "end": 544839}, {"type": "phone", "start": 545014, "end": 545025}, {"type": "date", "start": 545126, "end": 545136}, {"type": "email", "start": 545219, "end": 545248}, {"type": "person", "start": 545562, "end": 545570}, {"type": "phone", "start": 545745, "end": 545756}, {"type": "date", "start": 545857, "end": 545867}, {"type": "email", "start": 545950, "end": 545979}, {"type": "person", "start": 546293, "end": 546301}, {"type": "phone", "start": 546476, "end": 546487}, {"type": "date", "start": 546588, "end": 546598}, {"type": "email", "start": 546681, "end": 546710}, {"type": "person", "start": 547024, "end": 547032}, {"type": "phone", "start": 547207, "end": 547218}, {"type": "date", "start": 547319, "end": 547329}, {"type": "email", "start": 547412, "end": 547441}, {"type": "person", "start": 547755, "end": 547763}, {"type": "phone", "start": 547938, "end": 547949}, {"type": "date", "start": 548050, "end": 548060}, {"type": "email", "start": 548143, "end": 548172}, {"type": "person", "start": 548486, "end": 548494}, {"type": "phone", "start": 548669, "end": 548680}, {"type": "date", "start": 548781, "end": 548791}, {"type": "email", "start": 548874, "end": 548903}, {"type": "person", "start": 549217, "end": 549225}, {"type": "phone", "start": 549400, "end": 549411}, {"type": "date", "start": 549512, "end": 549522}, {"type": "email", "start": 549605, "end": 549634}, {"type": "person", "start": 549948, "end": 549956}, {"type": "phone", "start": 550131, "end": 550142}, {"type": "date", "start": 550243, "end": 550253}, {"type": "email", "start": 550336, "end": 550365}, {"type": "person", "start": 550679, "end": 550687}, {"type": "phone", "start": 550862, "end": 550873}, {"type": "date", "start": 550974, "end": 550984}, {"type": "email", "start": 551067, "end": 551096}, {"type": "person", "start": 551410, "end": 551418}, {"type": "phone", "start": 551593, "end": 551604}, {"type": "date", "start": 551705, "end": 551715}, {"type": "email", "start": 551798, "end": 551827}, {"type": "person", "start": 552141, "end": 552149}, {"type": "phone", "start": 552324, "end": 552335}, {"type": "date", "start": 552436, "end": 552446}, {"type": "email", "start": 552529, "end": 552558}, {"type": "person", "start": 552872, "end": 552880}, {"type": "phone", "start": 553055, "end": 553066}, {"type": "date", "start": 553167, "end": 553177}, {"type": "email", "start": 553260, "end": 553289}, {"type": "person", "start": 553603, "end": 553611}, {"type": "phone", "start": 553786, "end": 553797}, {"type": "date", "start": 553898, "end": 553908}, {"type": "email", "start": 553991, "end": 554020}, {"type": "person", "start": 554334, "end": 554342}, {"type": "phone", "start": 554517, "end": 554528}, {"type": "date", "start": 554629, "end": 554639}, {"type": "email", "start": 554722, "end": 554751}, {"type": "person", "start": 555065, "end": 555073}, {"type": "phone", "start": 555248, "end": 555259}, {"type": "date", "start": 555360, "end": 555370}, {"type": "email", "start": 555453, "end": 555482}, {"type": "person", "start": 555796, "end": 555804}, {"type": "phone", "start": 555979, "end": 555990}, {"type": "date", "start": 556091, "end": 556101}, {"type": "email", "start": 556184, "end": 556213}, {"type": "person", "start": 556527, "end": 556535}, {"type": "phone", "start": 556710, "end": 556721}, {"type": "date", "start": 556822, "end": 556832}, {"type": "email", "start": 556915, "end": 556944}, {"type": "person", "start": 557258, "end": 557266}, {"type": "phone", "start": 557441, "end": 557452}, {"type": "date", "start": 557553, "end": 557563}, {"type": "email", "start": 557646, "end": 557675}, {"type": "person", "start": 557989, "end": 557997}, {"type": "phone", "start": 558172, "end": 558183}, {"type": "date", "start": 558284, "end": 558294}, {"type": "email", "start": 558377, "end": 558406}, {"type": "person", "start": 558720, "end": 558728}, {"type": "phone", "start": 558903, "end": 558914}, {"type": "date", "start": 559015, "end": 559025}, {"type": "email", "start": 559108, "end": 559137}, {"type": "person", "start": 559451, "end": 559459}, {"type": "phone", "start": 559634, "end": 559645}, {"type": "date", "start": 559746, "end": 559756}, {"type": "email", "start": 559839, "end": 559868}, {"type": "person", "start": 560182, "end": 560190}, {"type": "phone", "start": 560365, "end": 560376}, {"type": "date", "start": 560477, "end": 560487}, {"type": "email", "start": 560570, "end": 560599}, {"type": "person", "start": 560913, "end": 560921}, {"type": "phone", "start": 561096, "end": 561107}, {"type": "date", "start": 561208, "end": 561218}, {"type": "email", "start": 561301, "end": 561330}, {"type": "person", "start": 561644, "end": 561652}, {"type": "phone", "start": 561827, "end": 561838}, {"type": "date", "start": 561939, "end": 561949}, {"type": "email", "start": 562032, "end": 562061}, {"type": "person", "start": 562375, "end": 562383}, {"type": "phone", "start": 562558, "end": 562569}, {"type": "date", "start": 562670, "end": 562680}, {"type": "email", "start": 562763, "end": 562792}, {"type": "person", "start": 563106, "end": 563114}, {"type": "phone", "start": 563289, "end": 563300}, {"type": "date", "start": 563401, "end": 563411}, {"type": "email", "start": 563494, "end": 563523}, {"type": "person", "start": 563837, "end": 563845}, {"type": "phone", "start": 564020, "end": 564031}, {"type": "date", "start": 564132, "end": 564142}, {"type": "email", "start": 564225, "end": 564254}, {"type": "person", "start": 564568, "end": 564576}, {"type": "phone", "start": 564751, "end": 564762}, {"type": "date", "start": 564863, "end": 564873}, {"type": "email", "start": 564956, "end": 564985}, {"type": "person", "start": 565299, "end": 565307}, {"type": "phone", "start": 565482, "end": 565493}, {"type": "date", "start": 565594, "end": 565604}, {"type": "email", "start": 565687, "end": 565716}, {"type": "person", "start": 566030, "end": 566038}, {"type": "phone", "start": 566213, "end": 566224}, {"type": "date", "start": 566325, "end": 566335}, {"type": "email", "start": 566418, "end": 566447}, {"type": "person", "start": 566761, "end": 566769}, {"type": "phone", "start": 566944, "end": 566955}, {"type": "date", "start": 567056, "end": 567066}, {"type": "email", "start": 567149, "end": 567178}, {"type": "person", "start": 567492, "end": 567500}, {"type": "phone", "start": 567675, "end": 567686}, {"type": "date", "start": 567787, "end": 567797}, {"type": "email", "start": 567880, "end": 567909}, {"type": "person", "start": 568223, "end": 568231}, {"type": "phone", "start": 568406, "end": 568417}, {"type": "date", "start": 568518, "end": 568528}, {"type": "email", "start": 568611, "end": 568640}, {"type": "person", "start": 568954, "end": 568962}, {"type": "phone", "start": 569137, "end": 569148}, {"type": "date", "start": 569249, "end": 569259}, {"type": "email", "start": 569342, "end": 569371}, {"type": "person", "start": 569685, "end": 569693}, {"type": "phone", "start": 569868, "end": 569879}, {"type": "date", "start": 569980, "end": 569990}, {"type": "email", "start": 570073, "end": 570102}, {"type": "person", "start": 570416, "end": 570424}, {"type": "phone", "start": 570599, "end": 570610}, {"type": "date", "start": 570711, "end": 570721}, {"type": "email", "start": 570804, "end": 570833}, {"type": "person", "start": 571147, "end": 571155}, {"type": "phone", "start": 571330, "end": 571341}, {"type": "date", "start": 571442, "end": 571452}, {"type": "email", "start": 571535, "end": 571564}, {"type": "person", "start": 571878, "end": 571886}, {"type": "phone", "start": 572061, "end": 572072}, {"type": "date", "start": 572173, "end": 572183}, {"type": "email", "start": 572266, "end": 572295}, {"type": "person", "start": 572609, "end": 572617}, {"type": "phone", "start": 572792, "end": 572803}, {"type": "date", "start": 572904, "end": 572914}, {"type": "email", "start": 572997, "end": 573026}, {"type": "person", "start": 573340, "end": 573348}, {"type": "phone", "start": 573523, "end": 573534}, {"type": "date", "start": 573635, "end": 573645}, {"type": "email", "start": 573728, "end": 573757}, {"type": "person", "start": 574071, "end": 574079}, {"type": "phone", "start": 574254, "end": 574265}, {"type": "date", "start": 574366, "end": 574376}, {"type": "email", "start": 574459, "end": 574488}, {"type": "person", "start": 574802, "end": 574810}, {"type": "phone", "start": 574985, "end": 574996}, {"type": "date", "start": 575097, "end": 575107}, {"type": "email", "start": 575190, "end": 575219}, {"type": "person", "start": 575533, "end": 575541}, {"type": "phone", "start": 575716, "end": 575727}, {"type": "date", "start": 575828, "end": 575838}, {"type": "email", "start": 575921, "end": 575950}, {"type": "person", "start": 576264, "end": 576272}, {"type": "phone", "start": 576447, "end": 576458}, {"type": "date", "start": 576559, "end": 576569}, {"type": "email", "start": 576652, "end": 576681}, {"type": "person", "start": 576995, "end": 577003}, {"type": "phone", "start": 577178, "end": 577189}, {"type": "date", "start": 577290, "end": 577300}, {"type": "email", "start": 577383, "end": 577412}, {"type": "person", "start": 577726, "end": 577734}, {"type": "phone", "start": 577909, "end": 577920}, {"type": "date", "start": 578021, "end": 578031}, {"type": "email", "start": 578114, "end": 578143}, {"type": "person", "start": 578457, "end": 578465}, {"type": "phone", "start": 578640, "end": 578651}, {"type": "date", "start": 578752, "end": 578762}, {"type": "email", "start": 578845, "end": 578874}, {"type": "person", "start": 579188, "end": 579196}, {"type": "phone", "start": 579371, "end": 579382}, {"type": "date", "start": 579483, "end": 579493}, {"type": "email", "start": 579576, "end": 579605}, {"type": "person", "start": 579919, "end": 579927}, {"type": "phone", "start": 580102, "end": 580113}, {"type": "date", "start": 580214, "end": 580224}, {"type": "email", "start": 580307, "end": 580336}, {"type": "person", "start": 580650, "end": 580658}, {"type": "phone", "start": 580833, "end": 580844}, {"type": "date", "start": 580945, "end": 580955}, {"type": "email", "start": 581038, "end": 581067}, {"type": "person", "start": 581381, "end": 581389}, {"type": "phone", "start": 581564, "end": 581575}, {"type": "date", "start": 581676, "end": 581686}, {"type": "email", "start": 581769, "end": 581798}, {"type": "person", "start": 582112, "end": 582120}, {"type": "phone", "start": 582295, "end": 582306}, {"type": "date", "start": 582407, "end": 582417}, {"type": "email", "start": 582500, "end": 582529}, {"type": "person", "start": 582843, "end": 582851}, {"type": "phone", "start": 583026, "end": 583037}, {"type": "date", "start": 583138, "end": 583148}, {"type": "email", "start": 583231, "end": 583260}, {"type": "person", "start": 583574, "end": 583582}, {"type": "phone", "start": 583757, "end": 583768}, {"type": "date", "start": 583869, "end": 583879}, {"type": "email", "start": 583962, "end": 583991}, {"type": "person", "start": 584305, "end": 584313}, {"type": "phone", "start": 584488, "end": 584499}, {"type": "date", "start": 584600, "end": 584610}, {"type": "email", "start": 584693, "end": 584722}, {"type": "person", "start": 585036, "end": 585044}, {"type": "phone", "start": 585219, "end": 585230}, {"type": "date", "start": 585331, "end": 585341}, {"type": "email", "start": 585424, "end": 585453}, {"type": "person", "start": 585767, "end": 585775}, {"type": "phone", "start": 585950, "end": 585961}, {"type": "date", "start": 586062, "end": 586072}, {"type": "email", "start": 586155, "end": 586184}, {"type": "person", "start": 586498, "end": 586506}, {"type": "phone", "start": 586681, "end": 586692}, {"type": "date", "start": 586793, "end": 586803}, {"type": "email", "start": 586886, "end": 586915}, {"type": "person", "start": 587229, "end": 587237}, {"type": "phone", "start": 587412, "end": 587423}, {"type": "date", "start": 587524, "end": 587534}, {"type": "email", "start": 587617, "end": 587646}, {"type": "person", "start": 587960, "end": 587968}, {"type": "phone", "start": 588143, "end": 588154}, {"type": "date", "start": 588255, "end": 588265}, {"type": "email", "start": 588348, "end": 588377}, {"type": "person", "start": 588691, "end": 588699}, {"type": "phone", "start": 588874, "end": 588885}, {"type": "date", "start": 588986, "end": 588996}, {"type": "email", "start": 589079, "end": 589108}, {"type": "person", "start": 589422, "end": 589430}, {"type": "phone", "start": 589605, "end": 589616}, {"type": "date", "start": 589717, "end": 589727}, {"type": "email", "start": 589810, "end": 589839}, {"type": "person", "start": 590153, "end": 590161}, {"type": "phone", "start": 590336, "end": 590347}, {"type": "date", "start": 590448, "end": 590458}, {"type": "email", "start": 590541, "end": 590570}, {"type": "person", "start": 590884, "end": 590892}, {"type": "phone", "start": 591067, "end": 591078}, {"type": "date", "start": 591179, "end": 591189}, {"type": "email", "start": 591272, "end": 591301}, {"type": "person", "start": 591615, "end": 591623}, {"type": "phone", "start": 591798, "end": 591809}, {"type": "date", "start": 591910, "end": 591920}, {"type": "email", "start": 592003, "end": 592032}, {"type": "person", "start": 592346, "end": 592354}, {"type": "phone", "start": 592529, "end": 592540}, {"type": "date", "start": 592641, "end": 592651}, {"type": "email", "start": 592734, "end": 592763}, {"type": "person", "start": 593077, "end": 593085}, {"type": "phone", "start": 593260, "end": 593271}, {"type": "date", "start": 593372, "end": 593382}, {"type": "email", "start": 593465, "end": 593494}, {"type": "person", "start": 593808, "end": 593816}, {"type": "phone", "start": 593991, "end": 594002}, {"type": "date", "start": 594103, "end": 594113}, {"type": "email", "start": 594196, "end": 594225}, {"type": "person", "start": 594539, "end": 594547}, {"type": "phone", "start": 594722, "end": 594733}, {"type": "date", "start": 594834, "end": 594844}, {"type": "email", "start": 594927, "end": 594956}, {"type": "person", "start": 595270, "end": 595278}, {"type": "phone", "start": 595453, "end": 595464}, {"type": "date", "start": 595565, "end": 595575}, {"type": "email", "start": 595658, "end": 595687}, {"type": "person", "start": 596001, "end": 596009}, {"type": "phone", "start": 596184, "end": 596195}, {"type": "date", "start": 596296, "end": 596306}, {"type": "email", "start": 596389, "end": 596418}, {"type": "person", "start": 596732, "end": 596740}, {"type": "phone", "start": 596915, "end": 596926}, {"type": "date", "start": 597027, "end": 597037}, {"type": "email", "start": 597120, "end": 597149}, {"type": "person", "start": 597463, "end": 597471}, {"type": "phone", "start": 597646, "end": 597657}, {"type": "date", "start": 597758, "end": 597768}, {"type": "email", "start": 597851, "end": 597880}, {"type": "person", "start": 598194, "end": 598202}, {"type": "phone", "start": 598377, "end": 598388}, {"type": "date", "start": 598489, "end": 598499}, {"type": "email", "start": 598582, "end": 598611}]} \ No newline at end of file diff --git a/demo/traces/gpu/engines.json b/demo/traces/gpu/engines.json new file mode 100644 index 0000000..024bbf0 --- /dev/null +++ b/demo/traces/gpu/engines.json @@ -0,0 +1,17 @@ +[ + { + "key": "ours", + "label": "privacy-filter.cpp", + "device": "GPU · Vulkan", + "tps": 81105, + "hero": true + }, + { + "key": "hf", + "label": "HF Transformers", + "device": "GPU · CUDA", + "tps": 14154, + "hero": false, + "oom_at_tokens": 16384 + } +] \ No newline at end of file