release: v0.2.0 repository hygiene, CI, and docs sync

Stop tracking personal workflow artifacts at repo root, add CI and MIT
license, align README and agent skills with artifacts/ defaults, and
enable Ruff in dev/CI so releases are verifiable without local-only runs.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
windyboy
2026-06-01 15:32:03 +08:00
co-authored by Claude Sonnet 4.5 Cursor
parent e70bd35498
commit 6f0df5a774
101 changed files with 1451 additions and 653105 deletions
+23
View File
@@ -0,0 +1,23 @@
name: Tests
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- name: Install package and dev dependencies
run: uv pip install -e ".[dev]"
- name: Ruff
run: uv run ruff check src tests
- name: Run tests
run: uv run pytest -q
+7
View File
@@ -51,3 +51,10 @@ Thumbs.db
# Generated workflow artifacts
artifacts/
runs/
# Legacy root-level workflow outputs (defaults are under artifacts/)
/inventory*.csv
/identities*.json
/analysis*.json
/plan*.json
/plan*_manual_review.csv
+8 -5
View File
@@ -9,9 +9,10 @@
## Build, Test, and Development Commands
- `uv pip install -e .` installs the package in editable mode.
- `uv pip install -e ".[dev]"` installs dev dependencies (`pytest`, `hypothesis`).
- `pytest` runs the full test suite.
- `pytest tests/test_logging.py` runs a targeted test file during iteration.
- `uv pip install -e ".[dev]"` installs dev dependencies (`pytest`, `hypothesis`, `pytest-cov`, `ruff`).
- `uv run pytest -q` runs the full test suite.
- `uv run pytest tests/test_logging.py` runs a targeted test file during iteration.
- `uv run ruff check src tests` runs the linter (also in CI).
- `vlm --help` verifies CLI startup and available commands.
## Coding Style & Naming Conventions
@@ -19,7 +20,8 @@
- Modules/functions/variables: `snake_case`; classes: `PascalCase`; constants: `UPPER_SNAKE_CASE`.
- Keep modules focused on a single responsibility; prefer small pure helpers in domain modules.
- Add type hints for public functions and non-trivial internal APIs.
- No formatter/linter is currently enforced in `pyproject.toml`; keep style consistent with existing files.
- Use absolute imports in `src/vlm/`: `from vlm.module import ...` (avoid new relative imports).
- Ruff (`E`, `F`, `I`) is configured in `pyproject.toml`; CI runs `ruff check src tests`.
## Testing Guidelines
- Framework: `pytest`; property-based tests use `hypothesis`.
@@ -39,5 +41,6 @@
## Documentation baseline
- Updated to reflect refactor results as of 2026-04-07.
- Updated to reflect release 0.2.0 baseline as of 2026-06-01.
- Canonical release notes are tracked in `CHANGELOG.md`.
- Default workflow artifacts: `artifacts/` (do not commit generated CSV/JSON).
+11
View File
@@ -1,5 +1,16 @@
# Changelog
## 0.2.0 — 2026-06-01
### Repository hygiene and release discipline
- Stopped tracking personal workflow artifacts at repository root (~34 MB); expanded `.gitignore` for legacy root CSV/JSON patterns.
- Added GitHub Actions workflow running `uv run pytest -q` on Python 3.103.12.
- Added MIT `LICENSE`, `CONTRIBUTING.md` (semver policy), and packaging metadata in `pyproject.toml` (version `0.2.0`).
- Synced README and `skills/vlm-library-workflow/` to `artifacts/` defaults and the full `review-plan``apply-review` cycle.
- Standardized `executor.py` imports to `vlm.*`; added Ruff and `pytest-cov` to `[dev]` optional dependencies.
- Verification: `uv run pytest -q`**517 passed**.
## 2026-05-21
### Functional code simplification
+2 -1
View File
@@ -1,7 +1,8 @@
# CLAUDE.md
## Documentation Status
- Synchronized with post-refactor baseline on 2026-04-07 (see `CHANGELOG.md`).
- Synchronized with release 0.2.0 baseline on 2026-06-01 (see `CHANGELOG.md`).
- Default workflow outputs: `artifacts/` — do not commit generated CSV/JSON at repo root.
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
+33
View File
@@ -0,0 +1,33 @@
# Contributing
## Versioning
This project follows [Semantic Versioning](https://semver.org/):
- **PATCH** — bug fixes, documentation-only changes
- **MINOR** — backward-compatible features (new commands, options, schema fields)
- **MAJOR** — breaking changes to CLI contracts, config keys, or artifact schemas
Release notes and test baselines are recorded in [`CHANGELOG.md`](CHANGELOG.md).
## Development setup
```bash
uv pip install -e ".[dev]"
uv run pytest -q
```
Optional Textual UI: `uv pip install -e ".[tui]"`.
## Pull requests
1. Write or extend tests for behavior changes.
2. Run `uv run pytest -q` locally (CI runs the same).
3. Keep commits focused; use imperative subject lines.
4. Do not commit personal library paths, workflow artifacts (`artifacts/`, root CSV/JSON), or API keys from `~/.vlm/config.yaml`.
## Code style
- Python 3.10+, 4-space indentation, type hints on public APIs.
- Use absolute imports in package code: `from vlm.module import ...` (not relative imports in new code).
- `uv run ruff check src tests` when Ruff is installed via `[dev]`.
+446
View File
@@ -0,0 +1,446 @@
# VLM Fix Plan
**Derived from:** [`ISSUES_REPORT.md`](ISSUES_REPORT.md)
**Created:** 2026-06-01
**Verified baseline:** `uv run pytest -q` → 517 passed; 36 tracked workflow artifacts (~34 MB) at repo root
This plan turns the issues report into an ordered, shippable sequence of work. Each phase ends with verifiable acceptance criteria before starting the next.
---
## Goals
1. **Stop leaking personal library data** via Git (P0).
2. **Make quality enforceable** with CI and clear OSS metadata (P1).
3. **Align all human and agent docs** with `artifacts/` defaults and the full review cycle (P1P2).
4. **Defer structural refactors** until they ride on feature work (P2P3).
## Non-goals (this plan)
- Anime parsing (ISSUE-012), quarantine category expansion (ISSUE-013), configurable parser patterns (ISSUE-014).
- Splitting `planner.py` / `plan_review.py` (ISSUE-010) unless already editing those areas.
- Full `cli.py` slim-down (ISSUE-006) — optional stretch after Phase 3.
- Git history rewrite (`git filter-repo`) unless the remote was public and retention policy requires it.
## Principles
- **One concern per PR** where possible (hygiene, CI, license, docs).
- **No behavior changes** in Phases 13 unless required for tests or docs accuracy.
- **Synthetic fixtures only** under `tests/` — never commit real library paths again.
- **CHANGELOG** is the canonical record for test counts and release notes.
---
## Phase overview
| Phase | Focus | Issues | Est. effort | Depends on |
|-------|--------|--------|-------------|------------|
| **0** | Repository hygiene | ISSUE-001 | 12 h | — |
| **1** | CI + release metadata | ISSUE-002, ISSUE-003, ISSUE-005 | 24 h | Phase 0 |
| **2** | Documentation & skills sync | ISSUE-004, ISSUE-009 | 35 h | Phase 1 (optional: parallel after 0) |
| **3** | Operator & style guidance | ISSUE-007, ISSUE-008 | 23 h | Phase 1 |
| **4** | DX tooling (stretch) | ISSUE-011 | 23 h | Phase 1 |
| **5** | Maintainability (opportunistic) | ISSUE-006, ISSUE-010 | As needed | Anytime |
```mermaid
flowchart LR
P0[Phase 0 Hygiene] --> P1[Phase 1 CI and License]
P0 --> P2[Phase 2 Docs]
P1 --> P2
P1 --> P3[Phase 3 Ops docs]
P1 --> P4[Phase 4 Ruff optional]
P5[Phase 5 CLI split] -.->|when touching CLI| P1
```
---
## Phase 0 — Repository hygiene (P0)
**Issue:** ISSUE-001
**Risk if skipped:** Privacy exposure, bloated clones, agents/users picking stale root `plan.json` / `identities.json`.
### Tasks
1. **Expand `.gitignore`** (repository root only — use leading `/`):
```gitignore
# Legacy root-level workflow outputs (defaults are under artifacts/)
/inventory*.csv
/identities*.json
/analysis*.json
/plan*.json
/plan*_manual_review.csv
```
Keep existing `artifacts/` and `runs/` entries.
2. **Stop tracking workflow artifacts** (keep files on disk for local use if desired):
```bash
git ls-files '*.json' '*.csv' \
| grep -v -E 'mcp\.json|markdownlint' \
| xargs git rm --cached
```
Do **not** remove `.kiro/settings/mcp.json` or `.markdownlint.json`.
3. **Add minimal synthetic fixtures** (only if a future test needs committed samples):
- `tests/fixtures/inventory_mini.csv` — 23 rows, fake paths (`/tmp/vlm-fixture/...`).
- `tests/fixtures/identities_mini.json` — v1 or v2 schema, 1 movie + 1 series.
- `tests/fixtures/plan_mini.json` — 12 `FileOperation` entries, no real paths.
Current tests use `tmp_path` and `artifacts/` defaults; **fixtures are optional** unless you add integration tests that read committed files.
4. **README — Artifacts section** (short):
- Default outputs: `artifacts/inventory.csv`, `identities.json`, `analysis.json`, `plan.json`, `plan_manual_review.csv`.
- Do not commit generated CSV/JSON at repo root or under `artifacts/`.
- `workspace_dir` / `--output` overrides still write locally; same rule applies.
5. **CHANGELOG** entry: “Remove tracked personal workflow artifacts from Git; expand root `.gitignore`.”
### Acceptance criteria
- [ ] `git ls-files '*.json' '*.csv'` lists only `.kiro/settings/mcp.json` and `.markdownlint.json` (or project-intentional config JSON).
- [ ] `du` of tracked workflow artifacts → ~0 (was ~34 MB).
- [ ] `uv run pytest -q` still passes (517).
- [ ] Fresh clone + `vlm scan` writes under `artifacts/`, not repo root.
### PR suggestion
- **Title:** `[P0] Stop tracking root workflow artifacts and expand .gitignore`
- **Label:** `priority:p0`, `type:security`
### History rewrite (optional, separate decision)
- Use `git filter-repo` **only if** the remote was public and policy requires purging paths from history.
- Coordinate with anyone who cloned the repo; force-push is disruptive.
- Default for private solo repos: **cached remove + ignore is enough** going forward.
---
## Phase 1 — CI, license, versioning (P1)
**Issues:** ISSUE-002, ISSUE-003, ISSUE-005
### 1A — Continuous integration (ISSUE-002)
**File:** `.github/workflows/test.yml`
```yaml
name: Tests
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- run: uv pip install -e ".[dev]"
- run: uv run pytest -q
```
**Tasks**
1. Add workflow above (adjust default branch name if not `main`).
2. Pin `uv` / use `setup-uv` with cache if desired (optional follow-up).
3. README: optional CI badge after first green run.
**Acceptance criteria**
- [ ] PR and push to default branch run full suite.
- [ ] Failure blocks merge (branch protection — configure on GitHub).
**PR:** `[P1] Add GitHub Actions workflow for pytest`
---
### 1B — License and project metadata (ISSUE-003)
**Tasks**
1. Choose license (recommend **MIT** for a personal CLI tool unless you need patent grant → Apache-2.0).
2. Add `LICENSE` with copyright year and holder name.
3. Update `pyproject.toml`:
```toml
license = { text = "MIT" }
# or license = "MIT" depending on PEP 621 style used
authors = [
{ name = "Your Name", email = "you@example.com" },
]
[project.urls]
Homepage = "https://github.com/<owner>/dl-organizer"
Repository = "https://github.com/<owner>/dl-organizer"
Issues = "https://github.com/<owner>/dl-organizer/issues"
```
4. Replace README placeholders:
- License section → link to `LICENSE`.
- Remove `[Add your license here]`.
- Fix `yourusername/video-library-manager` URLs to real repo path (`dl-organizer` or rename consistently).
**Acceptance criteria**
- [ ] `LICENSE` present; README and `pyproject.toml` agree.
- [ ] No placeholder GitHub URLs in README.
**PR:** `[P1] Add LICENSE and fix packaging metadata`
---
### 1C — Versioning policy (ISSUE-005)
**Tasks**
1. Add `CONTRIBUTING.md` (or README subsection) — **semver** for this project:
- **PATCH:** fixes, docs-only.
- **MINOR:** new commands, backward-compatible behavior.
- **MAJOR:** breaking config/schema/CLI contracts.
2. Bump `version` in `pyproject.toml` to **`0.2.0`** when Phase 0 + 1 land (signals “repo is safe to share”).
3. CHANGELOG section `## 0.2.0` summarizing hygiene + CI + license.
**Acceptance criteria**
- [ ] Version documented; `0.2.0` tagged or noted in CHANGELOG when releasing.
**PR:** Can merge with 1B or as a one-line bump in the hygiene PR.
---
## Phase 2 — Documentation and skills sync (P1/P2)
**Issues:** ISSUE-004, ISSUE-009
### Single source of truth
| Topic | Canonical location |
|-------|---------------------|
| Test count / release notes | `CHANGELOG.md` (latest entry) |
| Agent + contributor commands | `CLAUDE.md`, `AGENTS.md` (keep in sync) |
| End-user workflow | `README.md` (link to skills for agents) |
| Cursor/Codex skill | `skills/vlm-library-workflow/` |
Add to README top or Development section:
> **Documentation status:** See latest entry in [`CHANGELOG.md`](CHANGELOG.md) (currently 517 tests, 2026-05-21).
### README fixes (ISSUE-009)
1. **Development / testing** — standardize on:
```bash
uv run pytest -q
uv run pytest tests/test_scanner.py -v
```
2. **Coverage** — either:
- Add `pytest-cov` to `[project.optional-dependencies]` `dev`, and document `uv run pytest --cov=vlm`, **or**
- Remove `--cov=vlm` from README if coverage is not supported.
3. **Project structure tree** — add missing modules:
- `cli_helpers.py`, `plan_review.py`, `plan_render.py`, `plan_structure_preview.py`
- `review_display.py`, `review_tui.py`, `transaction.py`
- `commands/review_plan.py`, `report.py`, `quarantine_cmd.py`, `state_cmd.py`, `config_cmd.py`
4. **Remove broken skill reference** — delete or replace `activate_skill vlm-expert` with `vlm-library-workflow` (skill lives under `skills/vlm-library-workflow/`).
5. **Workflow section** — ensure human-in-the-loop steps are visible:
```text
scan → parse → enrich → analyze → plan → review-plan → apply-review → execute (dry-run) → execute --confirm
```
### Skills update (`skills/vlm-library-workflow/`)
1. Set **Documentation Status** to **2026-06-01** (or current release date).
2. Replace all root paths with `artifacts/` defaults matching `cli.py` help strings.
3. Update **Workflow Order** to include:
- `vlm review-plan` (and `--tui` as optional)
- `vlm apply-review` before `execute --confirm`
4. Sync `references/command-recipes.md`, `workflow.md`, `cli-reference.md` in the same pass.
5. Mention: never commit `artifacts/` or root CSV/JSON outputs.
### Agent doc alignment (ISSUE-004)
- `CLAUDE.md` / `AGENTS.md`: confirm all example commands use `uv run` and `artifacts/` paths.
- Remove duplicate long command lists from README if desired — link to `CLAUDE.md` instead (optional trim).
### Acceptance criteria
- [ ] Grep for root `inventory.csv` in `skills/` and active docs → 0 (except “do not use at root” warnings).
- [ ] Skill workflow includes `review-plan` and `apply-review`.
- [ ] README tree matches `src/vlm/*.py` layout.
- [ ] No reference to non-existent `vlm-expert` skill.
**PR:** `[P1] Sync README and vlm-library-workflow to artifacts/ baseline`
---
## Phase 3 — Operations and import consistency (P2)
**Issues:** ISSUE-007, ISSUE-008
### 3A — Import style (ISSUE-007)
**Decision:** Absolute imports `from vlm.*` for package code (match `planner.py`, `commands/`).
**Tasks**
1. Convert `executor.py` relative imports to absolute.
2. Add one line to `AGENTS.md`: “Use `from vlm.module import ...` in `src/vlm/`; no new relative imports.”
3. Run full test suite.
**Acceptance criteria**
- [ ] `executor.py` uses `vlm.*` only.
- [ ] AGENTS.md documents the rule.
**PR:** `[P2] Standardize executor imports to vlm.*`
---
### 3B — Enrichment operations (ISSUE-008)
**Tasks**
1. README subsection **Enrichment / TMDB**:
- API key in `~/.vlm/config.yaml` — do not commit config or paste keys in issues.
- `enrichment.max_concurrency` default (6): used by scanner ffprobe pool and enrichment workers.
- TMDB rate limits: link to TMDB API terms; recommend starting with concurrency 24 on large libraries.
- No built-in exponential backoff today — expect transient failures on bulk runs.
2. Optional follow-up (separate issue): shared retry helper in `providers/`.
**Acceptance criteria**
- [ ] Operator can read README before `vlm enrich` on 1000+ titles without guessing concurrency impact.
**PR:** `[P2] Document TMDB concurrency and secrets handling`
---
## Phase 4 — Developer experience (P3, stretch)
**Issue:** ISSUE-011
**Depends on:** Phase 1 CI
### Tasks
1. Add `[tool.ruff]` to `pyproject.toml` — target `src/vlm`, `tests`; select sensible rules (E, F, I).
2. Add Ruff to `dev` optional deps; CI step: `uv run ruff check src tests`.
3. Fix or noqa only clear violations in one pass (avoid huge unrelated diff).
4. Optional: `mypy` on `src/vlm` with gradual typing — defer if noisy.
**Acceptance criteria**
- [ ] CI fails on new Ruff violations in `src/` and `tests/`.
**PR:** `[P3] Add Ruff lint to dev deps and CI`
---
## Phase 5 — Maintainability (opportunistic)
**Issues:** ISSUE-006, ISSUE-010, ISSUE-016
| Trigger | Action |
|---------|--------|
| New CLI command | Register in `commands/`; add thin `@click` wrapper in `cli.py` only |
| Touch duplicate logic | Extract `planner_duplicates.py` from `planner.py` |
| Touch review CSV | Extract `plan_review_csv.py` from `plan_review.py` |
| Touch executor errors | Ensure CLI prints every `OperationResult.error_message` (ISSUE-016) |
**Target:** `cli.py` ~200 lines registration-only — not a blocking milestone.
---
## Known limitations (document only)
Track as GitHub issues only if you plan work; otherwise leave in README **Limitations**:
| ID | Item |
|----|------|
| ISSUE-012 | Anime scanned, not parsed |
| ISSUE-013 | Quarantine: movie/series only |
| ISSUE-014 | Parser patterns hardcoded |
| ISSUE-015 | Rollback best-effort — reinforce in `execute` output |
---
## Strengths — regression checklist
After each phase, confirm these still hold (from ISSUES_REPORT STR-001005):
- [ ] `vlm execute` defaults to dry-run; `--confirm` required for writes.
- [ ] Quarantine used instead of delete; `library_root` boundary checks on execute.
- [ ] `review-plan` → CSV → `apply-review` path documented and tested.
- [ ] Duplicate strategies fail explicitly (`DuplicateResolutionError` / manual review).
- [ ] `ExecutionPlan` validated on load/save in `io.py`.
- [ ] `tests/test_path_safety.py` and CLI integration tests still pass.
---
## Suggested PR sequence
| # | Branch / PR | Phase |
|---|-------------|-------|
| 1 | `fix/p0-untrack-artifacts` | 0 |
| 2 | `fix/p1-ci` | 1A |
| 3 | `fix/p1-license-metadata` | 1B + 1C |
| 4 | `fix/p1-docs-skills` | 2 |
| 5 | `fix/p2-imports` | 3A |
| 6 | `fix/p2-enrichment-docs` | 3B |
| 7 | `fix/p3-ruff` | 4 (optional) |
Merge **1 before any public push**. Phases 2 and 3 can run in parallel after CI exists.
---
## Final verification (release `0.2.0`)
Run once before tagging:
```bash
git ls-files '*.json' '*.csv' # expect only config JSON
uv run pytest -q # 517 passed
uv run vlm --help
# Optional: uv run ruff check src tests
```
Update `CHANGELOG.md` with `## 0.2.0` bullet list: artifact hygiene, CI, license, docs/skills sync.
---
## GitHub issue mapping
| Issue ID | Suggested title | Phase |
|----------|-----------------|-------|
| ISSUE-001 | `[P0] Remove committed library artifacts from Git` | 0 |
| ISSUE-002 | `[P1] Add CI workflow for pytest` | 1A |
| ISSUE-003 | `[P1] Add LICENSE and fix pyproject/README metadata` | 1B |
| ISSUE-004 | `[P1] Sync documentation and agent skills to artifacts/ baseline` | 2 |
| ISSUE-005 | `[P1] Document versioning and bump to 0.2.0` | 1C |
| ISSUE-006 | `[P2] Slim cli.py to registration-only pattern` | 5 |
| ISSUE-007 | `[P2] Standardize import style to vlm.*` | 3A |
| ISSUE-008 | `[P2] Document TMDB rate limits and concurrency` | 3B |
| ISSUE-009 | (merge into ISSUE-004 PR) | 2 |
| ISSUE-010 | `[P2] Split planner/plan_review when touched` | 5 |
| ISSUE-011 | `[P3] Add Ruff (and optional mypy) in CI` | 4 |
---
## References
- [`ISSUES_REPORT.md`](ISSUES_REPORT.md) — full issue descriptions and evidence
- [`CHANGELOG.md`](CHANGELOG.md) — canonical test count and release history
- [`CLAUDE.md`](CLAUDE.md) / [`AGENTS.md`](AGENTS.md) — contributor commands
+461
View File
@@ -0,0 +1,461 @@
# VLM Issues Report
**Source:** Professional code and documentation review (2026-05-25)
**Scope:** `src/vlm/`, `tests/`, `README.md`, `CHANGELOG.md`, `CLAUDE.md`, `AGENTS.md`, `skills/`, repository hygiene
**Baseline cited in docs:** `pytest -q` → 517 passed (see `CHANGELOG.md` 2026-05-21)
This document lists actionable issues by priority. Use it for triage, GitHub issues, or a cleanup sprint. Items marked **strength** are not bugs; they are recorded for balance.
---
## Summary
| Priority | Count | Theme |
|----------|------:|-------|
| P0 — Critical | 1 | Committed personal library data |
| P1 — High | 4 | CI, license, doc drift, release metadata |
| P2 — Medium | 5 | CLI structure, imports, HTTP ops, doc accuracy |
| P3 — Low | 6 | Tooling, product gaps, minor code notes |
| Strengths | 5 | Keep; do not regress |
**Overall:** Core pipeline, safety model, and test depth are strong. The main gap is **repository and release discipline**, not domain logic.
---
## P0 — Critical
### ISSUE-001: Personal library artifacts committed to Git
| Field | Value |
|-------|--------|
| **Priority** | P0 |
| **Category** | Security / privacy / repository hygiene |
| **Status** | Open |
**Description**
Git tracks **36 workflow artifact files** at the repository root (excluding `.kiro/settings/mcp.json` and `.markdownlint.json`), including:
- `inventory.csv`, `inventory_*.csv`
- `identities.json`, `identities_*.json`
- `analysis.json`, `analysis_*.json`
- `plan.json`, `plan_*.json`, `plan_*_manual_review.csv`
These files contain real library paths (e.g. `/mnt/Downloads/...`), filenames, release groups, and metadata for thousands of entries (e.g. `identities.json` reports 4726 files).
`.gitignore` ignores `artifacts/` and `runs/` but **not** legacy root-level CSV/JSON. CHANGELOG (2026-02-16) moved defaults to `artifacts/` without removing tracked root files.
**Impact**
- Privacy exposure if the repo is shared or published
- Repository bloat and slow clones
- Confusion between “fixtures” and a live library snapshot
- Risk of accidental reuse of stale plans/inventories in production workflows
**Evidence**
```bash
git ls-files '*.json' '*.csv'
```
**Recommended actions**
1. Stop tracking root artifacts: `git rm --cached` for all workflow CSV/JSON at repo root (keep only intentional fixtures).
2. Expand `.gitignore` for patterns such as `/inventory*.csv`, `/identities*.json`, `/analysis*.json`, `/plan*.json`, `/plan*_manual_review.csv` at repository root.
3. Add minimal **synthetic** fixtures under `tests/fixtures/` if tests need sample artifacts.
4. If the repo was ever public, treat paths and titles as already exposed; consider `git filter-repo` for history rewrite only if required.
5. Document migration in README: default outputs live under `artifacts/`; do not commit generated files.
**Acceptance criteria**
- `git ls-files` shows no personal inventory/identity/analysis/plan artifacts at repo root.
- CI and docs reference `artifacts/` (or `workspace_dir`) only.
- Clone size and sensitive path leakage materially reduced.
---
## P1 — High
### ISSUE-002: No continuous integration
| Field | Value |
|-------|--------|
| **Priority** | P1 |
| **Category** | Release engineering |
| **Status** | Open |
**Description**
There is no `.github/workflows/` (or equivalent) running tests on push/PR. The project claims **517 passing tests** in README and CHANGELOG, but verification depends on local runs.
**Impact**
Regressions in safety-critical paths (executor, planner, path boundaries) can merge undetected.
**Recommended actions**
1. Add a workflow: install with `uv`, run `uv run pytest -q`.
2. Optional matrix: Python 3.10, 3.11, 3.12.
3. Fail PRs on test failure; badge in README optional.
**Acceptance criteria**
- Every PR runs the full test suite automatically.
---
### ISSUE-003: Missing license and placeholder release metadata
| Field | Value |
|-------|--------|
| **Priority** | P1 |
| **Category** | Legal / open source readiness |
| **Status** | Open |
**Description**
- `README.md` ends with `[Add your license here]`.
- `pyproject.toml` has no `license`, `authors`, or `project.urls`.
- README links use placeholders (`yourusername/video-library-manager`).
**Impact**
Unclear redistribution terms; blocks confident external contributions and packaging.
**Recommended actions**
1. Choose and add `LICENSE` (e.g. MIT, Apache-2.0).
2. Set `license` and `project.urls` in `pyproject.toml`.
3. Replace placeholder GitHub URLs in README.
**Acceptance criteria**
- License file present; README and pyproject agree on license identifier.
---
### ISSUE-004: Documentation fragmentation and drift
| Field | Value |
|-------|--------|
| **Priority** | P1 |
| **Category** | Documentation |
| **Status** | Open |
**Description**
Multiple overlapping guides exist with inconsistent sync dates and paths:
| Document | Sync note | Drift |
|----------|-----------|--------|
| `README.md` | 2026-04-07, 517 tests | Long; some tree/commands outdated |
| `CLAUDE.md` | 2026-04-07 | Overlaps README command lists |
| `AGENTS.md` | 2026-04-07 | Overlaps dev commands |
| `skills/vlm-library-workflow/SKILL.md` | **2026-02-16** | Uses root `inventory.csv` paths, not `artifacts/` |
README Development section suggests `pytest` without consistently documenting **`uv run pytest`** (project standard in `CLAUDE.md`).
README project tree omits modules that exist: `duplicate_resolve.py`, `plan_review.py`, `plan_render.py`, `review_display.py`, `review_tui.py`, `transaction.py`, `cli_helpers.py`, etc.
**Recommended actions**
1. Single “documentation status” line driven by `CHANGELOG.md`.
2. Short README → link to `docs/user-guide.md` (optional split).
3. Update `skills/vlm-library-workflow/` to `artifacts/` defaults and full review cycle (`review-plan`, `apply-review`).
4. Align all agent docs on `uv run` for commands.
**Acceptance criteria**
- No conflicting default artifact paths across active docs.
- Skills header date matches current baseline.
---
### ISSUE-005: Version and packaging metadata under-specified
| Field | Value |
|-------|--------|
| **Priority** | P1 |
| **Category** | Release engineering |
| **Status** | Open |
**Description**
`pyproject.toml` declares `version = "0.1.0"` while the codebase has mature safety features, schema validation, review-apply cycle, and 517 tests. No versioning policy documented.
**Recommended actions**
1. Document versioning (semver vs calver) in README or `CONTRIBUTING.md`.
2. Bump version when artifact cleanup and CI land (e.g. `0.2.0`).
3. Consider adding `[project.optional-dependencies]` note for `pytest-cov` if README documents coverage.
**Acceptance criteria**
- Version reflects release readiness; changelog entry per release.
---
## P2 — Medium
### ISSUE-006: `cli.py` remains large despite command extraction
| Field | Value |
|-------|--------|
| **Priority** | P2 |
| **Category** | Maintainability |
| **Status** | Open |
**Description**
Logic lives in `src/vlm/commands/*`, but `cli.py` is still ~1075 lines: Click options, help strings, and try/except wrappers for scan, parse, enrich, analyze, plan, execute, report, state, config.
**Impact**
Harder reviews and higher merge conflict rate on CLI changes.
**Recommended actions**
1. Register command groups from `commands/` modules (shared registry or Click group per module).
2. Target `cli.py` as thin registration + global options only (~200 lines).
**Acceptance criteria**
- New commands add one import/register line in `cli.py`, not hundreds of lines.
---
### ISSUE-007: Inconsistent import style across modules
| Field | Value |
|-------|--------|
| **Priority** | P2 |
| **Category** | Code style |
| **Status** | Open |
**Description**
- `executor.py` uses relative imports (`.config`, `.models`).
- `planner.py`, `io.py`, and most of `commands/` use absolute `vlm.*` imports.
**Recommended actions**
Pick one style (prefer absolute `vlm.*` for package consistency) and apply incrementally.
**Acceptance criteria**
- Style documented in `AGENTS.md`; new code follows it.
---
### ISSUE-008: Enrichment HTTP layer and operational limits
| Field | Value |
|-------|--------|
| **Priority** | P2 |
| **Category** | Reliability / operations |
| **Status** | Open |
**Description**
TMDB and enrichment use stdlib `urllib` (`providers/tmdb.py`, `enrichment.py`). Config allows `enrichment_max_concurrency: 6` without documented rate-limit behavior.
API keys live in `~/.vlm/config.yaml` (appropriate for local CLI); README does not prominently warn against committing config or artifacts with keys.
**Recommended actions**
1. Document TMDB rate limits and recommended concurrency in README.
2. Document env-var or config path overrides for secrets if supported (or add support).
3. Optional: structured retry/backoff helper shared by providers.
**Acceptance criteria**
- Operators have clear guidance before bulk `vlm enrich` on large libraries.
---
### ISSUE-009: README accuracy gaps
| Field | Value |
|-------|--------|
| **Priority** | P2 |
| **Category** | Documentation |
| **Status** | Open |
**Description**
Specific gaps:
- Development: `pytest --cov=vlm` without `pytest-cov` in `[project.optional-dependencies]`.
- Project structure tree incomplete vs actual `src/vlm/`.
- Gemini skill name `vlm-expert` referenced; verify skill exists in repo or remove.
**Recommended actions**
Fix tree, dev deps, and skill activation instructions in one pass with ISSUE-004.
---
### ISSUE-010: Large planner / plan_review modules
| Field | Value |
|-------|--------|
| **Priority** | P2 |
| **Category** | Maintainability |
| **Status** | Open |
**Description**
`planner.py` and `plan_review.py` are large, multi-responsibility modules (duplicate handling, templates, review CSV, apply-review metadata).
**Recommended actions**
Defer split until next major feature; when touching duplicates or review, extract submodules (`planner_duplicates.py`, `plan_review_csv.py`).
**Acceptance criteria**
- No requirement to split immediately; track before next large planner change.
---
## P3 — Low
### ISSUE-011: No linter or type checker in project config
| Field | Value |
|-------|--------|
| **Priority** | P3 |
| **Category** | Developer experience |
| **Status** | Open |
**Description**
`pyproject.toml` has pytest/hypothesis only; no Ruff, Black, or mypy configuration.
**Recommended actions**
Add Ruff (and optional mypy on `src/vlm`) in CI after P1 CI exists.
---
### ISSUE-012: Anime categorized but not parsed
| Field | Value |
|-------|--------|
| **Priority** | P3 |
| **Category** | Product / feature gap |
| **Status** | Known limitation (documented) |
**Description**
Anime files are scanned and categorized; `parser.py` has no anime-specific parsing. README lists this under Limitations.
**Recommended actions**
Implement anime parsing or document a workaround (series parser with reduced confidence for hyphenated episode names).
---
### ISSUE-013: Quarantine limited to movie and series
| Field | Value |
|-------|--------|
| **Priority** | P3 |
| **Category** | Product / feature gap |
| **Status** | Known limitation (documented) |
**Description**
Only movie and series categories can be quarantined; anime and `other` are rejected.
---
### ISSUE-014: Hardcoded filename parsing patterns
| Field | Value |
|-------|--------|
| **Priority** | P3 |
| **Category** | Product |
| **Status** | Known limitation (documented) |
**Description**
Movie/series patterns are fixed in `parser.py`; not user-configurable. Power users with non-standard naming will need manual review paths.
---
### ISSUE-015: Rollback is best-effort only
| Field | Value |
|-------|--------|
| **Priority** | P3 |
| **Category** | Product / safety |
| **Status** | Known limitation (documented) |
**Description**
Rollback may fail if files were modified after execution. Correctly documented; ensure execute output reminds users of limits.
---
### ISSUE-016: Broad exception handler in executor loop
| Field | Value |
|-------|--------|
| **Priority** | P3 |
| **Category** | Code quality |
| **Status** | Open (low risk) |
**Description**
`executor.py` catches `Exception` per operation (`pragma: no cover`) to avoid aborting the batch. Acceptable; ensure CLI always surfaces `OperationResult.error_message`.
---
## Strengths (do not regress)
These are not issues; they should remain explicit acceptance criteria for refactors.
| ID | Area | Notes |
|----|------|--------|
| **STR-001** | Safety model | Dry-run default; quarantine not delete; `library_root` boundary checks on execute |
| **STR-002** | Human-in-the-loop | `review-plan` → CSV → `apply-review` → execute with review enforcement |
| **STR-003** | Duplicate resolution | Explicit strategies; `DuplicateResolutionError`; manual-review no-ops instead of silent fallback |
| **STR-004** | Schema validation | Typed `ExecutionPlan`; validated load/save in `io.py` |
| **STR-005** | Test suite | ~517 tests including CLI, security (`test_path_safety.py`), Hypothesis properties |
---
## Suggested sprint order
1. **ISSUE-001** — Remove tracked artifacts; fix `.gitignore`
2. **ISSUE-002** — CI workflow
3. **ISSUE-003** — License and README URLs
4. **ISSUE-004** + **ISSUE-009** — Doc and skills sync
5. **ISSUE-006** — CLI slim-down (optional, when touching CLI)
6. **ISSUE-011** — Ruff/mypy (after CI)
---
## Mapping to GitHub issues (optional)
When filing on GitHub, use labels such as:
- `priority:p0`, `priority:p1`, …
- `type:security`, `type:docs`, `type:ci`, `type:tech-debt`, `type:feature`
Suggested titles:
1. `[P0] Remove committed library artifacts from Git`
2. `[P1] Add CI workflow for pytest`
3. `[P1] Add LICENSE and fix pyproject/README metadata`
4. `[P1] Sync documentation and agent skills to artifacts/ baseline`
5. `[P2] Slim cli.py to registration-only pattern`
---
## References
- Review conversation: 2026-05-25
- Canonical change history: `CHANGELOG.md`
- Architecture guide: `CLAUDE.md`
- Contributor conventions: `AGENTS.md`
+21
View File
@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2026 windyboy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+34 -29
View File
@@ -2,8 +2,8 @@
## Documentation Status
- Last synchronized: **2026-04-07**
- Validation baseline: **`pytest -q` → 517 passed**
- Last synchronized: **2026-06-01** (see [`CHANGELOG.md`](CHANGELOG.md) for release history)
- Validation baseline: **`uv run pytest -q` → 517 passed**
- Human-in-the-loop workflow includes `vlm apply-review` for syncing manual plan edits from CSV back into `plan.json`.
- Scanner now detects `ffprobe` availability, degrades gracefully, and treats partial `find` output as a warning-backed partial result.
- JSON artifacts (`identities.json`, `analysis.json`, `plan.json`) are schema-validated on load/save, and plan loading now crosses a typed `ExecutionPlan` boundary.
@@ -73,6 +73,10 @@ vlm scan
This creates `artifacts/inventory.csv` with all discovered files and their metadata.
### Generated artifacts (do not commit)
Default pipeline outputs live under `artifacts/` (or `workspace_dir` from config). **Do not commit** `artifacts/`, `runs/`, or legacy root-level files such as `inventory.csv`, `identities.json`, `analysis.json`, or `plan.json` at the repository root. Keep API keys in `~/.vlm/config.yaml` only — never commit config copies or paste keys into issues.
**What happens:**
- Discovers video files using the system `find` command
- If `find` exits non-zero after emitting paths, VLM keeps the partial results and logs a warning; if no paths are emitted, discovery returns an empty deterministic result
@@ -763,7 +767,7 @@ Common enrichment outcomes:
- `Skip reasons: rate_limited=...`
Cause: TMDB rate limit hit (`429`).
Action: retry later; VLM already applies bounded retry/backoff.
Action: retry later; VLM already applies bounded retry/backoff. For large libraries, lower `enrichment.max_concurrency` (try **24** before the default **6**) to reduce simultaneous TMDB requests during `vlm enrich` and ffprobe work during `vlm scan`.
- `Enriched now: 0` with non-zero records
Cause: often `no_key`, `no_match`, or provider errors.
@@ -810,19 +814,13 @@ Always keep backups of important files!
- **Local files only**: Designed for local or mounted network storage
- **Best-effort rollback**: Rollback may not succeed if files have been modified
## Gemini CLI Agent Skills
## Agent skills
This project includes built-in expert guidance for the Gemini CLI. These skills co-locate project knowledge with the source code.
This project includes workflow guidance under `skills/vlm-library-workflow/` (scan → parse → enrich → analyze → plan → review-plan → apply-review → execute).
### Activation
To activate the expert guidance in Gemini CLI, use:
### Activation (Gemini CLI)
```bash
# General expert guidance and knowledge base
activate_skill vlm-expert
# Step-by-step library organization workflow
activate_skill vlm-library-workflow
```
@@ -838,17 +836,17 @@ activate_skill vlm-library-workflow
### Running Tests
```bash
# Run all tests
pytest
# Run all tests (recommended)
uv run pytest -q
# Run specific test file
pytest tests/test_scanner.py
uv run pytest tests/test_scanner.py
# Run with verbose output
pytest -v
uv run pytest -v
# Run with coverage
pytest --cov=vlm tests/
# Run with coverage (requires dev extras)
uv run pytest --cov=vlm tests/
```
### Code Style
@@ -864,13 +862,19 @@ pytest --cov=vlm tests/
src/vlm/
├── cli.py # Click-based CLI interface, global options
├── context.py # CLIContext and pass_context for commands
├── cli_helpers.py # Shared CLI helpers
├── commands/ # Command implementations
│ ├── scan.py # Scan command
│ ├── parse.py # Parse command
│ ├── enrich.py # Enrich command
│ ├── analyze.py # Analyze command
│ ├── plan.py # Plan command
── execute.py # Execute/Rollback commands
── execute.py # Execute/Rollback commands
│ ├── review_plan.py # Plan review export / TUI
│ ├── report.py # Report commands
│ ├── quarantine_cmd.py
│ ├── state_cmd.py
│ └── config_cmd.py
├── scanner.py # File discovery and metadata extraction
├── parser.py # Filename parsing (titles, years, episodes)
├── enrichment.py # Title/reputation enrichment pipeline
@@ -881,8 +885,14 @@ src/vlm/
├── io.py # Unified JSON/CSV I/O helpers (load/save JSON, analysis writer, plan/analysis adapters)
├── utils.py # UTC time, format_size, etc.
├── analysis.py # Completeness and duplicate detection
├── duplicate_resolve.py # Duplicate group keep-index (by_quality, by_reputation, by_reputation_quality_time, first_seen, manual)
├── duplicate_resolve.py # Duplicate group resolution strategies
├── planner.py # Execution plan generation (optionally consumes analysis)
├── plan_review.py # Review CSV and apply-review
├── plan_render.py # Plan rendering helpers
├── plan_structure_preview.py
├── review_display.py # Terminal review output
├── review_tui.py # Optional Textual review UI
├── transaction.py # Execution transaction log
├── executor.py # File operations and rollback
├── quarantine.py # Quarantine management
├── state.py # File state tracking
@@ -909,16 +919,11 @@ tests/
## Contributing
Contributions are welcome! Please:
1. Write tests for new features
2. Follow existing code style
3. Update documentation
4. Add clear commit messages
See [`CONTRIBUTING.md`](CONTRIBUTING.md) for versioning, test commands, and PR expectations.
## License
[Add your license here]
MIT — see [`LICENSE`](LICENSE).
## Acknowledgments
@@ -930,6 +935,6 @@ Built with:
## Support
- Report issues: [GitHub Issues](https://github.com/yourusername/video-library-manager/issues)
- Documentation: See CLAUDE.md for architecture details
- Report issues in your repository host's issue tracker
- Documentation: [`CLAUDE.md`](CLAUDE.md) for architecture; [`CHANGELOG.md`](CHANGELOG.md) for releases
- Logs: Check `~/.vlm/vlm.log` for detailed information
-5851
View File
File diff suppressed because it is too large Load Diff
-6227
View File
File diff suppressed because it is too large Load Diff
-14356
View File
File diff suppressed because it is too large Load Diff
-2686
View File
File diff suppressed because it is too large Load Diff
-5058
View File
File diff suppressed because it is too large Load Diff
-38647
View File
File diff suppressed because it is too large Load Diff
-55765
View File
File diff suppressed because it is too large Load Diff
-53889
View File
File diff suppressed because it is too large Load Diff
-34669
View File
File diff suppressed because it is too large Load Diff
-55396
View File
File diff suppressed because it is too large Load Diff
-4730
View File
File diff suppressed because it is too large Load Diff
-4618
View File
File diff suppressed because it is too large Load Diff
-3657
View File
File diff suppressed because it is too large Load Diff
-3657
View File
File diff suppressed because it is too large Load Diff
-4693
View File
File diff suppressed because it is too large Load Diff
-37935
View File
File diff suppressed because it is too large Load Diff
-39257
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
-39257
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
-37004
View File
File diff suppressed because it is too large Load Diff
-659
View File
@@ -1,659 +0,0 @@
index,operation_type,risk_flags,source_path,destination_path,reason
7,no-op,sample_source,/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
8,no-op,sample_source,/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
11,no-op,sample_source,/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
14,no-op,sample_source,/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
15,no-op,sample_source,/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
18,no-op,sample_source,/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
25,no-op,sample_source,/mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
29,no-op,sample_source,/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
33,no-op,sample_source,/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
34,no-op,sample_source,/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
38,no-op,sample_source,/mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
43,no-op,sample_source,/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
45,no-op,sample_source,/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
51,no-op,sample_source,/mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
52,no-op,sample_source,/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
54,no-op,sample_source,/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
63,no-op,sample_source,/mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
64,no-op,sample_source,/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
65,no-op,sample_source,/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
69,no-op,sample_source,/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
70,no-op,sample_source,/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
78,no-op,sample_source,/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
79,no-op,sample_source,/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
83,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
85,no-op,sample_source,/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
94,no-op,sample_source,/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
96,no-op,sample_source,/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
98,no-op,sample_source,/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
99,no-op,sample_source,/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
101,no-op,sample_source,/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
106,no-op,sample_source,/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,,Sample file excluded by plan include_sample_files=false
107,no-op,sample_source,/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
108,no-op,manual_review,/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv,,Movie needs manual review (no year found)
110,no-op,sample_source,/mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
114,no-op,sample_source,/mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
118,no-op,sample_source,/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
121,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
126,no-op,sample_source,/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
128,no-op,sample_source,/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
132,no-op,sample_source,/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
135,no-op,sample_source,/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
137,no-op,sample_source,/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
140,no-op,sample_source,/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
146,no-op,sample_source,/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
159,no-op,sample_source,/mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
160,no-op,manual_review,/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
162,no-op,sample_source,/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
165,no-op,sample_source,/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
169,no-op,manual_review,/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv,,Movie needs manual review (no year found)
171,no-op,sample_source,/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
176,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
181,no-op,sample_source,/mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
183,no-op,sample_source,/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
187,no-op,sample_source,/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
191,no-op,sample_source,/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
193,no-op,sample_source,/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
195,no-op,sample_source,/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
202,no-op,sample_source,/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv,,Sample file excluded by plan include_sample_files=false
203,no-op,sample_source,/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
218,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
220,no-op,manual_review,/mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4,,Movie needs manual review (no year found)
223,no-op,sample_source,/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
233,no-op,sample_source,/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
235,no-op,sample_source,/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
236,no-op,sample_source,/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
240,no-op,sample_source,/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
242,no-op,sample_source,/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
243,no-op,sample_source,/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
245,no-op,sample_source,/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
248,no-op,sample_source,/mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
249,no-op,sample_source,/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
255,no-op,sample_source,/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
260,no-op,sample_source,/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
261,no-op,sample_source,/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
263,no-op,sample_source,/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
267,no-op,sample_source,/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
272,no-op,sample_source,/mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
275,no-op,sample_source,/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
286,no-op,sample_source,/mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
292,no-op,sample_source,/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
294,no-op,sample_source,/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
305,no-op,sample_source,/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
307,no-op,sample_source,/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
309,no-op,sample_source,/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
320,no-op,sample_source,/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
322,no-op,sample_source,/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
324,no-op,sample_source,/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
327,no-op,sample_source,/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
330,no-op,manual_review,/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv,,Movie needs manual review (no year found)
333,no-op,sample_source,/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
334,no-op,sample_source,/mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
336,no-op,sample_source,/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv,,Sample file excluded by plan include_sample_files=false
337,no-op,sample_source,/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
338,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
342,no-op,sample_source,/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
349,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
350,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
351,no-op,sample_source,/mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
353,no-op,sample_source,/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
355,no-op,sample_source,/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
359,no-op,sample_source,/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
360,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
362,no-op,sample_source,/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
366,no-op,sample_source,/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
372,no-op,sample_source,/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
376,no-op,sample_source,/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
380,no-op,sample_source,/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
383,no-op,sample_source,/mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
384,no-op,sample_source,/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
387,no-op,sample_source,/mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
395,no-op,sample_source,/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
398,no-op,sample_source,/mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
399,no-op,sample_source,/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
404,no-op,sample_source,/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
405,no-op,manual_review,"/mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4",,Movie needs manual review (no year found)
408,no-op,sample_source,/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
409,no-op,sample_source,/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
413,no-op,sample_source,/mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
416,no-op,sample_source,/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
420,no-op,sample_source,/mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
422,no-op,sample_source,/mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
425,no-op,sample_source,/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
426,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
429,no-op,sample_source,/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
433,no-op,sample_source,/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
435,no-op,sample_source,/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
436,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
445,no-op,sample_source,/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
446,no-op,sample_source,/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
448,no-op,sample_source,/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
449,no-op,sample_source,/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
459,no-op,sample_source,/mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
462,no-op,sample_source,/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
466,no-op,sample_source,/mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
471,no-op,sample_source,/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
473,no-op,manual_review,/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
474,no-op,sample_source,/mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
477,no-op,sample_source,/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
478,no-op,sample_source,/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
484,no-op,sample_source,/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
485,no-op,sample_source,/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
486,no-op,sample_source,/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
490,no-op,sample_source,/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
494,no-op,sample_source,/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
499,no-op,sample_source,/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
501,no-op,sample_source,/mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
502,no-op,sample_source,/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
503,no-op,sample_source,/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
511,no-op,sample_source,/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
517,no-op,sample_source,/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
519,no-op,sample_source,/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
526,no-op,sample_source,/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
532,no-op,sample_source,/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
537,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
538,no-op,sample_source,/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
545,no-op,sample_source,/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
548,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
555,no-op,sample_source,/mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
571,no-op,sample_source,/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
575,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
583,no-op,sample_source,/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
584,no-op,sample_source,/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
588,no-op,sample_source,/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
589,no-op,sample_source,/mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
594,no-op,sample_source,/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
595,no-op,sample_source,/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
598,no-op,sample_source,/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
607,no-op,sample_source,/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
609,no-op,sample_source,/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
610,no-op,sample_source,/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
613,no-op,sample_source,/mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
614,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
615,no-op,sample_source,/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
620,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
621,no-op,sample_source,/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
622,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
623,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
624,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
625,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
626,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
627,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
628,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
629,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
630,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
631,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
632,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
633,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
634,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
635,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
636,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
637,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
638,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
639,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
640,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
641,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
642,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
643,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
644,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
645,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
646,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
647,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
648,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
649,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
650,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
651,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
652,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
653,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
654,move,conflict,/mnt/Downloads/series/The Capture/Season 02/S02E06.mkv,/mnt/Downloads/series/S02E06/Season 02/S02E06.mkv,Organize series: S02E06 S02E06
655,move,conflict,/mnt/Downloads/series/The Capture/Season 02/S02E01.mkv,/mnt/Downloads/series/S02E01/Season 02/S02E01.mkv,Organize series: S02E01 S02E01
656,move,conflict,/mnt/Downloads/series/The Capture/Season 02/S02E04.mkv,/mnt/Downloads/series/S02E04/Season 02/S02E04.mkv,Organize series: S02E04 S02E04
657,move,conflict,/mnt/Downloads/series/The Capture/Season 02/S02E03.mkv,/mnt/Downloads/series/S02E03/Season 02/S02E03.mkv,Organize series: S02E03 S02E03
658,move,conflict,/mnt/Downloads/series/The Capture/Season 02/S02E02.mkv,/mnt/Downloads/series/S02E02/Season 02/S02E02.mkv,Organize series: S02E02 S02E02
659,move,conflict,/mnt/Downloads/series/The Capture/Season 02/S02E05.mkv,/mnt/Downloads/series/S02E05/Season 02/S02E05.mkv,Organize series: S02E05 S02E05
660,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
662,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
663,move,conflict,/mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E02.mkv,/mnt/Downloads/series/S01E02/Season 01/S01E02.mkv,Organize series: S01E02 S01E02
664,move,conflict,/mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E05.mkv,/mnt/Downloads/series/S01E05/Season 01/S01E05.mkv,Organize series: S01E05 S01E05
666,move,conflict,/mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E03.mkv,/mnt/Downloads/series/S01E03/Season 01/S01E03.mkv,Organize series: S01E03 S01E03
667,move,conflict,/mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E01.mkv,/mnt/Downloads/series/S01E01/Season 01/S01E01.mkv,Organize series: S01E01 S01E01
675,move,conflict,/mnt/Downloads/series/终极名单 The Terminal List 2022/Season 01/S01E08.mkv,/mnt/Downloads/series/S01E08/Season 01/S01E08.mkv,Organize series: S01E08 S01E08
677,move,conflict,/mnt/Downloads/series/终极名单 The Terminal List 2022/Season 01/S01E06.mkv,/mnt/Downloads/series/S01E06/Season 01/S01E06.mkv,Organize series: S01E06 S01E06
678,move,conflict,/mnt/Downloads/series/终极名单 The Terminal List 2022/Season 01/S01E07.mkv,/mnt/Downloads/series/S01E07/Season 01/S01E07.mkv,Organize series: S01E07 S01E07
681,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E15.mkv,/mnt/Downloads/series/S01E15/Season 01/S01E15.mkv,Organize series: S01E15 S01E15
682,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E12.mkv,/mnt/Downloads/series/S01E12/Season 01/S01E12.mkv,Organize series: S01E12 S01E12
685,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E13.mkv,/mnt/Downloads/series/S01E13/Season 01/S01E13.mkv,Organize series: S01E13 S01E13
686,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E14.mkv,/mnt/Downloads/series/S01E14/Season 01/S01E14.mkv,Organize series: S01E14 S01E14
687,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E10.mkv,/mnt/Downloads/series/S01E10/Season 01/S01E10.mkv,Organize series: S01E10 S01E10
691,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E11.mkv,/mnt/Downloads/series/S01E11/Season 01/S01E11.mkv,Organize series: S01E11 S01E11
692,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E16.mkv,/mnt/Downloads/series/S01E16/Season 01/S01E16.mkv,Organize series: S01E16 S01E16
693,move,conflict,/mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E09.mkv,/mnt/Downloads/series/S01E09/Season 01/S01E09.mkv,Organize series: S01E09 S01E09
708,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
709,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
710,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
711,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
712,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
713,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
731,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
740,no-op,sample_source,/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
760,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
761,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv,,Series needs manual review (no season/episode found)
762,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV,,Series needs manual review (no season/episode found)
764,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
765,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
766,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
767,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
800,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
819,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
820,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
821,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
822,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
823,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
824,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
825,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
826,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
827,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
828,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
829,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
830,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
831,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
832,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
833,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
834,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
835,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
836,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
837,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
838,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
839,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
840,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
910,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
911,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
912,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
913,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
914,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
915,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
916,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
917,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
918,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
927,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
928,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
929,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
930,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
931,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
932,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
933,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
934,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
935,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
936,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
938,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
956,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
971,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
972,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
973,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
974,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
975,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
976,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
977,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
978,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
979,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
980,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
981,no-op,manual_review,/mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
982,no-op,manual_review,/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
983,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
984,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
985,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
986,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
987,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
988,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
989,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
990,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
991,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
992,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
993,no-op,sample_source,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
994,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
995,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
996,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4,,Series needs manual review (no season/episode found)
997,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
998,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
999,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1000,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1001,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1002,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1003,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1012,no-op,manual_review,/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1039,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1055,move,conflict,/mnt/Downloads/series/Reacher/Season 02/S02E07.mkv,/mnt/Downloads/series/S02E07/Season 02/S02E07.mkv,Organize series: S02E07 S02E07
1057,move,conflict,/mnt/Downloads/series/Reacher/Season 02/S02E08.mkv,/mnt/Downloads/series/S02E08/Season 02/S02E08.mkv,Organize series: S02E08 S02E08
1058,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1061,no-op,manual_review,/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1062,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1116,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
1117,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
1118,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
1119,no-op,manual_review,/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1136,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1137,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1138,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1139,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1140,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1141,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1142,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1143,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1144,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1145,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1146,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1147,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1161,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1169,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1170,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1171,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1172,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1173,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1174,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1175,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1176,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1177,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1178,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1179,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1189,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
1190,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
1192,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1193,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1194,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1195,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1196,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1197,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1221,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1222,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1223,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1224,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1225,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1226,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1227,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1228,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1229,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1230,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1231,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1232,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1233,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1234,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1235,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1236,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1288,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1289,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1290,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1291,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1292,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1293,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1294,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1295,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1296,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv,,Series needs manual review (no season/episode found)
1351,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1352,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1353,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1354,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1355,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1356,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1357,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1358,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1359,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1360,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1361,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1362,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1364,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1365,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1366,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1367,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1368,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1369,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1370,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1371,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1372,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1373,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1374,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1395,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1402,no-op,manual_review,/mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv,,Series needs manual review (no season/episode found)
1467,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1468,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1469,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1470,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1471,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1472,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1476,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1477,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1478,no-op,manual_review,/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1504,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1505,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1506,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1507,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1508,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1509,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1510,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1511,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1512,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1513,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1514,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1527,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1542,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1543,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1555,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1566,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1567,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1568,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1569,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1570,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1571,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1582,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1583,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1584,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1585,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1586,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1587,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1588,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1589,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1590,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1591,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1592,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1593,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1625,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1626,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1627,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1628,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1629,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1637,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1638,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1639,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1640,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1641,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1658,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1659,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1660,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1661,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1662,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1663,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1664,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1665,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1666,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1667,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1668,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1697,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv,,Series needs manual review (no season/episode found)
1698,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv,,Series needs manual review (no season/episode found)
1699,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv,,Series needs manual review (no season/episode found)
1700,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv,,Series needs manual review (no season/episode found)
1701,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv,,Series needs manual review (no season/episode found)
1702,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv,,Series needs manual review (no season/episode found)
1703,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv,,Series needs manual review (no season/episode found)
1704,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv,,Series needs manual review (no season/episode found)
1705,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv,,Series needs manual review (no season/episode found)
1710,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1711,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1712,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1713,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1714,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1715,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1716,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1717,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1718,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1719,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1720,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1721,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1722,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1723,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1724,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1725,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1726,no-op,manual_review,/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv,,Series needs manual review (no season/episode found)
1727,no-op,manual_review,/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1745,no-op,manual_review,/mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,,Series needs manual review (no season/episode found)
1746,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1769,no-op,manual_review,/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1770,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1771,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1772,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1774,no-op,manual_review,/mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,,Series needs manual review (no season/episode found)
1803,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1804,no-op,manual_review,/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1816,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1818,no-op,manual_review,/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1819,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1820,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1821,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1822,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1823,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1824,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1825,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1826,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1827,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1828,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1829,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1830,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1831,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1842,no-op,manual_review,/mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv,,Series needs manual review (no season/episode found)
1844,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1845,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1846,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1847,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1848,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1849,no-op,sample_source,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1850,no-op,manual_review,/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1851,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1852,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1853,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1854,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1855,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1856,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1857,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1858,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1859,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1860,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1870,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1871,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1872,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1873,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1874,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1875,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1876,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1877,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1878,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1879,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1880,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1881,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1882,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1884,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1885,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1886,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1887,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1888,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1889,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1890,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1912,no-op,manual_review,/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1914,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1915,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1950,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1951,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv,,Series needs manual review (no season/episode found)
1952,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv,,Series needs manual review (no season/episode found)
1953,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv,,Series needs manual review (no season/episode found)
1954,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv,,Series needs manual review (no season/episode found)
1955,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv,,Series needs manual review (no season/episode found)
1956,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1957,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1958,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1959,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1960,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1961,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1962,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1963,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1964,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1965,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1966,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1967,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1968,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1969,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1970,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1971,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1973,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV,,Series needs manual review (no season/episode found)
1974,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv,,Series needs manual review (no season/episode found)
1988,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1989,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1990,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1991,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1992,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1993,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1994,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1995,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1996,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1997,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1998,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2029,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv,,Series needs manual review (no season/episode found)
2030,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv,,Series needs manual review (no season/episode found)
2031,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv,,Series needs manual review (no season/episode found)
2032,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv,,Series needs manual review (no season/episode found)
2033,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv,,Series needs manual review (no season/episode found)
2034,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv,,Series needs manual review (no season/episode found)
2035,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv,,Series needs manual review (no season/episode found)
2041,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
2042,no-op,manual_review,/mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
2157,no-op,sample_source,/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2361,no-op,sample_source,/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2375,no-op,high_episode,/mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4,,Anime files not organized in v1
2770,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv,,Anime files not organized in v1
2771,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv,,Anime files not organized in v1
2776,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv,,Anime files not organized in v1
2777,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv,,Anime files not organized in v1
2779,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv,,Anime files not organized in v1
2781,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv,,Anime files not organized in v1
2789,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv,,Anime files not organized in v1
2900,no-op,sample_source,/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2916,no-op,sample_source,/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
3012,no-op,sample_source,/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
3213,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv,,Anime files not organized in v1
3221,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv,,Anime files not organized in v1
3278,no-op,sample_source,/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
3459,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3463,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3464,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3465,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3466,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3467,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3469,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3473,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3474,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3475,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3476,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3478,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3482,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3486,no-op,high_episode,"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv",,Anime files not organized in v1
3489,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3490,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3492,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3499,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3502,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3507,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3509,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3515,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3516,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3521,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3522,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
4036,no-op,high_episode,/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv,,Anime files not organized in v1
4082,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
4111,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1 index operation_type risk_flags source_path destination_path reason
2 7 no-op sample_source /mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
3 8 no-op sample_source /mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
4 11 no-op sample_source /mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
5 14 no-op sample_source /mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
6 15 no-op sample_source /mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
7 18 no-op sample_source /mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
8 25 no-op sample_source /mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
9 29 no-op sample_source /mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
10 33 no-op sample_source /mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
11 34 no-op sample_source /mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
12 38 no-op sample_source /mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
13 43 no-op sample_source /mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
14 45 no-op sample_source /mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
15 51 no-op sample_source /mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
16 52 no-op sample_source /mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
17 54 no-op sample_source /mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
18 63 no-op sample_source /mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
19 64 no-op sample_source /mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
20 65 no-op sample_source /mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
21 69 no-op sample_source /mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
22 70 no-op sample_source /mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
23 78 no-op sample_source /mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
24 79 no-op sample_source /mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
25 83 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
26 85 no-op sample_source /mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
27 94 no-op sample_source /mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
28 96 no-op sample_source /mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
29 98 no-op sample_source /mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
30 99 no-op sample_source /mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
31 101 no-op sample_source /mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
32 106 no-op sample_source /mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv Sample file excluded by plan include_sample_files=false
33 107 no-op sample_source /mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
34 108 no-op manual_review /mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv Movie needs manual review (no year found)
35 110 no-op sample_source /mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
36 114 no-op sample_source /mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
37 118 no-op sample_source /mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
38 121 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
39 126 no-op sample_source /mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
40 128 no-op sample_source /mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
41 132 no-op sample_source /mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
42 135 no-op sample_source /mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
43 137 no-op sample_source /mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
44 140 no-op sample_source /mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
45 146 no-op sample_source /mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
46 159 no-op sample_source /mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
47 160 no-op manual_review /mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
48 162 no-op sample_source /mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
49 165 no-op sample_source /mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
50 169 no-op manual_review /mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv Movie needs manual review (no year found)
51 171 no-op sample_source /mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
52 176 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
53 181 no-op sample_source /mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
54 183 no-op sample_source /mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
55 187 no-op sample_source /mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
56 191 no-op sample_source /mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
57 193 no-op sample_source /mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
58 195 no-op sample_source /mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
59 202 no-op sample_source /mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv Sample file excluded by plan include_sample_files=false
60 203 no-op sample_source /mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
61 218 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
62 220 no-op manual_review /mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4 Movie needs manual review (no year found)
63 223 no-op sample_source /mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
64 233 no-op sample_source /mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
65 235 no-op sample_source /mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
66 236 no-op sample_source /mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
67 240 no-op sample_source /mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
68 242 no-op sample_source /mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
69 243 no-op sample_source /mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
70 245 no-op sample_source /mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
71 248 no-op sample_source /mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
72 249 no-op sample_source /mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
73 255 no-op sample_source /mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
74 260 no-op sample_source /mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
75 261 no-op sample_source /mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
76 263 no-op sample_source /mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
77 267 no-op sample_source /mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
78 272 no-op sample_source /mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
79 275 no-op sample_source /mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
80 286 no-op sample_source /mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
81 292 no-op sample_source /mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
82 294 no-op sample_source /mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
83 305 no-op sample_source /mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
84 307 no-op sample_source /mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
85 309 no-op sample_source /mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
86 320 no-op sample_source /mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
87 322 no-op sample_source /mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
88 324 no-op sample_source /mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
89 327 no-op sample_source /mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
90 330 no-op manual_review /mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv Movie needs manual review (no year found)
91 333 no-op sample_source /mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
92 334 no-op sample_source /mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
93 336 no-op sample_source /mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv Sample file excluded by plan include_sample_files=false
94 337 no-op sample_source /mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
95 338 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
96 342 no-op sample_source /mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
97 349 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
98 350 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
99 351 no-op sample_source /mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
100 353 no-op sample_source /mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
101 355 no-op sample_source /mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
102 359 no-op sample_source /mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
103 360 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
104 362 no-op sample_source /mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
105 366 no-op sample_source /mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
106 372 no-op sample_source /mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
107 376 no-op sample_source /mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
108 380 no-op sample_source /mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
109 383 no-op sample_source /mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
110 384 no-op sample_source /mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
111 387 no-op sample_source /mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
112 395 no-op sample_source /mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
113 398 no-op sample_source /mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
114 399 no-op sample_source /mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
115 404 no-op sample_source /mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
116 405 no-op manual_review /mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4 Movie needs manual review (no year found)
117 408 no-op sample_source /mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
118 409 no-op sample_source /mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
119 413 no-op sample_source /mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
120 416 no-op sample_source /mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
121 420 no-op sample_source /mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
122 422 no-op sample_source /mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
123 425 no-op sample_source /mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
124 426 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
125 429 no-op sample_source /mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
126 433 no-op sample_source /mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
127 435 no-op sample_source /mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
128 436 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
129 445 no-op sample_source /mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
130 446 no-op sample_source /mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
131 448 no-op sample_source /mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
132 449 no-op sample_source /mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
133 459 no-op sample_source /mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
134 462 no-op sample_source /mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
135 466 no-op sample_source /mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
136 471 no-op sample_source /mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
137 473 no-op manual_review /mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
138 474 no-op sample_source /mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
139 477 no-op sample_source /mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
140 478 no-op sample_source /mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
141 484 no-op sample_source /mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
142 485 no-op sample_source /mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
143 486 no-op sample_source /mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
144 490 no-op sample_source /mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
145 494 no-op sample_source /mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
146 499 no-op sample_source /mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
147 501 no-op sample_source /mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
148 502 no-op sample_source /mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
149 503 no-op sample_source /mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
150 511 no-op sample_source /mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
151 517 no-op sample_source /mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
152 519 no-op sample_source /mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
153 526 no-op sample_source /mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
154 532 no-op sample_source /mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
155 537 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
156 538 no-op sample_source /mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
157 545 no-op sample_source /mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
158 548 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
159 555 no-op sample_source /mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
160 571 no-op sample_source /mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
161 575 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
162 583 no-op sample_source /mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
163 584 no-op sample_source /mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
164 588 no-op sample_source /mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
165 589 no-op sample_source /mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
166 594 no-op sample_source /mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
167 595 no-op sample_source /mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
168 598 no-op sample_source /mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
169 607 no-op sample_source /mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
170 609 no-op sample_source /mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
171 610 no-op sample_source /mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
172 613 no-op sample_source /mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
173 614 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
174 615 no-op sample_source /mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
175 620 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
176 621 no-op sample_source /mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
177 622 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
178 623 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
179 624 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
180 625 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
181 626 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
182 627 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
183 628 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
184 629 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
185 630 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
186 631 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
187 632 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
188 633 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
189 634 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
190 635 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
191 636 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
192 637 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
193 638 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
194 639 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
195 640 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
196 641 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
197 642 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
198 643 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
199 644 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
200 645 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
201 646 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
202 647 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
203 648 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
204 649 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
205 650 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
206 651 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
207 652 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
208 653 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
209 654 move conflict /mnt/Downloads/series/The Capture/Season 02/S02E06.mkv /mnt/Downloads/series/S02E06/Season 02/S02E06.mkv Organize series: S02E06 S02E06
210 655 move conflict /mnt/Downloads/series/The Capture/Season 02/S02E01.mkv /mnt/Downloads/series/S02E01/Season 02/S02E01.mkv Organize series: S02E01 S02E01
211 656 move conflict /mnt/Downloads/series/The Capture/Season 02/S02E04.mkv /mnt/Downloads/series/S02E04/Season 02/S02E04.mkv Organize series: S02E04 S02E04
212 657 move conflict /mnt/Downloads/series/The Capture/Season 02/S02E03.mkv /mnt/Downloads/series/S02E03/Season 02/S02E03.mkv Organize series: S02E03 S02E03
213 658 move conflict /mnt/Downloads/series/The Capture/Season 02/S02E02.mkv /mnt/Downloads/series/S02E02/Season 02/S02E02.mkv Organize series: S02E02 S02E02
214 659 move conflict /mnt/Downloads/series/The Capture/Season 02/S02E05.mkv /mnt/Downloads/series/S02E05/Season 02/S02E05.mkv Organize series: S02E05 S02E05
215 660 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
216 662 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
217 663 move conflict /mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E02.mkv /mnt/Downloads/series/S01E02/Season 01/S01E02.mkv Organize series: S01E02 S01E02
218 664 move conflict /mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E05.mkv /mnt/Downloads/series/S01E05/Season 01/S01E05.mkv Organize series: S01E05 S01E05
219 666 move conflict /mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E03.mkv /mnt/Downloads/series/S01E03/Season 01/S01E03.mkv Organize series: S01E03 S01E03
220 667 move conflict /mnt/Downloads/series/jukkakukannosatsujin/Season 01/S01E01.mkv /mnt/Downloads/series/S01E01/Season 01/S01E01.mkv Organize series: S01E01 S01E01
221 675 move conflict /mnt/Downloads/series/终极名单 The Terminal List 2022/Season 01/S01E08.mkv /mnt/Downloads/series/S01E08/Season 01/S01E08.mkv Organize series: S01E08 S01E08
222 677 move conflict /mnt/Downloads/series/终极名单 The Terminal List 2022/Season 01/S01E06.mkv /mnt/Downloads/series/S01E06/Season 01/S01E06.mkv Organize series: S01E06 S01E06
223 678 move conflict /mnt/Downloads/series/终极名单 The Terminal List 2022/Season 01/S01E07.mkv /mnt/Downloads/series/S01E07/Season 01/S01E07.mkv Organize series: S01E07 S01E07
224 681 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E15.mkv /mnt/Downloads/series/S01E15/Season 01/S01E15.mkv Organize series: S01E15 S01E15
225 682 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E12.mkv /mnt/Downloads/series/S01E12/Season 01/S01E12.mkv Organize series: S01E12 S01E12
226 685 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E13.mkv /mnt/Downloads/series/S01E13/Season 01/S01E13.mkv Organize series: S01E13 S01E13
227 686 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E14.mkv /mnt/Downloads/series/S01E14/Season 01/S01E14.mkv Organize series: S01E14 S01E14
228 687 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E10.mkv /mnt/Downloads/series/S01E10/Season 01/S01E10.mkv Organize series: S01E10 S01E10
229 691 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E11.mkv /mnt/Downloads/series/S01E11/Season 01/S01E11.mkv Organize series: S01E11 S01E11
230 692 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E16.mkv /mnt/Downloads/series/S01E16/Season 01/S01E16.mkv Organize series: S01E16 S01E16
231 693 move conflict /mnt/Downloads/series/Its Okay to Not Be Okay 2020/Season 01/S01E09.mkv /mnt/Downloads/series/S01E09/Season 01/S01E09.mkv Organize series: S01E09 S01E09
232 708 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
233 709 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
234 710 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
235 711 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
236 712 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
237 713 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
238 731 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
239 740 no-op sample_source /mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
240 760 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
241 761 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv Series needs manual review (no season/episode found)
242 762 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV Series needs manual review (no season/episode found)
243 764 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
244 765 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
245 766 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4 Series needs manual review (no season/episode found)
246 767 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4 Series needs manual review (no season/episode found)
247 800 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
248 819 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
249 820 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
250 821 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
251 822 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
252 823 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
253 824 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
254 825 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
255 826 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
256 827 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
257 828 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
258 829 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
259 830 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
260 831 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
261 832 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
262 833 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
263 834 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
264 835 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
265 836 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
266 837 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
267 838 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
268 839 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
269 840 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
270 910 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
271 911 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
272 912 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
273 913 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
274 914 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
275 915 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
276 916 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
277 917 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
278 918 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
279 927 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
280 928 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
281 929 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
282 930 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
283 931 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
284 932 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
285 933 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
286 934 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
287 935 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
288 936 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
289 938 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
290 956 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
291 971 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
292 972 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
293 973 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
294 974 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
295 975 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
296 976 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
297 977 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
298 978 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
299 979 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
300 980 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
301 981 no-op manual_review /mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
302 982 no-op manual_review /mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
303 983 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
304 984 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
305 985 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
306 986 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
307 987 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
308 988 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
309 989 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
310 990 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
311 991 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
312 992 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
313 993 no-op sample_source /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
314 994 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
315 995 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
316 996 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4 Series needs manual review (no season/episode found)
317 997 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
318 998 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
319 999 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
320 1000 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
321 1001 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
322 1002 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
323 1003 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
324 1012 no-op manual_review /mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
325 1039 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
326 1055 move conflict /mnt/Downloads/series/Reacher/Season 02/S02E07.mkv /mnt/Downloads/series/S02E07/Season 02/S02E07.mkv Organize series: S02E07 S02E07
327 1057 move conflict /mnt/Downloads/series/Reacher/Season 02/S02E08.mkv /mnt/Downloads/series/S02E08/Season 02/S02E08.mkv Organize series: S02E08 S02E08
328 1058 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
329 1061 no-op manual_review /mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
330 1062 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
331 1116 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
332 1117 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
333 1118 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
334 1119 no-op manual_review /mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
335 1136 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
336 1137 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
337 1138 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
338 1139 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
339 1140 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
340 1141 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
341 1142 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
342 1143 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
343 1144 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
344 1145 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
345 1146 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
346 1147 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
347 1161 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
348 1169 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
349 1170 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
350 1171 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
351 1172 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
352 1173 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
353 1174 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
354 1175 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
355 1176 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
356 1177 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
357 1178 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
358 1179 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
359 1189 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
360 1190 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
361 1192 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
362 1193 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
363 1194 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
364 1195 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
365 1196 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
366 1197 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
367 1221 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
368 1222 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
369 1223 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
370 1224 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
371 1225 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
372 1226 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
373 1227 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
374 1228 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
375 1229 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
376 1230 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
377 1231 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
378 1232 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
379 1233 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
380 1234 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
381 1235 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
382 1236 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
383 1288 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
384 1289 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
385 1290 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
386 1291 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
387 1292 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
388 1293 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
389 1294 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
390 1295 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
391 1296 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv Series needs manual review (no season/episode found)
392 1351 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
393 1352 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
394 1353 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
395 1354 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
396 1355 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
397 1356 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
398 1357 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
399 1358 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
400 1359 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
401 1360 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
402 1361 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
403 1362 no-op manual_review /mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
404 1364 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
405 1365 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
406 1366 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
407 1367 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
408 1368 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
409 1369 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
410 1370 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
411 1371 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
412 1372 no-op manual_review /mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
413 1373 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
414 1374 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
415 1395 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
416 1402 no-op manual_review /mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv Series needs manual review (no season/episode found)
417 1467 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
418 1468 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
419 1469 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
420 1470 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
421 1471 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
422 1472 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
423 1476 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
424 1477 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
425 1478 no-op manual_review /mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
426 1504 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
427 1505 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
428 1506 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
429 1507 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
430 1508 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
431 1509 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
432 1510 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
433 1511 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
434 1512 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
435 1513 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
436 1514 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
437 1527 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
438 1542 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
439 1543 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
440 1555 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
441 1566 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
442 1567 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
443 1568 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
444 1569 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
445 1570 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
446 1571 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
447 1582 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
448 1583 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
449 1584 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
450 1585 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
451 1586 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
452 1587 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
453 1588 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
454 1589 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
455 1590 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
456 1591 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
457 1592 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
458 1593 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
459 1625 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
460 1626 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
461 1627 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
462 1628 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
463 1629 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
464 1637 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
465 1638 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
466 1639 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
467 1640 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
468 1641 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
469 1658 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
470 1659 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
471 1660 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
472 1661 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
473 1662 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
474 1663 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
475 1664 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
476 1665 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
477 1666 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
478 1667 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
479 1668 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
480 1697 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv Series needs manual review (no season/episode found)
481 1698 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv Series needs manual review (no season/episode found)
482 1699 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv Series needs manual review (no season/episode found)
483 1700 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv Series needs manual review (no season/episode found)
484 1701 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv Series needs manual review (no season/episode found)
485 1702 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv Series needs manual review (no season/episode found)
486 1703 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv Series needs manual review (no season/episode found)
487 1704 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv Series needs manual review (no season/episode found)
488 1705 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv Series needs manual review (no season/episode found)
489 1710 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
490 1711 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
491 1712 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
492 1713 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
493 1714 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
494 1715 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
495 1716 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
496 1717 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
497 1718 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
498 1719 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
499 1720 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
500 1721 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
501 1722 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
502 1723 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
503 1724 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
504 1725 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
505 1726 no-op manual_review /mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv Series needs manual review (no season/episode found)
506 1727 no-op manual_review /mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
507 1745 no-op manual_review /mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv Series needs manual review (no season/episode found)
508 1746 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
509 1769 no-op manual_review /mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
510 1770 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
511 1771 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
512 1772 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
513 1774 no-op manual_review /mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv Series needs manual review (no season/episode found)
514 1803 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
515 1804 no-op manual_review /mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
516 1816 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
517 1818 no-op manual_review /mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
518 1819 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
519 1820 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
520 1821 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
521 1822 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
522 1823 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
523 1824 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
524 1825 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
525 1826 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
526 1827 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
527 1828 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
528 1829 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
529 1830 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
530 1831 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
531 1842 no-op manual_review /mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv Series needs manual review (no season/episode found)
532 1844 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
533 1845 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
534 1846 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
535 1847 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
536 1848 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
537 1849 no-op sample_source /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
538 1850 no-op manual_review /mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
539 1851 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
540 1852 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
541 1853 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
542 1854 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
543 1855 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
544 1856 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
545 1857 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
546 1858 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
547 1859 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
548 1860 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
549 1870 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
550 1871 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
551 1872 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
552 1873 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
553 1874 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
554 1875 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
555 1876 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
556 1877 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
557 1878 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
558 1879 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
559 1880 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
560 1881 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
561 1882 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
562 1884 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
563 1885 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
564 1886 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
565 1887 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
566 1888 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
567 1889 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
568 1890 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
569 1912 no-op manual_review /mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
570 1914 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
571 1915 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
572 1950 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
573 1951 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv Series needs manual review (no season/episode found)
574 1952 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv Series needs manual review (no season/episode found)
575 1953 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv Series needs manual review (no season/episode found)
576 1954 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv Series needs manual review (no season/episode found)
577 1955 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv Series needs manual review (no season/episode found)
578 1956 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
579 1957 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
580 1958 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
581 1959 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
582 1960 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
583 1961 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
584 1962 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
585 1963 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
586 1964 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
587 1965 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
588 1966 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
589 1967 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
590 1968 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
591 1969 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
592 1970 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
593 1971 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
594 1973 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV Series needs manual review (no season/episode found)
595 1974 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv Series needs manual review (no season/episode found)
596 1988 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
597 1989 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
598 1990 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
599 1991 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
600 1992 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
601 1993 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
602 1994 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
603 1995 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
604 1996 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
605 1997 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
606 1998 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
607 2029 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv Series needs manual review (no season/episode found)
608 2030 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv Series needs manual review (no season/episode found)
609 2031 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv Series needs manual review (no season/episode found)
610 2032 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv Series needs manual review (no season/episode found)
611 2033 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv Series needs manual review (no season/episode found)
612 2034 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv Series needs manual review (no season/episode found)
613 2035 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv Series needs manual review (no season/episode found)
614 2041 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
615 2042 no-op manual_review /mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
616 2157 no-op sample_source /mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
617 2361 no-op sample_source /mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
618 2375 no-op high_episode /mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4 Anime files not organized in v1
619 2770 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv Anime files not organized in v1
620 2771 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv Anime files not organized in v1
621 2776 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv Anime files not organized in v1
622 2777 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv Anime files not organized in v1
623 2779 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv Anime files not organized in v1
624 2781 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv Anime files not organized in v1
625 2789 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv Anime files not organized in v1
626 2900 no-op sample_source /mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
627 2916 no-op sample_source /mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
628 3012 no-op sample_source /mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
629 3213 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv Anime files not organized in v1
630 3221 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv Anime files not organized in v1
631 3278 no-op sample_source /mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
632 3459 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv Anime files not organized in v1
633 3463 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv Anime files not organized in v1
634 3464 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv Anime files not organized in v1
635 3465 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv Anime files not organized in v1
636 3466 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv Anime files not organized in v1
637 3467 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv Anime files not organized in v1
638 3469 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv Anime files not organized in v1
639 3473 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv Anime files not organized in v1
640 3474 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv Anime files not organized in v1
641 3475 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv Anime files not organized in v1
642 3476 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv Anime files not organized in v1
643 3478 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv Anime files not organized in v1
644 3482 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv Anime files not organized in v1
645 3486 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv Anime files not organized in v1
646 3489 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv Anime files not organized in v1
647 3490 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv Anime files not organized in v1
648 3492 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv Anime files not organized in v1
649 3499 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv Anime files not organized in v1
650 3502 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv Anime files not organized in v1
651 3507 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv Anime files not organized in v1
652 3509 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv Anime files not organized in v1
653 3515 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv Anime files not organized in v1
654 3516 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv Anime files not organized in v1
655 3521 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv Anime files not organized in v1
656 3522 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv Anime files not organized in v1
657 4036 no-op high_episode /mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv Anime files not organized in v1
658 4082 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
659 4111 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
-8071
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -1 +0,0 @@
index,operation_type,risk_flags,source_path,destination_path,reason
1 index operation_type risk_flags source_path destination_path reason
-29275
View File
File diff suppressed because it is too large Load Diff
-636
View File
@@ -1,636 +0,0 @@
index,operation_type,risk_flags,source_path,destination_path,reason
7,no-op,sample_source,/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
8,no-op,sample_source,/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
11,no-op,sample_source,/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
14,no-op,sample_source,/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
15,no-op,sample_source,/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
18,no-op,sample_source,/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
25,no-op,sample_source,/mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
29,no-op,sample_source,/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
33,no-op,sample_source,/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
34,no-op,sample_source,/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
38,no-op,sample_source,/mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
43,no-op,sample_source,/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
45,no-op,sample_source,/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
51,no-op,sample_source,/mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
52,no-op,sample_source,/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
54,no-op,sample_source,/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
63,no-op,sample_source,/mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
64,no-op,sample_source,/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
65,no-op,sample_source,/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
69,no-op,sample_source,/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
70,no-op,sample_source,/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
78,no-op,sample_source,/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
79,no-op,sample_source,/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
83,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
85,no-op,sample_source,/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
94,no-op,sample_source,/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
96,no-op,sample_source,/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
98,no-op,sample_source,/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
99,no-op,sample_source,/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
101,no-op,sample_source,/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
106,no-op,sample_source,/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,,Sample file excluded by plan include_sample_files=false
107,no-op,sample_source,/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
108,no-op,manual_review,/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv,,Movie needs manual review (no year found)
110,no-op,sample_source,/mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
114,no-op,sample_source,/mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
118,no-op,sample_source,/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
121,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
126,no-op,sample_source,/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
128,no-op,sample_source,/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
132,no-op,sample_source,/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
135,no-op,sample_source,/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
137,no-op,sample_source,/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
140,no-op,sample_source,/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
146,no-op,sample_source,/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
159,no-op,sample_source,/mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
160,no-op,manual_review,/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
162,no-op,sample_source,/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
165,no-op,sample_source,/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
169,no-op,manual_review,/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv,,Movie needs manual review (no year found)
171,no-op,sample_source,/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
176,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
181,no-op,sample_source,/mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
183,no-op,sample_source,/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
187,no-op,sample_source,/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
191,no-op,sample_source,/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
193,no-op,sample_source,/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
195,no-op,sample_source,/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
202,no-op,sample_source,/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv,,Sample file excluded by plan include_sample_files=false
203,no-op,sample_source,/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
218,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
220,no-op,manual_review,/mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4,,Movie needs manual review (no year found)
223,no-op,sample_source,/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
233,no-op,sample_source,/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
235,no-op,sample_source,/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
236,no-op,sample_source,/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
240,no-op,sample_source,/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
242,no-op,sample_source,/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
243,no-op,sample_source,/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
245,no-op,sample_source,/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
248,no-op,sample_source,/mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
249,no-op,sample_source,/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
255,no-op,sample_source,/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
260,no-op,sample_source,/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
261,no-op,sample_source,/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
263,no-op,sample_source,/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
267,no-op,sample_source,/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
272,no-op,sample_source,/mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
275,no-op,sample_source,/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
286,no-op,sample_source,/mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
292,no-op,sample_source,/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
294,no-op,sample_source,/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
305,no-op,sample_source,/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
307,no-op,sample_source,/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
309,no-op,sample_source,/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
320,no-op,sample_source,/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
322,no-op,sample_source,/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
324,no-op,sample_source,/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
327,no-op,sample_source,/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
330,no-op,manual_review,/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv,,Movie needs manual review (no year found)
333,no-op,sample_source,/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
334,no-op,sample_source,/mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
336,no-op,sample_source,/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv,,Sample file excluded by plan include_sample_files=false
337,no-op,sample_source,/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
338,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
342,no-op,sample_source,/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
349,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
350,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
351,no-op,sample_source,/mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
353,no-op,sample_source,/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
355,no-op,sample_source,/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
359,no-op,sample_source,/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
360,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
362,no-op,sample_source,/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
366,no-op,sample_source,/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
372,no-op,sample_source,/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
376,no-op,sample_source,/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
380,no-op,sample_source,/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
383,no-op,sample_source,/mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
384,no-op,sample_source,/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
387,no-op,sample_source,/mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
395,no-op,sample_source,/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
398,no-op,sample_source,/mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
399,no-op,sample_source,/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
404,no-op,sample_source,/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
405,no-op,manual_review,"/mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4",,Movie needs manual review (no year found)
408,no-op,sample_source,/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
409,no-op,sample_source,/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
413,no-op,sample_source,/mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
416,no-op,sample_source,/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
420,no-op,sample_source,/mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
422,no-op,sample_source,/mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
425,no-op,sample_source,/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
426,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
429,no-op,sample_source,/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
433,no-op,sample_source,/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
435,no-op,sample_source,/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
436,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
445,no-op,sample_source,/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
446,no-op,sample_source,/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
448,no-op,sample_source,/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
449,no-op,sample_source,/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
459,no-op,sample_source,/mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
462,no-op,sample_source,/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
466,no-op,sample_source,/mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
471,no-op,sample_source,/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
473,no-op,manual_review,/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
474,no-op,sample_source,/mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
477,no-op,sample_source,/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
478,no-op,sample_source,/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
484,no-op,sample_source,/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
485,no-op,sample_source,/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
486,no-op,sample_source,/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
490,no-op,sample_source,/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
494,no-op,sample_source,/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
499,no-op,sample_source,/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
501,no-op,sample_source,/mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
502,no-op,sample_source,/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
503,no-op,sample_source,/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
511,no-op,sample_source,/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
517,no-op,sample_source,/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
519,no-op,sample_source,/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
526,no-op,sample_source,/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
532,no-op,sample_source,/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
537,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
538,no-op,sample_source,/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
545,no-op,sample_source,/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
548,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
555,no-op,sample_source,/mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
571,no-op,sample_source,/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
575,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
583,no-op,sample_source,/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
584,no-op,sample_source,/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
588,no-op,sample_source,/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
589,no-op,sample_source,/mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
594,no-op,sample_source,/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
595,no-op,sample_source,/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
598,no-op,sample_source,/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
607,no-op,sample_source,/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
609,no-op,sample_source,/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
610,no-op,sample_source,/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
613,no-op,sample_source,/mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
614,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
615,no-op,sample_source,/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
620,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
621,no-op,sample_source,/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
622,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
623,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
624,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
625,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
626,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
627,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
628,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
629,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
630,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
631,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
633,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
634,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
635,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
636,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
637,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
638,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
639,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
640,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
641,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
642,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
643,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
646,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
647,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
648,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
649,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
650,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
651,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
652,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
653,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
654,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
655,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
656,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
663,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
665,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
682,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
683,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
684,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
685,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
686,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
687,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
690,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
691,no-op,sample_source,/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
692,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
694,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv,,Series needs manual review (no season/episode found)
695,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV,,Series needs manual review (no season/episode found)
696,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
697,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
698,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
699,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
700,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
702,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
703,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
704,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
705,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
706,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
707,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
708,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
709,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
710,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
711,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
712,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
713,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
714,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
715,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
716,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
717,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
718,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
719,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
720,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
721,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
722,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
723,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
724,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
725,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
726,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
727,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
728,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
729,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
730,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
731,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
732,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
733,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
734,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
735,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
736,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
737,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
738,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
739,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
740,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
741,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
742,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
743,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
744,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
748,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
749,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
750,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
751,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
752,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
753,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
754,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
755,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
756,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
757,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
758,no-op,manual_review,/mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
759,no-op,manual_review,/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
760,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
761,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
762,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
763,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
764,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
765,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
766,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
767,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
768,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
769,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
770,no-op,sample_source,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
771,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
774,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
775,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4,,Series needs manual review (no season/episode found)
776,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
777,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
778,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
779,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
780,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
781,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
782,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
783,no-op,manual_review,/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
785,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
789,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
790,no-op,manual_review,/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
791,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
792,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
793,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
794,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
795,no-op,manual_review,/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
796,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
797,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
798,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
799,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
800,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
801,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
802,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
803,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
804,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
805,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
806,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
807,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
808,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
810,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
811,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
812,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
813,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
814,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
815,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
816,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
817,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
818,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
819,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
820,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
821,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
822,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
824,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
825,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
826,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
827,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
828,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
829,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
833,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
834,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
835,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
836,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
837,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
838,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
839,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
840,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
841,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
842,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
843,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
844,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
845,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
846,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
847,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
848,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
849,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
850,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
851,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
852,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
853,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
854,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
855,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
856,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
858,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv,,Series needs manual review (no season/episode found)
859,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
860,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
861,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
862,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
863,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
864,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
865,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
866,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
867,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
868,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
869,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
870,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
871,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
872,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
873,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
874,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
875,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
876,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
877,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
878,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
879,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
880,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
881,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
883,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
884,no-op,manual_review,/mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv,,Series needs manual review (no season/episode found)
885,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
886,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
887,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
888,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
889,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
890,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
892,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
893,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
894,no-op,manual_review,/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
895,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
896,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
897,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
898,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
899,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
900,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
901,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
902,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
903,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
904,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
905,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
906,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
907,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
908,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
910,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
911,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
912,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
913,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
914,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
915,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
916,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
917,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
918,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
919,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
920,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
921,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
922,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
923,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
924,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
925,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
926,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
927,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
928,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
931,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
932,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
933,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
934,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
935,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
937,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
938,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
939,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
940,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
941,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
943,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
944,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
945,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
946,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
947,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
948,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
949,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
950,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
951,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
952,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
953,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
955,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv,,Series needs manual review (no season/episode found)
956,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv,,Series needs manual review (no season/episode found)
957,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv,,Series needs manual review (no season/episode found)
958,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv,,Series needs manual review (no season/episode found)
959,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv,,Series needs manual review (no season/episode found)
960,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv,,Series needs manual review (no season/episode found)
961,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv,,Series needs manual review (no season/episode found)
962,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv,,Series needs manual review (no season/episode found)
963,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv,,Series needs manual review (no season/episode found)
964,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
965,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
966,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
967,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
968,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
969,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
970,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
971,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
972,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
973,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
974,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
975,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
976,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
977,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
978,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
979,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
980,no-op,manual_review,/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv,,Series needs manual review (no season/episode found)
981,no-op,manual_review,/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
983,no-op,manual_review,/mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,,Series needs manual review (no season/episode found)
985,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
988,no-op,manual_review,/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
989,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
990,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
991,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
992,no-op,manual_review,/mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,,Series needs manual review (no season/episode found)
993,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
994,no-op,manual_review,/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
995,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
996,no-op,manual_review,/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
997,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
998,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
999,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1000,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1001,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1002,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1003,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1004,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1005,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1006,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1007,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1008,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1009,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1011,no-op,manual_review,/mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv,,Series needs manual review (no season/episode found)
1012,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1013,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1014,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1015,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1016,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1017,no-op,sample_source,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1018,no-op,manual_review,/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1019,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1020,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1021,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1022,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1023,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1024,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1025,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1026,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1027,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1028,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1030,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1031,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1032,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1033,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1034,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1035,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1036,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1037,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1038,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1039,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1040,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1041,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1042,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1044,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1045,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1046,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1047,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1048,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1049,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1050,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1052,no-op,manual_review,/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1053,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1054,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1055,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1056,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv,,Series needs manual review (no season/episode found)
1057,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv,,Series needs manual review (no season/episode found)
1058,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv,,Series needs manual review (no season/episode found)
1059,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv,,Series needs manual review (no season/episode found)
1060,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv,,Series needs manual review (no season/episode found)
1061,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1062,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1063,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1064,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1065,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1066,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1067,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1068,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1069,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1070,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1071,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1072,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1073,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1074,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1075,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1076,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1077,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV,,Series needs manual review (no season/episode found)
1078,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv,,Series needs manual review (no season/episode found)
1080,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1081,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1082,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1083,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1084,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1085,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1086,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1087,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1088,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1089,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1090,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1092,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv,,Series needs manual review (no season/episode found)
1093,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv,,Series needs manual review (no season/episode found)
1094,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv,,Series needs manual review (no season/episode found)
1095,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv,,Series needs manual review (no season/episode found)
1096,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv,,Series needs manual review (no season/episode found)
1097,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv,,Series needs manual review (no season/episode found)
1098,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv,,Series needs manual review (no season/episode found)
1100,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1101,no-op,manual_review,/mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1196,no-op,sample_source,/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1400,no-op,sample_source,/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1414,no-op,high_episode,/mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4,,Anime files not organized in v1
1809,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv,,Anime files not organized in v1
1810,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv,,Anime files not organized in v1
1815,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv,,Anime files not organized in v1
1816,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv,,Anime files not organized in v1
1818,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv,,Anime files not organized in v1
1820,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv,,Anime files not organized in v1
1828,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv,,Anime files not organized in v1
1939,no-op,sample_source,/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1955,no-op,sample_source,/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
2051,no-op,sample_source,/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2252,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv,,Anime files not organized in v1
2260,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv,,Anime files not organized in v1
2317,no-op,sample_source,/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2498,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2502,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2503,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2504,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2505,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2506,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2508,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2512,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2513,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2514,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2515,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2517,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2521,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2525,no-op,high_episode,"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv",,Anime files not organized in v1
2528,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2529,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2531,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2538,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2541,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2546,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2548,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2554,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2555,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2560,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2561,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3075,no-op,high_episode,/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv,,Anime files not organized in v1
3121,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
3150,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1 index operation_type risk_flags source_path destination_path reason
2 7 no-op sample_source /mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
3 8 no-op sample_source /mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
4 11 no-op sample_source /mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
5 14 no-op sample_source /mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
6 15 no-op sample_source /mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
7 18 no-op sample_source /mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
8 25 no-op sample_source /mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
9 29 no-op sample_source /mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
10 33 no-op sample_source /mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
11 34 no-op sample_source /mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
12 38 no-op sample_source /mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
13 43 no-op sample_source /mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
14 45 no-op sample_source /mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
15 51 no-op sample_source /mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
16 52 no-op sample_source /mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
17 54 no-op sample_source /mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
18 63 no-op sample_source /mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
19 64 no-op sample_source /mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
20 65 no-op sample_source /mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
21 69 no-op sample_source /mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
22 70 no-op sample_source /mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
23 78 no-op sample_source /mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
24 79 no-op sample_source /mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
25 83 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
26 85 no-op sample_source /mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
27 94 no-op sample_source /mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
28 96 no-op sample_source /mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
29 98 no-op sample_source /mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
30 99 no-op sample_source /mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
31 101 no-op sample_source /mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
32 106 no-op sample_source /mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv Sample file excluded by plan include_sample_files=false
33 107 no-op sample_source /mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
34 108 no-op manual_review /mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv Movie needs manual review (no year found)
35 110 no-op sample_source /mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
36 114 no-op sample_source /mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
37 118 no-op sample_source /mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
38 121 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
39 126 no-op sample_source /mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
40 128 no-op sample_source /mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
41 132 no-op sample_source /mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
42 135 no-op sample_source /mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
43 137 no-op sample_source /mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
44 140 no-op sample_source /mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
45 146 no-op sample_source /mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
46 159 no-op sample_source /mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
47 160 no-op manual_review /mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
48 162 no-op sample_source /mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
49 165 no-op sample_source /mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
50 169 no-op manual_review /mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv Movie needs manual review (no year found)
51 171 no-op sample_source /mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
52 176 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
53 181 no-op sample_source /mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
54 183 no-op sample_source /mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
55 187 no-op sample_source /mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
56 191 no-op sample_source /mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
57 193 no-op sample_source /mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
58 195 no-op sample_source /mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
59 202 no-op sample_source /mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv Sample file excluded by plan include_sample_files=false
60 203 no-op sample_source /mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
61 218 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
62 220 no-op manual_review /mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4 Movie needs manual review (no year found)
63 223 no-op sample_source /mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
64 233 no-op sample_source /mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
65 235 no-op sample_source /mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
66 236 no-op sample_source /mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
67 240 no-op sample_source /mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
68 242 no-op sample_source /mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
69 243 no-op sample_source /mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
70 245 no-op sample_source /mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
71 248 no-op sample_source /mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
72 249 no-op sample_source /mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
73 255 no-op sample_source /mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
74 260 no-op sample_source /mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
75 261 no-op sample_source /mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
76 263 no-op sample_source /mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
77 267 no-op sample_source /mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
78 272 no-op sample_source /mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
79 275 no-op sample_source /mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
80 286 no-op sample_source /mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
81 292 no-op sample_source /mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
82 294 no-op sample_source /mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
83 305 no-op sample_source /mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
84 307 no-op sample_source /mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
85 309 no-op sample_source /mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
86 320 no-op sample_source /mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
87 322 no-op sample_source /mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
88 324 no-op sample_source /mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
89 327 no-op sample_source /mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
90 330 no-op manual_review /mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv Movie needs manual review (no year found)
91 333 no-op sample_source /mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
92 334 no-op sample_source /mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
93 336 no-op sample_source /mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv Sample file excluded by plan include_sample_files=false
94 337 no-op sample_source /mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
95 338 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
96 342 no-op sample_source /mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
97 349 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
98 350 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
99 351 no-op sample_source /mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
100 353 no-op sample_source /mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
101 355 no-op sample_source /mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
102 359 no-op sample_source /mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
103 360 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
104 362 no-op sample_source /mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
105 366 no-op sample_source /mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
106 372 no-op sample_source /mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
107 376 no-op sample_source /mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
108 380 no-op sample_source /mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
109 383 no-op sample_source /mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
110 384 no-op sample_source /mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
111 387 no-op sample_source /mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
112 395 no-op sample_source /mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
113 398 no-op sample_source /mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
114 399 no-op sample_source /mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
115 404 no-op sample_source /mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
116 405 no-op manual_review /mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4 Movie needs manual review (no year found)
117 408 no-op sample_source /mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
118 409 no-op sample_source /mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
119 413 no-op sample_source /mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
120 416 no-op sample_source /mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
121 420 no-op sample_source /mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
122 422 no-op sample_source /mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
123 425 no-op sample_source /mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
124 426 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
125 429 no-op sample_source /mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
126 433 no-op sample_source /mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
127 435 no-op sample_source /mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
128 436 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
129 445 no-op sample_source /mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
130 446 no-op sample_source /mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
131 448 no-op sample_source /mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
132 449 no-op sample_source /mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
133 459 no-op sample_source /mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
134 462 no-op sample_source /mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
135 466 no-op sample_source /mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
136 471 no-op sample_source /mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
137 473 no-op manual_review /mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
138 474 no-op sample_source /mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
139 477 no-op sample_source /mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
140 478 no-op sample_source /mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
141 484 no-op sample_source /mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
142 485 no-op sample_source /mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
143 486 no-op sample_source /mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
144 490 no-op sample_source /mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
145 494 no-op sample_source /mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
146 499 no-op sample_source /mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
147 501 no-op sample_source /mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
148 502 no-op sample_source /mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
149 503 no-op sample_source /mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
150 511 no-op sample_source /mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
151 517 no-op sample_source /mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
152 519 no-op sample_source /mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
153 526 no-op sample_source /mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
154 532 no-op sample_source /mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
155 537 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
156 538 no-op sample_source /mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
157 545 no-op sample_source /mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
158 548 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
159 555 no-op sample_source /mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
160 571 no-op sample_source /mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
161 575 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
162 583 no-op sample_source /mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
163 584 no-op sample_source /mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
164 588 no-op sample_source /mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
165 589 no-op sample_source /mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
166 594 no-op sample_source /mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
167 595 no-op sample_source /mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
168 598 no-op sample_source /mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
169 607 no-op sample_source /mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
170 609 no-op sample_source /mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
171 610 no-op sample_source /mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
172 613 no-op sample_source /mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
173 614 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
174 615 no-op sample_source /mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
175 620 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
176 621 no-op sample_source /mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
177 622 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
178 623 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
179 624 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
180 625 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
181 626 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
182 627 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
183 628 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
184 629 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
185 630 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
186 631 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
187 633 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
188 634 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
189 635 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
190 636 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
191 637 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
192 638 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
193 639 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
194 640 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
195 641 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
196 642 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
197 643 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
198 646 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
199 647 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
200 648 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
201 649 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
202 650 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
203 651 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
204 652 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
205 653 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
206 654 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
207 655 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
208 656 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
209 663 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
210 665 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
211 682 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
212 683 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
213 684 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
214 685 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
215 686 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
216 687 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
217 690 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
218 691 no-op sample_source /mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
219 692 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
220 694 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv Series needs manual review (no season/episode found)
221 695 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV Series needs manual review (no season/episode found)
222 696 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
223 697 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
224 698 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4 Series needs manual review (no season/episode found)
225 699 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4 Series needs manual review (no season/episode found)
226 700 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
227 702 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
228 703 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
229 704 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
230 705 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
231 706 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
232 707 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
233 708 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
234 709 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
235 710 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
236 711 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
237 712 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
238 713 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
239 714 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
240 715 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
241 716 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
242 717 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
243 718 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
244 719 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
245 720 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
246 721 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
247 722 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
248 723 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
249 724 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
250 725 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
251 726 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
252 727 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
253 728 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
254 729 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
255 730 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
256 731 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
257 732 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
258 733 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
259 734 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
260 735 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
261 736 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
262 737 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
263 738 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
264 739 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
265 740 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
266 741 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
267 742 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
268 743 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
269 744 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
270 748 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
271 749 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
272 750 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
273 751 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
274 752 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
275 753 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
276 754 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
277 755 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
278 756 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
279 757 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
280 758 no-op manual_review /mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
281 759 no-op manual_review /mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
282 760 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
283 761 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
284 762 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
285 763 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
286 764 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
287 765 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
288 766 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
289 767 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
290 768 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
291 769 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
292 770 no-op sample_source /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
293 771 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
294 774 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
295 775 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4 Series needs manual review (no season/episode found)
296 776 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
297 777 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
298 778 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
299 779 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
300 780 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
301 781 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
302 782 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
303 783 no-op manual_review /mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
304 785 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
305 789 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
306 790 no-op manual_review /mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
307 791 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
308 792 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
309 793 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
310 794 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
311 795 no-op manual_review /mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
312 796 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
313 797 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
314 798 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
315 799 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
316 800 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
317 801 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
318 802 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
319 803 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
320 804 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
321 805 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
322 806 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
323 807 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
324 808 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
325 810 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
326 811 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
327 812 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
328 813 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
329 814 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
330 815 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
331 816 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
332 817 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
333 818 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
334 819 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
335 820 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
336 821 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
337 822 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
338 824 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
339 825 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
340 826 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
341 827 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
342 828 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
343 829 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
344 833 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
345 834 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
346 835 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
347 836 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
348 837 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
349 838 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
350 839 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
351 840 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
352 841 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
353 842 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
354 843 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
355 844 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
356 845 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
357 846 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
358 847 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
359 848 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
360 849 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
361 850 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
362 851 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
363 852 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
364 853 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
365 854 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
366 855 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
367 856 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
368 858 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv Series needs manual review (no season/episode found)
369 859 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
370 860 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
371 861 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
372 862 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
373 863 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
374 864 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
375 865 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
376 866 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
377 867 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
378 868 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
379 869 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
380 870 no-op manual_review /mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
381 871 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
382 872 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
383 873 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
384 874 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
385 875 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
386 876 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
387 877 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
388 878 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
389 879 no-op manual_review /mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
390 880 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
391 881 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
392 883 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
393 884 no-op manual_review /mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv Series needs manual review (no season/episode found)
394 885 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
395 886 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
396 887 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
397 888 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
398 889 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
399 890 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
400 892 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
401 893 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
402 894 no-op manual_review /mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
403 895 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
404 896 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
405 897 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
406 898 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
407 899 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
408 900 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
409 901 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
410 902 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
411 903 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
412 904 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
413 905 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
414 906 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
415 907 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
416 908 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
417 910 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
418 911 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
419 912 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
420 913 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
421 914 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
422 915 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
423 916 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
424 917 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
425 918 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
426 919 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
427 920 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
428 921 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
429 922 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
430 923 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
431 924 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
432 925 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
433 926 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
434 927 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
435 928 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
436 931 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
437 932 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
438 933 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
439 934 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
440 935 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
441 937 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
442 938 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
443 939 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
444 940 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
445 941 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
446 943 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
447 944 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
448 945 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
449 946 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
450 947 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
451 948 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
452 949 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
453 950 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
454 951 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
455 952 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
456 953 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
457 955 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv Series needs manual review (no season/episode found)
458 956 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv Series needs manual review (no season/episode found)
459 957 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv Series needs manual review (no season/episode found)
460 958 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv Series needs manual review (no season/episode found)
461 959 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv Series needs manual review (no season/episode found)
462 960 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv Series needs manual review (no season/episode found)
463 961 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv Series needs manual review (no season/episode found)
464 962 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv Series needs manual review (no season/episode found)
465 963 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv Series needs manual review (no season/episode found)
466 964 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
467 965 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
468 966 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
469 967 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
470 968 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
471 969 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
472 970 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
473 971 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
474 972 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
475 973 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
476 974 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
477 975 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
478 976 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
479 977 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
480 978 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
481 979 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
482 980 no-op manual_review /mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv Series needs manual review (no season/episode found)
483 981 no-op manual_review /mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
484 983 no-op manual_review /mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv Series needs manual review (no season/episode found)
485 985 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
486 988 no-op manual_review /mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
487 989 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
488 990 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
489 991 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
490 992 no-op manual_review /mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv Series needs manual review (no season/episode found)
491 993 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
492 994 no-op manual_review /mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
493 995 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
494 996 no-op manual_review /mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
495 997 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
496 998 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
497 999 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
498 1000 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
499 1001 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
500 1002 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
501 1003 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
502 1004 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
503 1005 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
504 1006 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
505 1007 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
506 1008 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
507 1009 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
508 1011 no-op manual_review /mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv Series needs manual review (no season/episode found)
509 1012 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
510 1013 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
511 1014 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
512 1015 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
513 1016 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
514 1017 no-op sample_source /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
515 1018 no-op manual_review /mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
516 1019 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
517 1020 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
518 1021 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
519 1022 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
520 1023 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
521 1024 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
522 1025 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
523 1026 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
524 1027 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
525 1028 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
526 1030 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
527 1031 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
528 1032 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
529 1033 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
530 1034 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
531 1035 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
532 1036 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
533 1037 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
534 1038 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
535 1039 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
536 1040 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
537 1041 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
538 1042 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
539 1044 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
540 1045 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
541 1046 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
542 1047 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
543 1048 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
544 1049 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
545 1050 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
546 1052 no-op manual_review /mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
547 1053 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
548 1054 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
549 1055 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
550 1056 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv Series needs manual review (no season/episode found)
551 1057 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv Series needs manual review (no season/episode found)
552 1058 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv Series needs manual review (no season/episode found)
553 1059 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv Series needs manual review (no season/episode found)
554 1060 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv Series needs manual review (no season/episode found)
555 1061 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
556 1062 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
557 1063 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
558 1064 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
559 1065 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
560 1066 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
561 1067 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
562 1068 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
563 1069 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
564 1070 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
565 1071 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
566 1072 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
567 1073 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
568 1074 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
569 1075 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
570 1076 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
571 1077 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV Series needs manual review (no season/episode found)
572 1078 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv Series needs manual review (no season/episode found)
573 1080 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
574 1081 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
575 1082 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
576 1083 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
577 1084 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
578 1085 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
579 1086 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
580 1087 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
581 1088 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
582 1089 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
583 1090 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
584 1092 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv Series needs manual review (no season/episode found)
585 1093 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv Series needs manual review (no season/episode found)
586 1094 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv Series needs manual review (no season/episode found)
587 1095 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv Series needs manual review (no season/episode found)
588 1096 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv Series needs manual review (no season/episode found)
589 1097 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv Series needs manual review (no season/episode found)
590 1098 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv Series needs manual review (no season/episode found)
591 1100 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
592 1101 no-op manual_review /mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
593 1196 no-op sample_source /mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
594 1400 no-op sample_source /mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
595 1414 no-op high_episode /mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4 Anime files not organized in v1
596 1809 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv Anime files not organized in v1
597 1810 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv Anime files not organized in v1
598 1815 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv Anime files not organized in v1
599 1816 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv Anime files not organized in v1
600 1818 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv Anime files not organized in v1
601 1820 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv Anime files not organized in v1
602 1828 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv Anime files not organized in v1
603 1939 no-op sample_source /mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
604 1955 no-op sample_source /mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
605 2051 no-op sample_source /mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
606 2252 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv Anime files not organized in v1
607 2260 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv Anime files not organized in v1
608 2317 no-op sample_source /mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
609 2498 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv Anime files not organized in v1
610 2502 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv Anime files not organized in v1
611 2503 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv Anime files not organized in v1
612 2504 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv Anime files not organized in v1
613 2505 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv Anime files not organized in v1
614 2506 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv Anime files not organized in v1
615 2508 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv Anime files not organized in v1
616 2512 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv Anime files not organized in v1
617 2513 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv Anime files not organized in v1
618 2514 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv Anime files not organized in v1
619 2515 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv Anime files not organized in v1
620 2517 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv Anime files not organized in v1
621 2521 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv Anime files not organized in v1
622 2525 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv Anime files not organized in v1
623 2528 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv Anime files not organized in v1
624 2529 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv Anime files not organized in v1
625 2531 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv Anime files not organized in v1
626 2538 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv Anime files not organized in v1
627 2541 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv Anime files not organized in v1
628 2546 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv Anime files not organized in v1
629 2548 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv Anime files not organized in v1
630 2554 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv Anime files not organized in v1
631 2555 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv Anime files not organized in v1
632 2560 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv Anime files not organized in v1
633 2561 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv Anime files not organized in v1
634 3075 no-op high_episode /mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv Anime files not organized in v1
635 3121 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
636 3150 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
-29275
View File
File diff suppressed because it is too large Load Diff
-636
View File
@@ -1,636 +0,0 @@
index,operation_type,risk_flags,source_path,destination_path,reason
7,no-op,sample_source,/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
8,no-op,sample_source,/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
11,no-op,sample_source,/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
14,no-op,sample_source,/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
15,no-op,sample_source,/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
18,no-op,sample_source,/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
25,no-op,sample_source,/mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
29,no-op,sample_source,/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
33,no-op,sample_source,/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
34,no-op,sample_source,/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
38,no-op,sample_source,/mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
43,no-op,sample_source,/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
45,no-op,sample_source,/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
51,no-op,sample_source,/mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
52,no-op,sample_source,/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
54,no-op,sample_source,/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
63,no-op,sample_source,/mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
64,no-op,sample_source,/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
65,no-op,sample_source,/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
69,no-op,sample_source,/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
70,no-op,sample_source,/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
78,no-op,sample_source,/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
79,no-op,sample_source,/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
83,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
85,no-op,sample_source,/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
94,no-op,sample_source,/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
96,no-op,sample_source,/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
98,no-op,sample_source,/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
99,no-op,sample_source,/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
101,no-op,sample_source,/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
106,no-op,sample_source,/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,,Sample file excluded by plan include_sample_files=false
107,no-op,sample_source,/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
108,no-op,manual_review,/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv,,Movie needs manual review (no year found)
110,no-op,sample_source,/mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
114,no-op,sample_source,/mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
118,no-op,sample_source,/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
121,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
126,no-op,sample_source,/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
128,no-op,sample_source,/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
132,no-op,sample_source,/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
135,no-op,sample_source,/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
137,no-op,sample_source,/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
140,no-op,sample_source,/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
146,no-op,sample_source,/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
159,no-op,sample_source,/mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
160,no-op,manual_review,/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
162,no-op,sample_source,/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
165,no-op,sample_source,/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
169,no-op,manual_review,/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv,,Movie needs manual review (no year found)
171,no-op,sample_source,/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
176,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
181,no-op,sample_source,/mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
183,no-op,sample_source,/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
187,no-op,sample_source,/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
191,no-op,sample_source,/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
193,no-op,sample_source,/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
195,no-op,sample_source,/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
202,no-op,sample_source,/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv,,Sample file excluded by plan include_sample_files=false
203,no-op,sample_source,/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
218,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
220,no-op,manual_review,/mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4,,Movie needs manual review (no year found)
223,no-op,sample_source,/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
233,no-op,sample_source,/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
235,no-op,sample_source,/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
236,no-op,sample_source,/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
240,no-op,sample_source,/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
242,no-op,sample_source,/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
243,no-op,sample_source,/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
245,no-op,sample_source,/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
248,no-op,sample_source,/mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
249,no-op,sample_source,/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
255,no-op,sample_source,/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
260,no-op,sample_source,/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
261,no-op,sample_source,/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
263,no-op,sample_source,/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
267,no-op,sample_source,/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
272,no-op,sample_source,/mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
275,no-op,sample_source,/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
286,no-op,sample_source,/mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
292,no-op,sample_source,/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
294,no-op,sample_source,/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
305,no-op,sample_source,/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
307,no-op,sample_source,/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
309,no-op,sample_source,/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
320,no-op,sample_source,/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
322,no-op,sample_source,/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
324,no-op,sample_source,/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
327,no-op,sample_source,/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
330,no-op,manual_review,/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv,,Movie needs manual review (no year found)
333,no-op,sample_source,/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
334,no-op,sample_source,/mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
336,no-op,sample_source,/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv,,Sample file excluded by plan include_sample_files=false
337,no-op,sample_source,/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
338,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
342,no-op,sample_source,/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
349,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
350,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
351,no-op,sample_source,/mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
353,no-op,sample_source,/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
355,no-op,sample_source,/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
359,no-op,sample_source,/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
360,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
362,no-op,sample_source,/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
366,no-op,sample_source,/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
372,no-op,sample_source,/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
376,no-op,sample_source,/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
380,no-op,sample_source,/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
383,no-op,sample_source,/mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
384,no-op,sample_source,/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
387,no-op,sample_source,/mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
395,no-op,sample_source,/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
398,no-op,sample_source,/mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
399,no-op,sample_source,/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
404,no-op,sample_source,/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
405,no-op,manual_review,"/mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4",,Movie needs manual review (no year found)
408,no-op,sample_source,/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
409,no-op,sample_source,/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
413,no-op,sample_source,/mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
416,no-op,sample_source,/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
420,no-op,sample_source,/mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
422,no-op,sample_source,/mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
425,no-op,sample_source,/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
426,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
429,no-op,sample_source,/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
433,no-op,sample_source,/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
435,no-op,sample_source,/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
436,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
445,no-op,sample_source,/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
446,no-op,sample_source,/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
448,no-op,sample_source,/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
449,no-op,sample_source,/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
459,no-op,sample_source,/mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
462,no-op,sample_source,/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
466,no-op,sample_source,/mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
471,no-op,sample_source,/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
473,no-op,manual_review,/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
474,no-op,sample_source,/mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
477,no-op,sample_source,/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
478,no-op,sample_source,/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
484,no-op,sample_source,/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
485,no-op,sample_source,/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
486,no-op,sample_source,/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
490,no-op,sample_source,/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
494,no-op,sample_source,/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
499,no-op,sample_source,/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
501,no-op,sample_source,/mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
502,no-op,sample_source,/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
503,no-op,sample_source,/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
511,no-op,sample_source,/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
517,no-op,sample_source,/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
519,no-op,sample_source,/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
526,no-op,sample_source,/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
532,no-op,sample_source,/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
537,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
538,no-op,sample_source,/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
545,no-op,sample_source,/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
548,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
555,no-op,sample_source,/mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
571,no-op,sample_source,/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
575,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
583,no-op,sample_source,/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
584,no-op,sample_source,/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
588,no-op,sample_source,/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
589,no-op,sample_source,/mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
594,no-op,sample_source,/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
595,no-op,sample_source,/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
598,no-op,sample_source,/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
607,no-op,sample_source,/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
609,no-op,sample_source,/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
610,no-op,sample_source,/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
613,no-op,sample_source,/mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
614,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
615,no-op,sample_source,/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
620,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
621,no-op,sample_source,/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
622,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
623,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
624,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
625,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
626,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
627,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
628,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
629,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
630,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
631,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
633,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
634,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
635,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
636,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
637,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
638,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
639,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
640,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
641,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
642,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
643,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
646,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
647,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
648,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
649,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
650,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
651,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
652,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
653,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
654,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
655,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
656,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
663,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
665,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
682,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
683,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
684,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
685,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
686,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
687,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
690,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
691,no-op,sample_source,/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
692,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
694,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv,,Series needs manual review (no season/episode found)
695,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV,,Series needs manual review (no season/episode found)
696,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
697,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
698,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
699,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
700,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
702,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
703,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
704,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
705,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
706,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
707,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
708,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
709,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
710,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
711,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
712,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
713,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
714,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
715,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
716,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
717,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
718,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
719,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
720,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
721,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
722,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
723,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
724,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
725,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
726,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
727,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
728,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
729,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
730,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
731,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
732,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
733,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
734,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
735,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
736,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
737,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
738,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
739,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
740,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
741,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
742,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
743,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
744,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
748,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
749,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
750,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
751,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
752,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
753,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
754,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
755,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
756,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
757,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
758,no-op,manual_review,/mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
759,no-op,manual_review,/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
760,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
761,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
762,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
763,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
764,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
765,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
766,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
767,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
768,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
769,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
770,no-op,sample_source,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
771,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
774,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
775,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4,,Series needs manual review (no season/episode found)
776,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
777,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
778,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
779,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
780,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
781,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
782,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
783,no-op,manual_review,/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
785,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
789,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
790,no-op,manual_review,/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
791,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
792,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
793,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
794,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
795,no-op,manual_review,/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
796,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
797,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
798,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
799,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
800,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
801,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
802,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
803,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
804,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
805,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
806,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
807,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
808,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
810,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
811,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
812,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
813,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
814,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
815,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
816,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
817,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
818,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
819,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
820,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
821,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
822,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
824,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
825,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
826,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
827,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
828,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
829,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
833,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
834,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
835,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
836,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
837,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
838,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
839,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
840,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
841,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
842,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
843,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
844,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
845,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
846,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
847,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
848,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
849,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
850,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
851,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
852,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
853,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
854,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
855,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
856,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
858,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv,,Series needs manual review (no season/episode found)
859,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
860,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
861,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
862,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
863,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
864,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
865,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
866,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
867,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
868,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
869,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
870,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
871,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
872,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
873,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
874,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
875,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
876,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
877,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
878,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
879,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
880,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
881,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
883,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
884,no-op,manual_review,/mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv,,Series needs manual review (no season/episode found)
885,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
886,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
887,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
888,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
889,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
890,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
892,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
893,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
894,no-op,manual_review,/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
895,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
896,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
897,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
898,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
899,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
900,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
901,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
902,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
903,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
904,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
905,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
906,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
907,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
908,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
910,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
911,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
912,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
913,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
914,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
915,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
916,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
917,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
918,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
919,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
920,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
921,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
922,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
923,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
924,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
925,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
926,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
927,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
928,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
931,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
932,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
933,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
934,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
935,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
937,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
938,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
939,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
940,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
941,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
943,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
944,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
945,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
946,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
947,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
948,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
949,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
950,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
951,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
952,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
953,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
955,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv,,Series needs manual review (no season/episode found)
956,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv,,Series needs manual review (no season/episode found)
957,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv,,Series needs manual review (no season/episode found)
958,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv,,Series needs manual review (no season/episode found)
959,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv,,Series needs manual review (no season/episode found)
960,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv,,Series needs manual review (no season/episode found)
961,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv,,Series needs manual review (no season/episode found)
962,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv,,Series needs manual review (no season/episode found)
963,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv,,Series needs manual review (no season/episode found)
964,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
965,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
966,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
967,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
968,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
969,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
970,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
971,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
972,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
973,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
974,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
975,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
976,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
977,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
978,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
979,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
980,no-op,manual_review,/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv,,Series needs manual review (no season/episode found)
981,no-op,manual_review,/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
983,no-op,manual_review,/mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,,Series needs manual review (no season/episode found)
985,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
988,no-op,manual_review,/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
989,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
990,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
991,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
992,no-op,manual_review,/mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,,Series needs manual review (no season/episode found)
993,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
994,no-op,manual_review,/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
995,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
996,no-op,manual_review,/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
997,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
998,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
999,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1000,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1001,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1002,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1003,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1004,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1005,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1006,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1007,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1008,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1009,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1011,no-op,manual_review,/mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv,,Series needs manual review (no season/episode found)
1012,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1013,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1014,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1015,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1016,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1017,no-op,sample_source,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1018,no-op,manual_review,/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1019,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1020,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1021,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1022,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1023,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1024,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1025,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1026,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1027,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1028,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1030,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1031,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1032,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1033,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1034,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1035,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1036,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1037,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1038,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1039,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1040,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1041,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1042,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1044,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1045,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1046,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1047,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1048,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1049,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1050,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1052,no-op,manual_review,/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1053,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1054,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1055,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1056,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv,,Series needs manual review (no season/episode found)
1057,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv,,Series needs manual review (no season/episode found)
1058,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv,,Series needs manual review (no season/episode found)
1059,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv,,Series needs manual review (no season/episode found)
1060,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv,,Series needs manual review (no season/episode found)
1061,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1062,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1063,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1064,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1065,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1066,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1067,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1068,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1069,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1070,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1071,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1072,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1073,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1074,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1075,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1076,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1077,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV,,Series needs manual review (no season/episode found)
1078,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv,,Series needs manual review (no season/episode found)
1080,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1081,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1082,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1083,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1084,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1085,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1086,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1087,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1088,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1089,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1090,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1092,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv,,Series needs manual review (no season/episode found)
1093,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv,,Series needs manual review (no season/episode found)
1094,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv,,Series needs manual review (no season/episode found)
1095,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv,,Series needs manual review (no season/episode found)
1096,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv,,Series needs manual review (no season/episode found)
1097,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv,,Series needs manual review (no season/episode found)
1098,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv,,Series needs manual review (no season/episode found)
1100,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1101,no-op,manual_review,/mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1196,no-op,sample_source,/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1400,no-op,sample_source,/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1414,no-op,high_episode,/mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4,,Anime files not organized in v1
1809,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv,,Anime files not organized in v1
1810,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv,,Anime files not organized in v1
1815,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv,,Anime files not organized in v1
1816,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv,,Anime files not organized in v1
1818,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv,,Anime files not organized in v1
1820,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv,,Anime files not organized in v1
1828,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv,,Anime files not organized in v1
1939,no-op,sample_source,/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1955,no-op,sample_source,/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
2051,no-op,sample_source,/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2252,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv,,Anime files not organized in v1
2260,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv,,Anime files not organized in v1
2317,no-op,sample_source,/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2498,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2502,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2503,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2504,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2505,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2506,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2508,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2512,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2513,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2514,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2515,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2517,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2521,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2525,no-op,high_episode,"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv",,Anime files not organized in v1
2528,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2529,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2531,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2538,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2541,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2546,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2548,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2554,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2555,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2560,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
2561,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3075,no-op,high_episode,/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv,,Anime files not organized in v1
3121,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
3150,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1 index operation_type risk_flags source_path destination_path reason
2 7 no-op sample_source /mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
3 8 no-op sample_source /mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
4 11 no-op sample_source /mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
5 14 no-op sample_source /mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
6 15 no-op sample_source /mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
7 18 no-op sample_source /mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
8 25 no-op sample_source /mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
9 29 no-op sample_source /mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
10 33 no-op sample_source /mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
11 34 no-op sample_source /mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
12 38 no-op sample_source /mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
13 43 no-op sample_source /mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
14 45 no-op sample_source /mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
15 51 no-op sample_source /mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
16 52 no-op sample_source /mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
17 54 no-op sample_source /mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
18 63 no-op sample_source /mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
19 64 no-op sample_source /mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
20 65 no-op sample_source /mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
21 69 no-op sample_source /mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
22 70 no-op sample_source /mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
23 78 no-op sample_source /mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
24 79 no-op sample_source /mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
25 83 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
26 85 no-op sample_source /mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
27 94 no-op sample_source /mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
28 96 no-op sample_source /mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
29 98 no-op sample_source /mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
30 99 no-op sample_source /mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
31 101 no-op sample_source /mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
32 106 no-op sample_source /mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv Sample file excluded by plan include_sample_files=false
33 107 no-op sample_source /mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
34 108 no-op manual_review /mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv Movie needs manual review (no year found)
35 110 no-op sample_source /mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
36 114 no-op sample_source /mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
37 118 no-op sample_source /mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
38 121 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
39 126 no-op sample_source /mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
40 128 no-op sample_source /mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
41 132 no-op sample_source /mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
42 135 no-op sample_source /mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
43 137 no-op sample_source /mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
44 140 no-op sample_source /mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
45 146 no-op sample_source /mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
46 159 no-op sample_source /mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
47 160 no-op manual_review /mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
48 162 no-op sample_source /mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
49 165 no-op sample_source /mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
50 169 no-op manual_review /mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv Movie needs manual review (no year found)
51 171 no-op sample_source /mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
52 176 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
53 181 no-op sample_source /mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
54 183 no-op sample_source /mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
55 187 no-op sample_source /mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
56 191 no-op sample_source /mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
57 193 no-op sample_source /mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
58 195 no-op sample_source /mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
59 202 no-op sample_source /mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv Sample file excluded by plan include_sample_files=false
60 203 no-op sample_source /mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
61 218 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
62 220 no-op manual_review /mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4 Movie needs manual review (no year found)
63 223 no-op sample_source /mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
64 233 no-op sample_source /mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
65 235 no-op sample_source /mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
66 236 no-op sample_source /mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
67 240 no-op sample_source /mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
68 242 no-op sample_source /mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
69 243 no-op sample_source /mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
70 245 no-op sample_source /mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
71 248 no-op sample_source /mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
72 249 no-op sample_source /mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
73 255 no-op sample_source /mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
74 260 no-op sample_source /mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
75 261 no-op sample_source /mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
76 263 no-op sample_source /mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
77 267 no-op sample_source /mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
78 272 no-op sample_source /mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
79 275 no-op sample_source /mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
80 286 no-op sample_source /mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
81 292 no-op sample_source /mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
82 294 no-op sample_source /mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
83 305 no-op sample_source /mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
84 307 no-op sample_source /mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
85 309 no-op sample_source /mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
86 320 no-op sample_source /mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
87 322 no-op sample_source /mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
88 324 no-op sample_source /mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
89 327 no-op sample_source /mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
90 330 no-op manual_review /mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv Movie needs manual review (no year found)
91 333 no-op sample_source /mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
92 334 no-op sample_source /mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
93 336 no-op sample_source /mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv Sample file excluded by plan include_sample_files=false
94 337 no-op sample_source /mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
95 338 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
96 342 no-op sample_source /mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
97 349 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
98 350 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
99 351 no-op sample_source /mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
100 353 no-op sample_source /mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
101 355 no-op sample_source /mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
102 359 no-op sample_source /mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
103 360 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
104 362 no-op sample_source /mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
105 366 no-op sample_source /mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
106 372 no-op sample_source /mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
107 376 no-op sample_source /mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
108 380 no-op sample_source /mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
109 383 no-op sample_source /mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
110 384 no-op sample_source /mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
111 387 no-op sample_source /mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
112 395 no-op sample_source /mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
113 398 no-op sample_source /mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
114 399 no-op sample_source /mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
115 404 no-op sample_source /mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
116 405 no-op manual_review /mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4 Movie needs manual review (no year found)
117 408 no-op sample_source /mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
118 409 no-op sample_source /mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
119 413 no-op sample_source /mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
120 416 no-op sample_source /mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
121 420 no-op sample_source /mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
122 422 no-op sample_source /mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
123 425 no-op sample_source /mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
124 426 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
125 429 no-op sample_source /mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
126 433 no-op sample_source /mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
127 435 no-op sample_source /mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
128 436 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
129 445 no-op sample_source /mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
130 446 no-op sample_source /mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
131 448 no-op sample_source /mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
132 449 no-op sample_source /mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
133 459 no-op sample_source /mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
134 462 no-op sample_source /mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
135 466 no-op sample_source /mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
136 471 no-op sample_source /mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
137 473 no-op manual_review /mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
138 474 no-op sample_source /mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
139 477 no-op sample_source /mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
140 478 no-op sample_source /mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
141 484 no-op sample_source /mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
142 485 no-op sample_source /mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
143 486 no-op sample_source /mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
144 490 no-op sample_source /mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
145 494 no-op sample_source /mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
146 499 no-op sample_source /mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
147 501 no-op sample_source /mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
148 502 no-op sample_source /mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
149 503 no-op sample_source /mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
150 511 no-op sample_source /mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
151 517 no-op sample_source /mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
152 519 no-op sample_source /mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
153 526 no-op sample_source /mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
154 532 no-op sample_source /mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
155 537 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
156 538 no-op sample_source /mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
157 545 no-op sample_source /mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
158 548 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
159 555 no-op sample_source /mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
160 571 no-op sample_source /mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
161 575 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
162 583 no-op sample_source /mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
163 584 no-op sample_source /mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
164 588 no-op sample_source /mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
165 589 no-op sample_source /mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
166 594 no-op sample_source /mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
167 595 no-op sample_source /mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
168 598 no-op sample_source /mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
169 607 no-op sample_source /mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
170 609 no-op sample_source /mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
171 610 no-op sample_source /mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
172 613 no-op sample_source /mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
173 614 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
174 615 no-op sample_source /mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
175 620 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
176 621 no-op sample_source /mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
177 622 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
178 623 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
179 624 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
180 625 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
181 626 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
182 627 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
183 628 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
184 629 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
185 630 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
186 631 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
187 633 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
188 634 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
189 635 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
190 636 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
191 637 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
192 638 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
193 639 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
194 640 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
195 641 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
196 642 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
197 643 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
198 646 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
199 647 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
200 648 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
201 649 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
202 650 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
203 651 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
204 652 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
205 653 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
206 654 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
207 655 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
208 656 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
209 663 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
210 665 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
211 682 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
212 683 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
213 684 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
214 685 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
215 686 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
216 687 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
217 690 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
218 691 no-op sample_source /mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
219 692 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
220 694 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv Series needs manual review (no season/episode found)
221 695 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV Series needs manual review (no season/episode found)
222 696 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
223 697 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
224 698 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4 Series needs manual review (no season/episode found)
225 699 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4 Series needs manual review (no season/episode found)
226 700 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
227 702 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
228 703 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
229 704 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
230 705 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
231 706 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
232 707 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
233 708 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
234 709 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
235 710 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
236 711 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
237 712 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
238 713 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
239 714 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
240 715 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
241 716 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
242 717 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
243 718 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
244 719 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
245 720 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
246 721 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
247 722 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
248 723 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
249 724 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
250 725 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
251 726 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
252 727 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
253 728 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
254 729 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
255 730 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
256 731 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
257 732 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
258 733 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
259 734 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
260 735 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
261 736 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
262 737 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
263 738 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
264 739 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
265 740 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
266 741 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
267 742 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
268 743 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
269 744 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
270 748 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
271 749 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
272 750 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
273 751 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
274 752 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
275 753 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
276 754 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
277 755 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
278 756 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
279 757 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
280 758 no-op manual_review /mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
281 759 no-op manual_review /mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
282 760 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
283 761 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
284 762 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
285 763 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
286 764 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
287 765 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
288 766 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
289 767 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
290 768 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
291 769 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
292 770 no-op sample_source /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
293 771 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
294 774 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
295 775 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4 Series needs manual review (no season/episode found)
296 776 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
297 777 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
298 778 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
299 779 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
300 780 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
301 781 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
302 782 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
303 783 no-op manual_review /mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
304 785 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
305 789 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
306 790 no-op manual_review /mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
307 791 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
308 792 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
309 793 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
310 794 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
311 795 no-op manual_review /mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
312 796 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
313 797 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
314 798 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
315 799 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
316 800 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
317 801 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
318 802 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
319 803 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
320 804 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
321 805 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
322 806 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
323 807 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
324 808 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
325 810 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
326 811 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
327 812 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
328 813 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
329 814 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
330 815 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
331 816 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
332 817 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
333 818 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
334 819 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
335 820 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
336 821 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
337 822 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
338 824 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
339 825 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
340 826 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
341 827 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
342 828 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
343 829 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
344 833 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
345 834 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
346 835 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
347 836 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
348 837 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
349 838 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
350 839 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
351 840 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
352 841 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
353 842 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
354 843 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
355 844 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
356 845 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
357 846 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
358 847 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
359 848 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
360 849 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
361 850 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
362 851 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
363 852 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
364 853 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
365 854 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
366 855 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
367 856 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
368 858 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv Series needs manual review (no season/episode found)
369 859 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
370 860 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
371 861 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
372 862 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
373 863 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
374 864 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
375 865 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
376 866 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
377 867 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
378 868 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
379 869 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
380 870 no-op manual_review /mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
381 871 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
382 872 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
383 873 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
384 874 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
385 875 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
386 876 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
387 877 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
388 878 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
389 879 no-op manual_review /mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
390 880 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
391 881 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
392 883 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
393 884 no-op manual_review /mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv Series needs manual review (no season/episode found)
394 885 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
395 886 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
396 887 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
397 888 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
398 889 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
399 890 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
400 892 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
401 893 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
402 894 no-op manual_review /mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
403 895 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
404 896 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
405 897 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
406 898 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
407 899 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
408 900 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
409 901 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
410 902 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
411 903 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
412 904 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
413 905 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
414 906 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
415 907 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
416 908 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
417 910 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
418 911 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
419 912 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
420 913 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
421 914 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
422 915 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
423 916 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
424 917 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
425 918 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
426 919 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
427 920 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
428 921 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
429 922 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
430 923 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
431 924 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
432 925 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
433 926 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
434 927 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
435 928 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
436 931 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
437 932 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
438 933 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
439 934 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
440 935 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
441 937 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
442 938 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
443 939 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
444 940 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
445 941 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
446 943 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
447 944 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
448 945 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
449 946 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
450 947 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
451 948 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
452 949 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
453 950 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
454 951 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
455 952 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
456 953 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
457 955 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv Series needs manual review (no season/episode found)
458 956 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv Series needs manual review (no season/episode found)
459 957 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv Series needs manual review (no season/episode found)
460 958 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv Series needs manual review (no season/episode found)
461 959 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv Series needs manual review (no season/episode found)
462 960 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv Series needs manual review (no season/episode found)
463 961 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv Series needs manual review (no season/episode found)
464 962 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv Series needs manual review (no season/episode found)
465 963 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv Series needs manual review (no season/episode found)
466 964 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
467 965 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
468 966 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
469 967 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
470 968 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
471 969 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
472 970 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
473 971 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
474 972 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
475 973 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
476 974 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
477 975 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
478 976 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
479 977 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
480 978 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
481 979 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
482 980 no-op manual_review /mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv Series needs manual review (no season/episode found)
483 981 no-op manual_review /mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
484 983 no-op manual_review /mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv Series needs manual review (no season/episode found)
485 985 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
486 988 no-op manual_review /mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
487 989 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
488 990 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
489 991 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
490 992 no-op manual_review /mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv Series needs manual review (no season/episode found)
491 993 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
492 994 no-op manual_review /mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
493 995 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
494 996 no-op manual_review /mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
495 997 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
496 998 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
497 999 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
498 1000 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
499 1001 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
500 1002 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
501 1003 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
502 1004 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
503 1005 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
504 1006 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
505 1007 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
506 1008 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
507 1009 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
508 1011 no-op manual_review /mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv Series needs manual review (no season/episode found)
509 1012 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
510 1013 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
511 1014 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
512 1015 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
513 1016 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
514 1017 no-op sample_source /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
515 1018 no-op manual_review /mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
516 1019 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
517 1020 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
518 1021 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
519 1022 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
520 1023 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
521 1024 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
522 1025 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
523 1026 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
524 1027 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
525 1028 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
526 1030 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
527 1031 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
528 1032 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
529 1033 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
530 1034 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
531 1035 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
532 1036 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
533 1037 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
534 1038 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
535 1039 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
536 1040 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
537 1041 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
538 1042 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
539 1044 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
540 1045 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
541 1046 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
542 1047 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
543 1048 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
544 1049 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
545 1050 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
546 1052 no-op manual_review /mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
547 1053 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
548 1054 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
549 1055 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
550 1056 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv Series needs manual review (no season/episode found)
551 1057 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv Series needs manual review (no season/episode found)
552 1058 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv Series needs manual review (no season/episode found)
553 1059 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv Series needs manual review (no season/episode found)
554 1060 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv Series needs manual review (no season/episode found)
555 1061 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
556 1062 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
557 1063 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
558 1064 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
559 1065 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
560 1066 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
561 1067 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
562 1068 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
563 1069 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
564 1070 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
565 1071 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
566 1072 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
567 1073 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
568 1074 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
569 1075 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
570 1076 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
571 1077 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV Series needs manual review (no season/episode found)
572 1078 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv Series needs manual review (no season/episode found)
573 1080 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
574 1081 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
575 1082 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
576 1083 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
577 1084 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
578 1085 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
579 1086 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
580 1087 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
581 1088 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
582 1089 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
583 1090 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
584 1092 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv Series needs manual review (no season/episode found)
585 1093 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv Series needs manual review (no season/episode found)
586 1094 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv Series needs manual review (no season/episode found)
587 1095 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv Series needs manual review (no season/episode found)
588 1096 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv Series needs manual review (no season/episode found)
589 1097 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv Series needs manual review (no season/episode found)
590 1098 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv Series needs manual review (no season/episode found)
591 1100 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
592 1101 no-op manual_review /mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
593 1196 no-op sample_source /mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
594 1400 no-op sample_source /mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
595 1414 no-op high_episode /mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4 Anime files not organized in v1
596 1809 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv Anime files not organized in v1
597 1810 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv Anime files not organized in v1
598 1815 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv Anime files not organized in v1
599 1816 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv Anime files not organized in v1
600 1818 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv Anime files not organized in v1
601 1820 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv Anime files not organized in v1
602 1828 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv Anime files not organized in v1
603 1939 no-op sample_source /mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
604 1955 no-op sample_source /mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
605 2051 no-op sample_source /mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
606 2252 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv Anime files not organized in v1
607 2260 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv Anime files not organized in v1
608 2317 no-op sample_source /mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
609 2498 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv Anime files not organized in v1
610 2502 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv Anime files not organized in v1
611 2503 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv Anime files not organized in v1
612 2504 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv Anime files not organized in v1
613 2505 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv Anime files not organized in v1
614 2506 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv Anime files not organized in v1
615 2508 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv Anime files not organized in v1
616 2512 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv Anime files not organized in v1
617 2513 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv Anime files not organized in v1
618 2514 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv Anime files not organized in v1
619 2515 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv Anime files not organized in v1
620 2517 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv Anime files not organized in v1
621 2521 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv Anime files not organized in v1
622 2525 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv Anime files not organized in v1
623 2528 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv Anime files not organized in v1
624 2529 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv Anime files not organized in v1
625 2531 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv Anime files not organized in v1
626 2538 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv Anime files not organized in v1
627 2541 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv Anime files not organized in v1
628 2546 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv Anime files not organized in v1
629 2548 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv Anime files not organized in v1
630 2554 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv Anime files not organized in v1
631 2555 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv Anime files not organized in v1
632 2560 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv Anime files not organized in v1
633 2561 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv Anime files not organized in v1
634 3075 no-op high_episode /mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv Anime files not organized in v1
635 3121 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
636 3150 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
File diff suppressed because it is too large Load Diff
-38887
View File
File diff suppressed because it is too large Load Diff
-636
View File
@@ -1,636 +0,0 @@
index,operation_type,risk_flags,source_path,destination_path,reason
4,no-op,sample_source,/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
6,no-op,sample_source,/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
8,no-op,sample_source,/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
12,no-op,sample_source,/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
14,no-op,sample_source,/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
18,no-op,sample_source,/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
38,no-op,sample_source,/mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
40,no-op,sample_source,/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
43,no-op,sample_source,/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
45,no-op,sample_source,/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
46,no-op,sample_source,/mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
47,no-op,sample_source,/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
49,no-op,sample_source,/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
53,no-op,sample_source,/mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
54,no-op,sample_source,/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
57,no-op,sample_source,/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
64,no-op,sample_source,/mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
65,no-op,sample_source,/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
67,no-op,sample_source,/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
71,no-op,sample_source,/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
72,no-op,sample_source,/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
77,no-op,sample_source,/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
79,no-op,sample_source,/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
84,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
85,no-op,sample_source,/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
94,no-op,sample_source,/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
97,no-op,sample_source,/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
99,no-op,sample_source,/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
101,no-op,sample_source,/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
104,no-op,sample_source,/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
107,no-op,sample_source,/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,,Sample file excluded by plan include_sample_files=false
108,no-op,sample_source,/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
111,no-op,manual_review,/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv,,Movie needs manual review (no year found)
112,no-op,sample_source,/mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
114,no-op,sample_source,/mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
121,no-op,sample_source,/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
124,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
129,no-op,sample_source,/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
132,no-op,sample_source,/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
137,no-op,sample_source,/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
141,no-op,sample_source,/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
145,no-op,sample_source,/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
150,no-op,sample_source,/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
154,no-op,sample_source,/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
163,no-op,sample_source,/mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
164,no-op,manual_review,/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
166,no-op,sample_source,/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
169,no-op,sample_source,/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
172,no-op,manual_review,/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv,,Movie needs manual review (no year found)
175,no-op,sample_source,/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
180,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
182,no-op,sample_source,/mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
183,no-op,sample_source,/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
186,no-op,sample_source,/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
187,no-op,sample_source,/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
188,no-op,sample_source,/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
191,no-op,sample_source,/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
197,no-op,sample_source,/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv,,Sample file excluded by plan include_sample_files=false
200,no-op,sample_source,/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
211,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
214,no-op,manual_review,/mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4,,Movie needs manual review (no year found)
218,no-op,sample_source,/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
223,no-op,sample_source,/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
226,no-op,sample_source,/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
228,no-op,sample_source,/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
230,no-op,sample_source,/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
234,no-op,sample_source,/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
236,no-op,sample_source,/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
239,no-op,sample_source,/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
244,no-op,sample_source,/mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
246,no-op,sample_source,/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
249,no-op,sample_source,/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
252,no-op,sample_source,/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
255,no-op,sample_source,/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
260,no-op,sample_source,/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
265,no-op,sample_source,/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
268,no-op,sample_source,/mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
270,no-op,sample_source,/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
278,no-op,sample_source,/mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
283,no-op,sample_source,/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
286,no-op,sample_source,/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
294,no-op,sample_source,/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
296,no-op,sample_source,/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
297,no-op,sample_source,/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
309,no-op,sample_source,/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
310,no-op,sample_source,/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
313,no-op,sample_source,/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
320,no-op,sample_source,/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
324,no-op,manual_review,/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv,,Movie needs manual review (no year found)
326,no-op,sample_source,/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
327,no-op,sample_source,/mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
328,no-op,sample_source,/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv,,Sample file excluded by plan include_sample_files=false
330,no-op,sample_source,/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
331,no-op,sample_source,/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
334,no-op,sample_source,/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
339,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
340,no-op,sample_source,/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
342,no-op,sample_source,/mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
344,no-op,sample_source,/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
346,no-op,sample_source,/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
350,no-op,sample_source,/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
352,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
356,no-op,sample_source,/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
361,no-op,sample_source,/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
370,no-op,sample_source,/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
376,no-op,sample_source,/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
381,no-op,sample_source,/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
386,no-op,sample_source,/mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
391,no-op,sample_source,/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
392,no-op,sample_source,/mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
397,no-op,sample_source,/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
399,no-op,sample_source,/mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
401,no-op,sample_source,/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
407,no-op,sample_source,/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
409,no-op,manual_review,"/mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4",,Movie needs manual review (no year found)
413,no-op,sample_source,/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
416,no-op,sample_source,/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
420,no-op,sample_source,/mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
423,no-op,sample_source,/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
426,no-op,sample_source,/mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
430,no-op,sample_source,/mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
432,no-op,sample_source,/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
433,no-op,manual_review,/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,,Movie needs manual review (no year found)
436,no-op,sample_source,/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
442,no-op,sample_source,/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
446,no-op,sample_source,/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
449,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
456,no-op,sample_source,/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
458,no-op,sample_source,/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
461,no-op,sample_source,/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
465,no-op,sample_source,/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
472,no-op,sample_source,/mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
474,no-op,sample_source,/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
479,no-op,sample_source,/mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
482,no-op,sample_source,/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
484,no-op,manual_review,/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv,,Movie needs manual review (no year found)
485,no-op,sample_source,/mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
487,no-op,sample_source,/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
490,no-op,sample_source,/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
499,no-op,sample_source,/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
502,no-op,sample_source,/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
503,no-op,sample_source,/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
504,no-op,sample_source,/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
506,no-op,sample_source,/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
513,no-op,sample_source,/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
515,no-op,sample_source,/mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
516,no-op,sample_source,/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
518,no-op,sample_source,/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
522,no-op,sample_source,/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
534,no-op,sample_source,/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
537,no-op,sample_source,/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
542,no-op,sample_source,/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
547,no-op,sample_source,/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
548,no-op,sample_source,/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
549,no-op,sample_source,/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
553,no-op,sample_source,/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
556,no-op,sample_source,/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
565,no-op,sample_source,/mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
572,no-op,sample_source,/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
575,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
581,no-op,sample_source,/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
584,no-op,sample_source,/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
590,no-op,sample_source,/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
591,no-op,sample_source,/mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
593,no-op,sample_source,/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
596,no-op,sample_source,/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
599,no-op,sample_source,/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
604,no-op,sample_source,/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
607,no-op,sample_source,/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
609,no-op,sample_source,/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
610,no-op,sample_source,/mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
611,no-op,sample_source,/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
613,no-op,sample_source,/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
616,no-op,sample_source,/mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
617,no-op,sample_source,/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
631,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
632,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
633,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
634,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
635,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
636,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
637,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
638,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
639,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
640,no-op,manual_review,/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
644,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
645,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
646,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
647,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
648,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
649,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
650,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
651,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
652,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
653,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
654,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
655,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
656,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
657,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
658,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
659,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
660,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
661,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
662,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
663,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
664,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
665,no-op,manual_review,/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,,Series needs manual review (no season/episode found)
678,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
679,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
746,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
747,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
748,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
749,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
750,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
751,no-op,manual_review,/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv,,Series needs manual review (no season/episode found)
760,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
788,no-op,sample_source,/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
832,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
834,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv,,Series needs manual review (no season/episode found)
835,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV,,Series needs manual review (no season/episode found)
836,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
837,no-op,manual_review,/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
838,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
839,no-op,manual_review,"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4",,Series needs manual review (no season/episode found)
849,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
862,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
863,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
864,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
865,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
866,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
867,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
868,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
869,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
870,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
871,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
872,no-op,manual_review,/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
873,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
874,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
875,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
876,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
877,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
878,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
879,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
880,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
881,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
882,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
883,no-op,manual_review,/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,,Series needs manual review (no season/episode found)
936,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
937,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
938,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
939,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
940,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
941,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
942,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
943,no-op,manual_review,/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4,,Series needs manual review (no season/episode found)
955,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
956,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
957,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
958,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
959,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
960,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
961,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
962,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
963,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
964,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
965,no-op,manual_review,/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
966,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
967,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
990,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
991,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
992,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
993,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
994,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
995,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
996,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
997,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
998,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
999,no-op,manual_review,/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1000,no-op,manual_review,/mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1013,no-op,manual_review,/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1022,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1023,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1024,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1025,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1026,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1027,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1028,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1029,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1030,no-op,manual_review,/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1031,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
1032,no-op,sample_source,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
1033,no-op,manual_review,/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv,,Series needs manual review (no season/episode found)
1056,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1057,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4,,Series needs manual review (no season/episode found)
1058,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1059,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1060,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1061,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1062,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1063,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1064,no-op,manual_review,/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,,Series needs manual review (no season/episode found)
1090,no-op,manual_review,/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1116,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1161,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1162,no-op,manual_review,/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1188,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1217,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
1218,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
1219,no-op,manual_review,/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,,Series needs manual review (no season/episode found)
1232,no-op,manual_review,/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1247,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1256,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1257,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1258,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1259,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1260,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1261,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1262,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1263,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1264,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1265,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1266,no-op,manual_review,/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,,Series needs manual review (no season/episode found)
1267,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1290,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1291,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1292,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1293,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1294,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1295,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1296,no-op,manual_review,/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,,Series needs manual review (no season/episode found)
1298,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1299,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1300,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1301,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1310,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
1311,no-op,manual_review,/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4,,Series needs manual review (no season/episode found)
1324,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1325,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1326,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1327,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1328,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1329,no-op,manual_review,/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1350,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1351,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1352,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1353,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1354,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1355,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1356,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1357,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1358,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1359,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1360,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1361,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1362,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1363,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1364,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1365,no-op,manual_review,/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv,,Series needs manual review (no season/episode found)
1380,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1381,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1382,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1383,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1384,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1385,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1386,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1387,no-op,manual_review,/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,,Series needs manual review (no season/episode found)
1390,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv,,Series needs manual review (no season/episode found)
1420,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1421,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1422,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1423,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1424,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1425,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1426,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1427,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1428,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1429,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1430,no-op,manual_review,/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi,,Series needs manual review (no season/episode found)
1431,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1443,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1444,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1445,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1446,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1447,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1448,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1449,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1450,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1451,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1452,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1453,no-op,manual_review,/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1499,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1510,no-op,manual_review,/mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv,,Series needs manual review (no season/episode found)
1520,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1521,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1522,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1523,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1524,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1525,no-op,manual_review,/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv,,Series needs manual review (no season/episode found)
1526,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1527,no-op,manual_review,/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1537,no-op,manual_review,/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
1578,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1579,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1580,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1581,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1582,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1583,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1584,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1585,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1586,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1587,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1588,no-op,manual_review,/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,,Series needs manual review (no season/episode found)
1609,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1622,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1623,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1658,no-op,manual_review,/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1684,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1685,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1686,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1687,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1688,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1689,no-op,manual_review,/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4,,Series needs manual review (no season/episode found)
1692,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1693,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1694,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1695,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1696,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1697,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1698,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1699,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1700,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1701,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1702,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1703,no-op,manual_review,/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1723,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1724,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1725,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1726,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1727,no-op,manual_review,/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1729,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1730,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1731,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1732,no-op,manual_review,/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1733,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1734,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1735,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1736,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1737,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1738,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1739,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1740,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1741,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1742,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1743,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1744,no-op,manual_review,/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,,Series needs manual review (no season/episode found)
1757,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv,,Series needs manual review (no season/episode found)
1758,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv,,Series needs manual review (no season/episode found)
1759,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv,,Series needs manual review (no season/episode found)
1760,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv,,Series needs manual review (no season/episode found)
1761,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv,,Series needs manual review (no season/episode found)
1762,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv,,Series needs manual review (no season/episode found)
1763,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv,,Series needs manual review (no season/episode found)
1764,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv,,Series needs manual review (no season/episode found)
1765,no-op,manual_review,/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv,,Series needs manual review (no season/episode found)
1774,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1775,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1776,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1777,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1778,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1779,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1780,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1781,no-op,manual_review,/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1782,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1783,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1784,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1785,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1786,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1787,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1788,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1789,no-op,manual_review,/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1790,no-op,manual_review,/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv,,Series needs manual review (no season/episode found)
1791,no-op,manual_review,/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1792,no-op,manual_review,/mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,,Series needs manual review (no season/episode found)
1794,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1813,no-op,manual_review,/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1844,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1845,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1846,no-op,manual_review,/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1847,no-op,manual_review,/mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,,Series needs manual review (no season/episode found)
1852,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1863,no-op,manual_review,/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1864,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1875,no-op,manual_review,/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1876,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1877,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
1878,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
1879,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1880,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1881,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1882,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1883,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1884,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1885,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1886,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1887,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1888,no-op,manual_review,/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
1899,no-op,manual_review,/mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv,,Series needs manual review (no season/episode found)
1900,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1901,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1902,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1903,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1904,no-op,manual_review,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,,Series needs manual review (no season/episode found)
1905,no-op,sample_source,/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1906,no-op,manual_review,/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
1907,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1908,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1909,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1910,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1911,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1912,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1913,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1914,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1915,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1916,no-op,manual_review,/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,,Series needs manual review (no season/episode found)
1917,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1918,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1919,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1920,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1921,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1922,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1923,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1924,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1925,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1926,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1927,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1928,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1929,no-op,manual_review,/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4,,Series needs manual review (no season/episode found)
1957,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1958,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1959,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1960,no-op,manual_review,/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv,,Series needs manual review (no season/episode found)
1961,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1962,no-op,manual_review,/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
1963,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
2012,no-op,manual_review,/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv,,Series needs manual review (no season/episode found)
2013,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
2014,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
2036,no-op,manual_review,/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,,Series needs manual review (no season/episode found)
2037,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv,,Series needs manual review (no season/episode found)
2038,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv,,Series needs manual review (no season/episode found)
2039,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv,,Series needs manual review (no season/episode found)
2040,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv,,Series needs manual review (no season/episode found)
2041,no-op,manual_review,/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv,,Series needs manual review (no season/episode found)
2042,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2043,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2044,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2045,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2046,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2047,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2048,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2049,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2050,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2051,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2052,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2053,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2054,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2055,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2056,no-op,manual_review,/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,,Series needs manual review (no season/episode found)
2057,no-op,manual_review,/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv,,Series needs manual review (no season/episode found)
2058,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV,,Series needs manual review (no season/episode found)
2059,no-op,manual_review,/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv,,Series needs manual review (no season/episode found)
2064,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2065,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2066,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2067,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2068,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2069,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2070,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2071,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2072,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2073,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2074,no-op,manual_review,/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,,Series needs manual review (no season/episode found)
2094,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv,,Series needs manual review (no season/episode found)
2095,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv,,Series needs manual review (no season/episode found)
2096,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv,,Series needs manual review (no season/episode found)
2097,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv,,Series needs manual review (no season/episode found)
2098,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv,,Series needs manual review (no season/episode found)
2099,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv,,Series needs manual review (no season/episode found)
2100,no-op,manual_review,/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv,,Series needs manual review (no season/episode found)
2136,no-op,manual_review,/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
2138,no-op,manual_review,/mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv,,Series needs manual review (no season/episode found)
2232,no-op,sample_source,/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2436,no-op,sample_source,/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2450,no-op,high_episode,/mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4,,Anime files not organized in v1
2845,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv,,Anime files not organized in v1
2846,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv,,Anime files not organized in v1
2851,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv,,Anime files not organized in v1
2852,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv,,Anime files not organized in v1
2854,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv,,Anime files not organized in v1
2856,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv,,Anime files not organized in v1
2864,no-op,high_episode,/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv,,Anime files not organized in v1
2975,no-op,sample_source,/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
2991,no-op,sample_source,/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
3087,no-op,sample_source,/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
3288,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv,,Anime files not organized in v1
3296,no-op,high_episode,/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv,,Anime files not organized in v1
3353,no-op,sample_source,/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
3534,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3538,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3539,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3540,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3541,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3542,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3544,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3548,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3549,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3550,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3551,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3553,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3557,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3561,no-op,high_episode,"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv",,Anime files not organized in v1
3564,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3565,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3567,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3574,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3577,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3582,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3584,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3590,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3591,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3596,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
3597,no-op,high_episode,/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv,,Anime files not organized in v1
4111,no-op,high_episode,/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv,,Anime files not organized in v1
4157,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,,Sample file excluded by plan include_sample_files=false
4186,no-op,sample_source,/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv,,Sample file excluded by plan include_sample_files=false
1 index operation_type risk_flags source_path destination_path reason
2 4 no-op sample_source /mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
3 6 no-op sample_source /mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
4 8 no-op sample_source /mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
5 12 no-op sample_source /mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
6 14 no-op sample_source /mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
7 18 no-op sample_source /mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
8 38 no-op sample_source /mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
9 40 no-op sample_source /mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
10 43 no-op sample_source /mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
11 45 no-op sample_source /mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
12 46 no-op sample_source /mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
13 47 no-op sample_source /mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
14 49 no-op sample_source /mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
15 53 no-op sample_source /mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
16 54 no-op sample_source /mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
17 57 no-op sample_source /mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
18 64 no-op sample_source /mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
19 65 no-op sample_source /mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
20 67 no-op sample_source /mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
21 71 no-op sample_source /mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
22 72 no-op sample_source /mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
23 77 no-op sample_source /mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
24 79 no-op sample_source /mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
25 84 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
26 85 no-op sample_source /mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
27 94 no-op sample_source /mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
28 97 no-op sample_source /mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
29 99 no-op sample_source /mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
30 101 no-op sample_source /mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
31 104 no-op sample_source /mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
32 107 no-op sample_source /mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv Sample file excluded by plan include_sample_files=false
33 108 no-op sample_source /mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
34 111 no-op manual_review /mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv Movie needs manual review (no year found)
35 112 no-op sample_source /mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
36 114 no-op sample_source /mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
37 121 no-op sample_source /mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
38 124 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
39 129 no-op sample_source /mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
40 132 no-op sample_source /mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
41 137 no-op sample_source /mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
42 141 no-op sample_source /mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
43 145 no-op sample_source /mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
44 150 no-op sample_source /mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
45 154 no-op sample_source /mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
46 163 no-op sample_source /mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
47 164 no-op manual_review /mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
48 166 no-op sample_source /mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
49 169 no-op sample_source /mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
50 172 no-op manual_review /mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv Movie needs manual review (no year found)
51 175 no-op sample_source /mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
52 180 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
53 182 no-op sample_source /mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
54 183 no-op sample_source /mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
55 186 no-op sample_source /mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
56 187 no-op sample_source /mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
57 188 no-op sample_source /mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
58 191 no-op sample_source /mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
59 197 no-op sample_source /mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv Sample file excluded by plan include_sample_files=false
60 200 no-op sample_source /mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
61 211 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
62 214 no-op manual_review /mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4 Movie needs manual review (no year found)
63 218 no-op sample_source /mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
64 223 no-op sample_source /mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
65 226 no-op sample_source /mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
66 228 no-op sample_source /mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
67 230 no-op sample_source /mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
68 234 no-op sample_source /mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
69 236 no-op sample_source /mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
70 239 no-op sample_source /mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
71 244 no-op sample_source /mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
72 246 no-op sample_source /mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
73 249 no-op sample_source /mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
74 252 no-op sample_source /mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
75 255 no-op sample_source /mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
76 260 no-op sample_source /mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
77 265 no-op sample_source /mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
78 268 no-op sample_source /mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
79 270 no-op sample_source /mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
80 278 no-op sample_source /mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
81 283 no-op sample_source /mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
82 286 no-op sample_source /mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
83 294 no-op sample_source /mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
84 296 no-op sample_source /mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
85 297 no-op sample_source /mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
86 309 no-op sample_source /mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
87 310 no-op sample_source /mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
88 313 no-op sample_source /mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
89 320 no-op sample_source /mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
90 324 no-op manual_review /mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv Movie needs manual review (no year found)
91 326 no-op sample_source /mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
92 327 no-op sample_source /mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
93 328 no-op sample_source /mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv Sample file excluded by plan include_sample_files=false
94 330 no-op sample_source /mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
95 331 no-op sample_source /mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
96 334 no-op sample_source /mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
97 339 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
98 340 no-op sample_source /mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
99 342 no-op sample_source /mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
100 344 no-op sample_source /mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
101 346 no-op sample_source /mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
102 350 no-op sample_source /mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
103 352 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
104 356 no-op sample_source /mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
105 361 no-op sample_source /mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
106 370 no-op sample_source /mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
107 376 no-op sample_source /mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
108 381 no-op sample_source /mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
109 386 no-op sample_source /mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
110 391 no-op sample_source /mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
111 392 no-op sample_source /mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
112 397 no-op sample_source /mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
113 399 no-op sample_source /mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
114 401 no-op sample_source /mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
115 407 no-op sample_source /mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
116 409 no-op manual_review /mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4 Movie needs manual review (no year found)
117 413 no-op sample_source /mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
118 416 no-op sample_source /mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
119 420 no-op sample_source /mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
120 423 no-op sample_source /mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
121 426 no-op sample_source /mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
122 430 no-op sample_source /mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
123 432 no-op sample_source /mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
124 433 no-op manual_review /mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv Movie needs manual review (no year found)
125 436 no-op sample_source /mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
126 442 no-op sample_source /mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
127 446 no-op sample_source /mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
128 449 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
129 456 no-op sample_source /mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
130 458 no-op sample_source /mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
131 461 no-op sample_source /mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
132 465 no-op sample_source /mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
133 472 no-op sample_source /mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
134 474 no-op sample_source /mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
135 479 no-op sample_source /mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
136 482 no-op sample_source /mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
137 484 no-op manual_review /mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv Movie needs manual review (no year found)
138 485 no-op sample_source /mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
139 487 no-op sample_source /mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
140 490 no-op sample_source /mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
141 499 no-op sample_source /mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
142 502 no-op sample_source /mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
143 503 no-op sample_source /mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
144 504 no-op sample_source /mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
145 506 no-op sample_source /mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
146 513 no-op sample_source /mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
147 515 no-op sample_source /mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
148 516 no-op sample_source /mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
149 518 no-op sample_source /mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
150 522 no-op sample_source /mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
151 534 no-op sample_source /mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
152 537 no-op sample_source /mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
153 542 no-op sample_source /mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
154 547 no-op sample_source /mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
155 548 no-op sample_source /mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
156 549 no-op sample_source /mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
157 553 no-op sample_source /mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
158 556 no-op sample_source /mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
159 565 no-op sample_source /mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
160 572 no-op sample_source /mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
161 575 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
162 581 no-op sample_source /mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
163 584 no-op sample_source /mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
164 590 no-op sample_source /mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
165 591 no-op sample_source /mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
166 593 no-op sample_source /mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
167 596 no-op sample_source /mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
168 599 no-op sample_source /mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
169 604 no-op sample_source /mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
170 607 no-op sample_source /mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
171 609 no-op sample_source /mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
172 610 no-op sample_source /mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
173 611 no-op sample_source /mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
174 613 no-op sample_source /mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
175 616 no-op sample_source /mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
176 617 no-op sample_source /mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
177 631 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
178 632 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
179 633 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
180 634 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
181 635 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
182 636 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
183 637 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
184 638 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
185 639 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
186 640 no-op manual_review /mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
187 644 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
188 645 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
189 646 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
190 647 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
191 648 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
192 649 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
193 650 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
194 651 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
195 652 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
196 653 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
197 654 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
198 655 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
199 656 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
200 657 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
201 658 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
202 659 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
203 660 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
204 661 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
205 662 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
206 663 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
207 664 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
208 665 no-op manual_review /mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv Series needs manual review (no season/episode found)
209 678 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
210 679 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
211 746 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
212 747 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
213 748 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
214 749 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
215 750 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
216 751 no-op manual_review /mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv Series needs manual review (no season/episode found)
217 760 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
218 788 no-op sample_source /mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
219 832 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
220 834 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv Series needs manual review (no season/episode found)
221 835 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV Series needs manual review (no season/episode found)
222 836 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
223 837 no-op manual_review /mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
224 838 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4 Series needs manual review (no season/episode found)
225 839 no-op manual_review /mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4 Series needs manual review (no season/episode found)
226 849 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
227 862 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
228 863 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
229 864 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
230 865 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
231 866 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
232 867 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
233 868 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
234 869 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
235 870 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
236 871 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
237 872 no-op manual_review /mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
238 873 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
239 874 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
240 875 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
241 876 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
242 877 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
243 878 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
244 879 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
245 880 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
246 881 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
247 882 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
248 883 no-op manual_review /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv Series needs manual review (no season/episode found)
249 936 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
250 937 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
251 938 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
252 939 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
253 940 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
254 941 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
255 942 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
256 943 no-op manual_review /mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4 Series needs manual review (no season/episode found)
257 955 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
258 956 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
259 957 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
260 958 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
261 959 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
262 960 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
263 961 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
264 962 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
265 963 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
266 964 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
267 965 no-op manual_review /mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
268 966 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
269 967 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
270 990 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
271 991 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
272 992 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
273 993 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
274 994 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
275 995 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
276 996 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
277 997 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
278 998 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
279 999 no-op manual_review /mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
280 1000 no-op manual_review /mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
281 1013 no-op manual_review /mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
282 1022 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
283 1023 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
284 1024 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
285 1025 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
286 1026 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
287 1027 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
288 1028 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
289 1029 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
290 1030 no-op manual_review /mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
291 1031 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
292 1032 no-op sample_source /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
293 1033 no-op manual_review /mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv Series needs manual review (no season/episode found)
294 1056 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
295 1057 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4 Series needs manual review (no season/episode found)
296 1058 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
297 1059 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
298 1060 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
299 1061 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
300 1062 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
301 1063 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
302 1064 no-op manual_review /mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4 Series needs manual review (no season/episode found)
303 1090 no-op manual_review /mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
304 1116 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
305 1161 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
306 1162 no-op manual_review /mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
307 1188 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
308 1217 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
309 1218 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
310 1219 no-op manual_review /mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4 Series needs manual review (no season/episode found)
311 1232 no-op manual_review /mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
312 1247 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
313 1256 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
314 1257 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
315 1258 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
316 1259 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
317 1260 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
318 1261 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
319 1262 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
320 1263 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
321 1264 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
322 1265 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
323 1266 no-op manual_review /mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv Series needs manual review (no season/episode found)
324 1267 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
325 1290 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
326 1291 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
327 1292 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
328 1293 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
329 1294 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
330 1295 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
331 1296 no-op manual_review /mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv Series needs manual review (no season/episode found)
332 1298 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
333 1299 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
334 1300 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
335 1301 no-op manual_review /mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
336 1310 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
337 1311 no-op manual_review /mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4 Series needs manual review (no season/episode found)
338 1324 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
339 1325 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
340 1326 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
341 1327 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
342 1328 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
343 1329 no-op manual_review /mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
344 1350 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
345 1351 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
346 1352 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
347 1353 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
348 1354 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
349 1355 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
350 1356 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
351 1357 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
352 1358 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
353 1359 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
354 1360 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
355 1361 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
356 1362 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
357 1363 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
358 1364 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
359 1365 no-op manual_review /mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv Series needs manual review (no season/episode found)
360 1380 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
361 1381 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
362 1382 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
363 1383 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
364 1384 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
365 1385 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
366 1386 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
367 1387 no-op manual_review /mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv Series needs manual review (no season/episode found)
368 1390 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv Series needs manual review (no season/episode found)
369 1420 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
370 1421 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
371 1422 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
372 1423 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
373 1424 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
374 1425 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
375 1426 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
376 1427 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
377 1428 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
378 1429 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
379 1430 no-op manual_review /mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi Series needs manual review (no season/episode found)
380 1431 no-op manual_review /mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
381 1443 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
382 1444 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
383 1445 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
384 1446 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
385 1447 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
386 1448 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
387 1449 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
388 1450 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
389 1451 no-op manual_review /mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
390 1452 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
391 1453 no-op manual_review /mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
392 1499 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
393 1510 no-op manual_review /mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv Series needs manual review (no season/episode found)
394 1520 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
395 1521 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
396 1522 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
397 1523 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
398 1524 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
399 1525 no-op manual_review /mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv Series needs manual review (no season/episode found)
400 1526 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
401 1527 no-op manual_review /mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
402 1537 no-op manual_review /mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
403 1578 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
404 1579 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
405 1580 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
406 1581 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
407 1582 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
408 1583 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
409 1584 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
410 1585 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
411 1586 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
412 1587 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
413 1588 no-op manual_review /mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv Series needs manual review (no season/episode found)
414 1609 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
415 1622 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
416 1623 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
417 1658 no-op manual_review /mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
418 1684 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
419 1685 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
420 1686 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
421 1687 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
422 1688 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
423 1689 no-op manual_review /mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4 Series needs manual review (no season/episode found)
424 1692 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
425 1693 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
426 1694 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
427 1695 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
428 1696 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
429 1697 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
430 1698 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
431 1699 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
432 1700 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
433 1701 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
434 1702 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
435 1703 no-op manual_review /mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
436 1723 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
437 1724 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
438 1725 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
439 1726 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
440 1727 no-op manual_review /mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
441 1729 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
442 1730 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
443 1731 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
444 1732 no-op manual_review /mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
445 1733 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
446 1734 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
447 1735 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
448 1736 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
449 1737 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
450 1738 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
451 1739 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
452 1740 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
453 1741 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
454 1742 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
455 1743 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
456 1744 no-op manual_review /mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv Series needs manual review (no season/episode found)
457 1757 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv Series needs manual review (no season/episode found)
458 1758 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv Series needs manual review (no season/episode found)
459 1759 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv Series needs manual review (no season/episode found)
460 1760 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv Series needs manual review (no season/episode found)
461 1761 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv Series needs manual review (no season/episode found)
462 1762 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv Series needs manual review (no season/episode found)
463 1763 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv Series needs manual review (no season/episode found)
464 1764 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv Series needs manual review (no season/episode found)
465 1765 no-op manual_review /mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv Series needs manual review (no season/episode found)
466 1774 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
467 1775 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
468 1776 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
469 1777 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
470 1778 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
471 1779 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
472 1780 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
473 1781 no-op manual_review /mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
474 1782 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
475 1783 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
476 1784 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
477 1785 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
478 1786 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
479 1787 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
480 1788 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
481 1789 no-op manual_review /mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
482 1790 no-op manual_review /mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv Series needs manual review (no season/episode found)
483 1791 no-op manual_review /mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
484 1792 no-op manual_review /mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv Series needs manual review (no season/episode found)
485 1794 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
486 1813 no-op manual_review /mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
487 1844 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
488 1845 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
489 1846 no-op manual_review /mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
490 1847 no-op manual_review /mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv Series needs manual review (no season/episode found)
491 1852 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
492 1863 no-op manual_review /mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
493 1864 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
494 1875 no-op manual_review /mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
495 1876 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
496 1877 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
497 1878 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
498 1879 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
499 1880 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
500 1881 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
501 1882 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
502 1883 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
503 1884 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
504 1885 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
505 1886 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
506 1887 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
507 1888 no-op manual_review /mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
508 1899 no-op manual_review /mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv Series needs manual review (no season/episode found)
509 1900 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
510 1901 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
511 1902 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
512 1903 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
513 1904 no-op manual_review /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv Series needs manual review (no season/episode found)
514 1905 no-op sample_source /mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
515 1906 no-op manual_review /mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
516 1907 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
517 1908 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
518 1909 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
519 1910 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
520 1911 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
521 1912 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
522 1913 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
523 1914 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
524 1915 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
525 1916 no-op manual_review /mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv Series needs manual review (no season/episode found)
526 1917 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
527 1918 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
528 1919 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
529 1920 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
530 1921 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
531 1922 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
532 1923 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
533 1924 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
534 1925 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
535 1926 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
536 1927 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
537 1928 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
538 1929 no-op manual_review /mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4 Series needs manual review (no season/episode found)
539 1957 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
540 1958 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
541 1959 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
542 1960 no-op manual_review /mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv Series needs manual review (no season/episode found)
543 1961 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
544 1962 no-op manual_review /mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
545 1963 no-op manual_review /mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
546 2012 no-op manual_review /mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv Series needs manual review (no season/episode found)
547 2013 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
548 2014 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
549 2036 no-op manual_review /mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv Series needs manual review (no season/episode found)
550 2037 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv Series needs manual review (no season/episode found)
551 2038 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv Series needs manual review (no season/episode found)
552 2039 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv Series needs manual review (no season/episode found)
553 2040 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv Series needs manual review (no season/episode found)
554 2041 no-op manual_review /mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv Series needs manual review (no season/episode found)
555 2042 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
556 2043 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
557 2044 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
558 2045 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
559 2046 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
560 2047 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
561 2048 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
562 2049 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
563 2050 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
564 2051 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
565 2052 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
566 2053 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
567 2054 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
568 2055 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
569 2056 no-op manual_review /mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv Series needs manual review (no season/episode found)
570 2057 no-op manual_review /mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv Series needs manual review (no season/episode found)
571 2058 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV Series needs manual review (no season/episode found)
572 2059 no-op manual_review /mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv Series needs manual review (no season/episode found)
573 2064 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
574 2065 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
575 2066 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
576 2067 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
577 2068 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
578 2069 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
579 2070 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
580 2071 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
581 2072 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
582 2073 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
583 2074 no-op manual_review /mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv Series needs manual review (no season/episode found)
584 2094 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv Series needs manual review (no season/episode found)
585 2095 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv Series needs manual review (no season/episode found)
586 2096 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv Series needs manual review (no season/episode found)
587 2097 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv Series needs manual review (no season/episode found)
588 2098 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv Series needs manual review (no season/episode found)
589 2099 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv Series needs manual review (no season/episode found)
590 2100 no-op manual_review /mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv Series needs manual review (no season/episode found)
591 2136 no-op manual_review /mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
592 2138 no-op manual_review /mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv Series needs manual review (no season/episode found)
593 2232 no-op sample_source /mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
594 2436 no-op sample_source /mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
595 2450 no-op high_episode /mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4 Anime files not organized in v1
596 2845 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv Anime files not organized in v1
597 2846 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv Anime files not organized in v1
598 2851 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv Anime files not organized in v1
599 2852 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv Anime files not organized in v1
600 2854 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv Anime files not organized in v1
601 2856 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv Anime files not organized in v1
602 2864 no-op high_episode /mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv Anime files not organized in v1
603 2975 no-op sample_source /mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
604 2991 no-op sample_source /mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
605 3087 no-op sample_source /mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
606 3288 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv Anime files not organized in v1
607 3296 no-op high_episode /mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv Anime files not organized in v1
608 3353 no-op sample_source /mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
609 3534 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv Anime files not organized in v1
610 3538 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv Anime files not organized in v1
611 3539 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv Anime files not organized in v1
612 3540 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv Anime files not organized in v1
613 3541 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv Anime files not organized in v1
614 3542 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv Anime files not organized in v1
615 3544 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv Anime files not organized in v1
616 3548 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv Anime files not organized in v1
617 3549 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv Anime files not organized in v1
618 3550 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv Anime files not organized in v1
619 3551 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv Anime files not organized in v1
620 3553 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv Anime files not organized in v1
621 3557 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv Anime files not organized in v1
622 3561 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv Anime files not organized in v1
623 3564 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv Anime files not organized in v1
624 3565 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv Anime files not organized in v1
625 3567 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv Anime files not organized in v1
626 3574 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv Anime files not organized in v1
627 3577 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv Anime files not organized in v1
628 3582 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv Anime files not organized in v1
629 3584 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv Anime files not organized in v1
630 3590 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv Anime files not organized in v1
631 3591 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv Anime files not organized in v1
632 3596 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv Anime files not organized in v1
633 3597 no-op high_episode /mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv Anime files not organized in v1
634 4111 no-op high_episode /mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv Anime files not organized in v1
635 4157 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv Sample file excluded by plan include_sample_files=false
636 4186 no-op sample_source /mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv Sample file excluded by plan include_sample_files=false
-12737
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -1 +0,0 @@
index,operation_type,risk_flags,source_path,destination_path,reason
1 index operation_type risk_flags source_path destination_path reason
-2234
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -1 +0,0 @@
index,operation_type,risk_flags,source_path,destination_path,reason
1 index operation_type risk_flags source_path destination_path reason
+16 -1
View File
@@ -1,9 +1,13 @@
[project]
name = "video-library-manager"
version = "0.1.0"
version = "0.2.0"
description = "A Python-based CLI tool for managing personal video collections"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "windyboy" },
]
dependencies = [
"click>=8.1.0",
"pyyaml>=6.0",
@@ -13,6 +17,8 @@ dependencies = [
dev = [
"pytest>=7.4.0",
"hypothesis>=6.82.0",
"pytest-cov>=4.1.0",
"ruff>=0.4.0",
]
tui = [
"textual>=0.47.0",
@@ -36,3 +42,12 @@ python_functions = ["test_*"]
[tool.hypothesis]
max_examples = 100
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
+39 -40
View File
@@ -1,9 +1,9 @@
# Documentation Status
- Synced with refactor baseline on 2026-02-16.
- Synced with artifacts/ baseline on 2026-06-01.
---
name: vlm-library-workflow
description: Operate and extend the Video Library Manager (`vlm`) with a safety-first, human-in-the-loop workflow across scan, parse, enrich, analyze, plan, review-plan, execute, rollback, and developer verification. Use when requests involve organizing a video library, producing or reviewing `inventory.csv`/`identities.json`/`analysis.json`/`plan.json`, tuning VLM config templates, resolving duplicates or episode gaps, running dry-run/confirm execution, recovering changes via rollback, explaining VLM CLI usage, or developing/modifying VLM features (parser, providers, planner, executor, commands, tests).
description: Operate and extend the Video Library Manager (`vlm`) with a safety-first, human-in-the-loop workflow across scan, parse, enrich, analyze, plan, review-plan, apply-review, execute, rollback, and developer verification. Use when requests involve organizing a video library, producing or reviewing `artifacts/inventory.csv`, `artifacts/identities.json`, `artifacts/analysis.json`, `artifacts/plan.json`, tuning VLM config templates, resolving duplicates or episode gaps, running dry-run/confirm execution, recovering changes via rollback, explaining VLM CLI usage, or developing/modifying VLM features (parser, providers, planner, executor, commands, tests).
---
# VLM Library Workflow
@@ -12,31 +12,35 @@ description: Operate and extend the Video Library Manager (`vlm`) with a safety-
Run the repository's built-in media organization pipeline with consistent safety checks and explicit output verification. Prefer incremental, reviewable steps and never skip dry-run and plan inspection before destructive operations.
**Do not commit** generated CSV/JSON under `artifacts/` or at the repository root.
## Workflow Order
Run commands in this default sequence unless the user asks for a specific stage:
1. `vlm config init` then set `library_root` in `~/.vlm/config.yaml`
2. `vlm scan` to produce `inventory.csv`
3. `vlm parse --inventory inventory.csv` to produce metadata-rich `identities.json`
2. `vlm scan` `artifacts/inventory.csv`
3. `vlm parse --inventory artifacts/inventory.csv` `artifacts/identities.json` (v2 schema)
4. `vlm enrich` when bilingual titles and reputation signals are needed
5. `vlm analyze --inventory inventory.csv` to produce `analysis.json`
6. `vlm plan --analysis analysis.json` to produce `plan.json`
7. `vlm execute` (dry-run) and inspect summary
8. `vlm execute --confirm` only after explicit user confirmation
9. `vlm rollback` if the user requests revert
5. `vlm analyze --inventory artifacts/inventory.csv` `artifacts/analysis.json`
6. `vlm plan --analysis artifacts/analysis.json` `artifacts/plan.json`
7. `vlm review-plan``artifacts/plan_manual_review.csv` (use `--tui` only when Textual is installed)
8. Edit CSV if needed, then `vlm apply-review` to sync decisions into `plan.json`
9. `vlm execute` (dry-run) and inspect summary
10. `vlm execute --confirm` only after explicit user confirmation
11. `vlm rollback` if the user requests revert
If `vlm` is not on PATH, prefix commands with `uv run`.
## Preflight Checks
Run these checks before executing workflow commands:
1. Confirm current working directory is repository root.
2. Probe command availability in this order:
1. `vlm --help`
2. if unavailable, switch all commands to `uv run vlm --help`
2. Probe command availability: `vlm --help` or `uv run vlm --help`.
3. Run the target subcommand `--help` when options are uncertain.
4. Confirm config validity with `vlm config validate` after config edits.
5. Verify required input files exist before downstream stages.
5. Verify required input artifacts exist under `artifacts/` (or paths passed via flags).
6. Treat `execute --confirm` as destructive and require explicit user confirmation.
## Execution Rules
@@ -44,35 +48,30 @@ Run these checks before executing workflow commands:
Follow these rules while executing tasks:
1. Prefer read-only stages first: scan, parse, enrich, analyze, plan.
2. Treat `plan.json` as reviewable contract; summarize counts and conflicts before execution.
3. Run dry-run (`vlm execute`) before `vlm execute --confirm`.
4. If execution is interrupted or results are incorrect, locate rollback logs and run `vlm rollback`.
5. Keep outputs explicit in responses: file path, record counts, and next command.
6. If user asks for partial workflow, run only required stages and clearly state skipped dependencies.
7. Before `execute --confirm`, run `vlm review-plan --input plan.json --output plan_manual_review.csv` and report high-risk counts.
8. If high-risk operations > 0, default to pause and require user explicit override to continue confirm execution.
2. Treat `artifacts/plan.json` as the reviewable contract; summarize counts and conflicts before execution.
3. Run `review-plan` and `apply-review` before `execute --confirm` when manual decisions are required.
4. Run dry-run (`vlm execute`) before `vlm execute --confirm`.
5. If execution is interrupted or results are incorrect, locate rollback logs and run `vlm rollback`.
6. Keep outputs explicit in responses: file path, record counts, and next command.
7. If the user asks for a partial workflow, run only required stages and state skipped dependencies.
8. Before `execute --confirm`, run `vlm review-plan` and report high-risk counts; pause if the user has not reviewed high-risk operations.
## Decision Points
Use these decision policies:
1. Duplicate handling:
Choose `plan.duplicate_keep` policy (`by_quality`, `by_reputation`, `first_seen`, `manual`) based on user preference.
2. Enrichment:
Skip `vlm enrich` only when user does not need translations/reputation or API keys are unavailable.
3. Metadata quality:
Prefer `vlm parse --inventory inventory.csv` when duplicate quality ranking matters.
4. Analysis-assisted planning:
Prefer `vlm plan --analysis analysis.json` when user wants automatic duplicate quarantine decisions.
5. Parser boundary risk:
Treat filenames containing resolution-like `1920x1080/1440x1080` and `Sample` clips as high-risk; require review-plan output before confirmation.
1. Duplicate handling: choose `plan.duplicate_keep` (`by_quality`, `by_reputation`, `by_reputation_quality_time`, `first_seen`, `manual`) per user preference.
2. Enrichment: skip `vlm enrich` only when translations/reputation are not needed or API keys are unavailable.
3. Metadata quality: prefer `vlm parse --inventory artifacts/inventory.csv` when duplicate quality ranking matters.
4. Analysis-assisted planning: prefer `vlm plan --analysis artifacts/analysis.json` for automatic duplicate quarantine decisions.
5. Parser boundary risk: treat resolution-like tokens (`1920x1080`) and `Sample` clips as high-risk; require review-plan output before confirmation.
## Output Contract
Return concise, operational summaries:
1. Commands executed.
2. Artifacts generated or updated.
2. Artifacts generated or updated (under `artifacts/` by default).
3. Key counts (files scanned, identities parsed, duplicate groups, plan operations).
4. Risk counts from `review-plan` (manual_review / sample_source / high_season / high_episode / conflicts).
5. Blocking errors and exact remediation command.
@@ -80,18 +79,18 @@ Return concise, operational summaries:
## Developer Verification
When modifying VLM core logic, verify integrity with these recipes:
When modifying VLM core logic:
1. **Full Suite**: `pytest`
2. **Core Components**: `pytest tests/test_scanner.py tests/test_planner.py tests/test_executor.py`
3. **Property Tests**: `pytest tests/test_analysis_properties.py`
4. **Integration**: `pytest tests/test_reports_integration.py`
1. **Full suite**: `uv run pytest -q`
2. **Core components**: `uv run pytest tests/test_scanner.py tests/test_planner.py tests/test_executor.py`
3. **Property tests**: `uv run pytest tests/test_analysis_properties.py`
4. **Lint** (with dev extras): `uv run ruff check src tests`
## References
Load these references on demand:
1. `references/command-recipes.md`: command syntax, artifact expectations, and failure triage.
2. `references/workflow.md`: end-to-end operator workflow guidance.
3. `references/cli-reference.md`: command and config option quick reference.
4. `references/dev-guide.md`: project architecture and developer modification patterns.
1. `references/command-recipes.md` command syntax, artifact expectations, failure triage.
2. `references/workflow.md` end-to-end operator workflow.
3. `references/cli-reference.md` command and config quick reference.
4. `references/dev-guide.md` architecture and developer modification patterns.
@@ -1,5 +1,5 @@
# Documentation Status
- Updated to current CLI options on 2026-02-16.
- Updated to current CLI options on 2026-06-01. Default artifact paths are under `artifacts/`.
# VLM CLI Reference
@@ -14,6 +14,8 @@
- `vlm enrich [--input JSON] [--output JSON] [--refresh-all]`: Fetch TMDB metadata.
- `vlm analyze [--input JSON] [--output JSON]`: Find gaps and duplicates.
- `vlm plan [--input JSON] [--analysis JSON] [--output JSON]`: Generate operations.
- `vlm review-plan [--input JSON] [--output CSV] [--tui]`: Export manual review CSV (optional Textual UI).
- `vlm apply-review [--plan JSON] [--csv PATH]`: Sync edited review CSV into plan.
- `vlm execute [--plan JSON] [--confirm] [--yes] [--verbose-ops] [--safe-mode] [--preserve-directories]`: Move/Rename/Quarantine operations with safety guards.
- `vlm rollback [--log PATH]`: Undo operations.
@@ -1,11 +1,11 @@
# Documentation Status
- Synced with refactor baseline on 2026-02-16.
- Synced with artifacts/ baseline on 2026-06-01.
# VLM Command Recipes
## Baseline
Run from repository root unless user specifies otherwise.
Run from repository root unless the user specifies otherwise.
```bash
vlm --help
@@ -13,7 +13,7 @@ vlm config show
vlm config validate
```
If `vlm` is not on PATH, switch to:
If `vlm` is not on PATH:
```bash
uv run vlm --help
@@ -23,52 +23,45 @@ uv run vlm config validate
## End-to-End Pipeline
Default artifact paths match CLI defaults under `artifacts/`:
```bash
vlm scan --output inventory.csv
vlm parse --input inventory.csv --output identities.json --inventory inventory.csv
vlm scan
vlm parse --inventory artifacts/inventory.csv
vlm enrich
vlm analyze --input identities.json --output analysis.json --inventory inventory.csv
vlm plan --input identities.json --output plan.json --analysis analysis.json
vlm review-plan --input plan.json --output plan_manual_review.csv
vlm execute --plan plan.json
vlm execute --plan plan.json --confirm
vlm analyze --inventory artifacts/inventory.csv
vlm plan --analysis artifacts/analysis.json
vlm review-plan --input artifacts/plan.json --output artifacts/plan_manual_review.csv
vlm apply-review
vlm execute
vlm execute --confirm
```
## Artifact Expectations
1. `inventory.csv`: discovered video files with filesystem and optional ffprobe metadata.
2. `identities.json`: parsed identities for movie/series/anime/other, optionally with embedded quality metadata.
3. `analysis.json`: completeness gaps and duplicate groups with quality comparison context.
4. `plan.json`: planned operations (`move`, `rename`, `quarantine`, `no-op`) and summary data.
5. `plan_manual_review.csv`: high-risk operations requiring human confirmation before `--confirm`.
1. `artifacts/inventory.csv` discovered files with filesystem and optional ffprobe metadata.
2. `artifacts/identities.json` parsed identities (v2 when parse used `--inventory`).
3. `artifacts/analysis.json` completeness gaps and duplicate groups.
4. `artifacts/plan.json` planned operations (`move`, `rename`, `quarantine`, `no-op`).
5. `artifacts/plan_manual_review.csv` high-risk rows for human review before `--confirm`.
Do not commit these files to Git.
## Focused Workflows
```bash
# Parse only, with metadata embedding
vlm parse --inventory inventory.csv
# Analyze only
vlm analyze --input identities.json --output analysis.json --inventory inventory.csv
# Plan from analysis-assisted duplicate decisions
vlm plan --input identities.json --analysis analysis.json --output plan.json
# Roll back latest confirmed execution
vlm parse --inventory artifacts/inventory.csv
vlm analyze --input artifacts/identities.json --output artifacts/analysis.json --inventory artifacts/inventory.csv
vlm plan --input artifacts/identities.json --analysis artifacts/analysis.json --output artifacts/plan.json
vlm rollback
```
## Frequent Failure Triage
1. Missing config:
Run `vlm config init`, then set `library_root` in `~/.vlm/config.yaml`.
2. Invalid config values:
Run `vlm config validate` and fix reported keys.
3. Missing input artifact:
Run the prerequisite stage (`scan` before `parse`, `parse` before `analyze`, `analyze` before analysis-driven `plan`).
4. Unexpected duplicate decisions:
Check `plan.duplicate_keep` in config and rerun `vlm plan --analysis analysis.json`.
5. Unsafe or undesired execution results:
Run `vlm rollback` and inspect plan before re-running `execute --confirm`.
6. `vlm` command not found:
Use `uv run vlm ...` fallback for the same subcommands.
1. Missing config: `vlm config init`, set `library_root`.
2. Invalid config: `vlm config validate`.
3. Missing input artifact: run prerequisite stage (scan → parse → analyze → plan).
4. Unexpected duplicate decisions: check `plan.duplicate_keep`, rerun `vlm plan --analysis artifacts/analysis.json`.
5. Unsafe execution: `vlm rollback`, re-run `review-plan` / `apply-review`.
6. `vlm` not found: use `uv run vlm ...`.
7. TMDB rate limits: lower `enrichment.max_concurrency` in config and retry later.
@@ -1,5 +1,5 @@
# Documentation Status
- Synced with refactor baseline on 2026-02-16.
- Synced with artifacts/ baseline on 2026-06-01.
# VLM Workflow Guide
@@ -11,30 +11,30 @@ This guide details the standard end-to-end process for organizing a video librar
```bash
vlm config init
```
Edit `~/.vlm/config.yaml` to set `library_root`.
Edit `~/.vlm/config.yaml` to set `library_root` and optionally `workspace_dir: artifacts`.
### Library Scan
```bash
vlm scan
```
- **Goal**: Create `inventory.csv`.
- **Goal**: Create `artifacts/inventory.csv`.
- **Note**: Ensure `ffprobe` is installed for resolution and codec metadata.
## 2. Identification
### Filename Parsing
```bash
vlm parse --inventory inventory.csv
vlm parse --inventory artifacts/inventory.csv
```
- **Goal**: Create `identities.json`.
- **Why --inventory?**: It embeds video metadata (v2 schema) required for quality-based duplicate resolution.
- **Goal**: Create `artifacts/identities.json`.
- **Why --inventory?**: Embeds video metadata (v2 schema) required for quality-based duplicate resolution.
### Metadata Enrichment
```bash
vlm enrich
```
- **Goal**: Update `identities.json` with TMDB data.
- **Troubleshooting**: If matches are missing, check `enrichment.api_keys` in config.
- **Goal**: Update `artifacts/identities.json` with TMDB data.
- **Troubleshooting**: Check `enrichment.api_keys` in config; never commit `~/.vlm/config.yaml`.
## 3. Analysis and Planning
@@ -42,25 +42,29 @@ vlm enrich
```bash
vlm analyze
```
- **Goal**: Create `analysis.json`.
- **Outputs**: Lists duplicate files and episode gaps in series.
- **Goal**: Create `artifacts/analysis.json`.
- **Outputs**: Episode gaps and duplicate groups.
### Create Execution Plan
```bash
vlm plan --analysis analysis.json
vlm plan --analysis artifacts/analysis.json
```
- **Goal**: Create `plan.json`.
- **Strategy**: VLM uses the `duplicate_keep` policy (default: `by_reputation`) to decide which files to keep and which to quarantine.
- **Goal**: Create `artifacts/plan.json`.
- **Strategy**: Uses `plan.duplicate_keep` (default: `by_reputation`) for duplicate decisions.
## 4. Execution and Safety
## 4. Review and Execution
### Review the Plan
Open `plan.json` and check the `human_summary` field or the proposed `operations`.
### Human review
```bash
vlm review-plan
# Optional: vlm review-plan --tui (requires textual extra)
vlm apply-review # after editing artifacts/plan_manual_review.csv
```
### Execute Changes
```bash
vlm execute # Dry-run
vlm execute --confirm # Actual operations
vlm execute --confirm # Actual operations (explicit confirmation)
```
### Reverting Changes
+1 -1
View File
@@ -6,7 +6,7 @@ This module provides functionality to analyze video collections for:
- Quality comparison (comparing video quality metrics)
"""
from vlm.models import SeriesIdentity, SeasonCompleteness, DuplicateGroup, VideoFile, MovieIdentity
from vlm.models import DuplicateGroup, MovieIdentity, SeasonCompleteness, SeriesIdentity, VideoFile
def analyze_series_completeness(episodes: list[SeriesIdentity]) -> list[SeasonCompleteness]:
-1
View File
@@ -18,7 +18,6 @@ from vlm.cli_helpers import (
default_config_path,
initialize_cli_context,
resolve_legacy_default_input_path,
review_plan_tui_streams_ok as _review_plan_tui_streams_ok,
)
from vlm.context import CLIContext, pass_context
-2
View File
@@ -18,7 +18,6 @@ from vlm.models import (
AnalysisDuplicateIdentityRecord,
AnalysisDuplicateRecord,
MovieIdentity,
SeriesIdentity,
)
@@ -29,7 +28,6 @@ def analyze_cmd(
inventory: Optional[Path],
) -> None:
"""Run analysis: completeness and duplicate detection."""
config = ctx.config
logger = ctx.logger
click.echo(f"Analyzing identities from: {input}")
+1 -1
View File
@@ -6,7 +6,7 @@ from pathlib import Path
import click
from vlm.cli_helpers import command_error, default_config_path
from vlm.cli_helpers import command_error
from vlm.config import create_default_config, validate_config
from vlm.context import CLIContext
+1 -1
View File
@@ -9,8 +9,8 @@ import click
from vlm.context import CLIContext
from vlm.executor import ExecutionEngine
from vlm.planner import load_plan
from vlm.plan_render import preferred_plan_summary
from vlm.planner import load_plan
from vlm.state import StateManager
+7 -1
View File
@@ -9,7 +9,13 @@ import click
from vlm.context import CLIContext
from vlm.io import load_inventory_csv, save_identities_json
from vlm.models import IdentityRecord, MovieIdentityRecord, ParsedIdentitiesJSON, SeriesIdentityRecord, VideoFile
from vlm.models import (
IdentityRecord,
MovieIdentityRecord,
ParsedIdentitiesJSON,
SeriesIdentityRecord,
VideoFile,
)
from vlm.parser import parse_movie, parse_series
from vlm.utils import utc_now
+1 -1
View File
@@ -7,7 +7,7 @@ from typing import Optional
import click
from vlm.context import CLIContext
from vlm.io import identities_to_plan_input, load_identities_json, load_analysis_json
from vlm.io import identities_to_plan_input, load_analysis_json, load_identities_json
from vlm.planner import generate_plan, save_plan
+6 -1
View File
@@ -9,7 +9,12 @@ from typing import Optional
import click
from vlm.cli_helpers import command_error, default_artifact_path, resolve_legacy_default_input_path, review_plan_tui_streams_ok
from vlm.cli_helpers import (
command_error,
default_artifact_path,
resolve_legacy_default_input_path,
review_plan_tui_streams_ok,
)
from vlm.context import CLIContext
from vlm.io import load_analysis_json, load_identities_json
from vlm.plan_render import (
-1
View File
@@ -1,6 +1,5 @@
"""Scan command implementation."""
import sys
from pathlib import Path
from typing import Optional
+1
View File
@@ -3,6 +3,7 @@
from dataclasses import dataclass, field
from pathlib import Path
from typing import Optional
import yaml
DEFAULT_VIDEO_EXTENSIONS = [
+1 -1
View File
@@ -1,7 +1,7 @@
"""Duplicate group resolution: choose which file to keep when consuming analysis."""
from datetime import datetime
import re
from datetime import datetime
from pathlib import Path
from typing import Optional, Union
+2 -2
View File
@@ -9,12 +9,12 @@ import hashlib
import json
from concurrent.futures import ThreadPoolExecutor, as_completed
from typing import Callable, Optional
from urllib.request import urlopen, Request
from urllib.request import Request, urlopen
from vlm.cache import EnrichmentCache
from vlm.config import Config
from vlm.providers import ProviderResult, TMDBAuthError, TMDBProvider, TMDBProviderError
from vlm.parser import normalize_title
from vlm.providers import ProviderResult, TMDBAuthError, TMDBProvider, TMDBProviderError
from vlm.utils import sanitize_path_component
RefreshMode = str
+8 -8
View File
@@ -14,13 +14,13 @@ from pathlib import Path
from typing import Optional
from uuid import uuid4
from .config import Config
from .logging_config import get_logger, log_operation
from .models import ExecutionPlan, FileOperation, OperationResult, RollbackLog
from .quarantine import QuarantineManager
from .state import StateManager
from .transaction import TransactionLog
from .utils import ensure_utc, is_within_root, utc_now
from vlm.config import Config
from vlm.logging_config import get_logger, log_operation
from vlm.models import ExecutionPlan, FileOperation, OperationResult, RollbackLog
from vlm.quarantine import QuarantineManager
from vlm.state import StateManager
from vlm.transaction import TransactionLog
from vlm.utils import ensure_utc, is_within_root, utc_now
class ExecutionEngine:
@@ -681,7 +681,7 @@ class ExecutionEngine:
log_operation(
self.logger,
logging.DEBUG,
f"Skipping rollback of no-op operation",
"Skipping rollback of no-op operation",
operation_type="rollback",
file_path=operation.source_path
)
+2 -3
View File
@@ -7,9 +7,9 @@ from pathlib import Path
from typing import Union
from vlm.models import (
AnalysisJSON,
AnalysisCompletenessRecord,
AnalysisDuplicateRecord,
AnalysisJSON,
ExecutionPlan,
FileOperation,
MovieIdentity,
@@ -21,9 +21,8 @@ from vlm.models import (
SeriesIdentityRecord,
VideoFile,
)
from vlm.utils import ensure_utc, utc_now
from vlm.scanner import load_inventory_csv, save_inventory_csv
from vlm.utils import ensure_utc, utc_now
__all__ = [
"load_inventory_csv",
-1
View File
@@ -12,7 +12,6 @@ import logging.handlers
from pathlib import Path
from typing import Optional
DEFAULT_LOG_FILE = "vlm.log"
MAX_LOG_SIZE = 10 * 1024 * 1024 # 10MB in bytes
BACKUP_COUNT = 5 # Keep 5 backup log files
+1 -1
View File
@@ -10,7 +10,7 @@ from typing import Any
from vlm.models import ExecutionPlan, FileOperation, MovieIdentity, SeriesIdentity
from vlm.review_display import display_path
from vlm.utils import canonical_path_str, format_size, is_sample_path, utc_now
from vlm.utils import canonical_path_str, format_size, is_sample_path
REVIEW_APPLIED_AT_KEY = "review_applied_at"
REVIEW_CSV_PATH_KEY = "review_csv_path"
+8 -10
View File
@@ -4,16 +4,21 @@ This module generates structured execution plans that specify how video files
should be organized based on their parsed identities and configuration templates.
"""
import re
import uuid
from dataclasses import replace
from pathlib import Path
from typing import Optional, Union
from dataclasses import replace
from vlm.config import Config
from vlm.duplicate_resolve import DuplicateResolutionError, choose_keep_index
from vlm.io import load_execution_plan, save_execution_plan
from vlm.models import (
ExecutionPlan,
FileOperation,
MovieIdentity,
SeriesIdentity,
VideoFile,
)
from vlm.plan_review import (
REVIEW_APPLIED_AT_KEY,
REVIEW_CSV_PATH_KEY,
@@ -27,13 +32,6 @@ from vlm.utils import (
sanitize_path_component,
utc_now,
)
from vlm.models import (
ExecutionPlan,
FileOperation,
MovieIdentity,
SeriesIdentity,
VideoFile,
)
QUARANTINE_REASON_DUPLICATE = "重复项(已按外部评分保留一条)"
QUARANTINE_REASON_DUPLICATE_FALLBACK_QUALITY = "重复项(外部评分缺失/并列,按画质回退保留一条)"
+1 -1
View File
@@ -3,7 +3,7 @@
from __future__ import annotations
from dataclasses import dataclass, field
from typing import Protocol, Optional
from typing import Optional, Protocol
@dataclass
+2 -2
View File
@@ -16,10 +16,10 @@ from pathlib import Path
from typing import Optional
from .config import Config
from .utils import utc_now
from .logging_config import get_logger, log_operation
from .models import QuarantineEntry, QuarantineManifest, OperationResult, FileOperation
from .models import FileOperation, OperationResult, QuarantineEntry, QuarantineManifest
from .scanner import categorize_file
from .utils import utc_now
class QuarantineManager:
+1 -1
View File
@@ -14,7 +14,7 @@ from datetime import datetime, timezone
from io import StringIO
from pathlib import Path
from vlm.models import SeasonCompleteness, DuplicateGroup, VideoFile, MovieIdentity, SeriesIdentity
from vlm.models import DuplicateGroup, MovieIdentity, SeasonCompleteness, VideoFile
logger = logging.getLogger(__name__)
-1
View File
@@ -5,7 +5,6 @@ from __future__ import annotations
from dataclasses import dataclass, field
from pathlib import Path
from vlm.plan_review import save_review_csv
from vlm.review_display import (
build_csv_rows,
+1 -1
View File
@@ -6,11 +6,11 @@ directory structure.
"""
import csv
from concurrent.futures import ThreadPoolExecutor, as_completed
import json
import logging
import os
import subprocess
from concurrent.futures import ThreadPoolExecutor, as_completed
from datetime import datetime, timezone
from pathlib import Path
from typing import Callable, Iterator, Optional
-1
View File
@@ -14,7 +14,6 @@ from typing import Optional
from vlm.models import FileState, StateStore
from vlm.utils import canonical_path, canonical_path_str, ensure_utc, utc_now
# Valid status values
VALID_STATUSES = {"reviewed", "ignored", "planned", "executed", "quarantined"}
+2 -3
View File
@@ -5,12 +5,11 @@ before they are executed, allowing for crash recovery and audit trails.
"""
import json
from datetime import datetime
from pathlib import Path
from typing import Any, Optional, Dict, List
from typing import Any, Dict, Optional
from uuid import uuid4
from vlm.models import ExecutionPlan, FileOperation
from vlm.models import ExecutionPlan
from vlm.utils import utc_now
+1 -1
View File
@@ -1,8 +1,8 @@
"""Shared utilities for Video Library Manager."""
import re
from datetime import datetime, timezone
from pathlib import Path
import re
def utc_now() -> datetime:
+4 -4
View File
@@ -3,11 +3,11 @@
Tests series completeness analysis, duplicate detection, and quality comparison.
"""
import pytest
from pathlib import Path
from datetime import datetime, timezone
from vlm.models import SeriesIdentity, SeasonCompleteness, MovieIdentity, VideoFile, DuplicateGroup
from vlm.analysis import analyze_series_completeness, detect_duplicates, compare_quality
from pathlib import Path
from vlm.analysis import analyze_series_completeness, compare_quality, detect_duplicates
from vlm.models import MovieIdentity, SeriesIdentity, VideoFile
class TestSeriesCompletenessAnalysis:
+11 -10
View File
@@ -4,18 +4,19 @@ Tests universal correctness properties using Hypothesis with minimum 100 iterati
Each test validates a specific property from the design document.
"""
import pytest
from pathlib import Path
from datetime import datetime, timezone
from hypothesis import given, strategies as st, settings
from vlm.models import (
SeriesIdentity, SeasonCompleteness, MovieIdentity, VideoFile, DuplicateGroup
)
from vlm.analysis import analyze_series_completeness, detect_duplicates, compare_quality
from vlm.reports import (
generate_completeness_report, generate_duplicate_report, generate_summary_report
)
from pathlib import Path
from hypothesis import given, settings
from hypothesis import strategies as st
from vlm.analysis import analyze_series_completeness, detect_duplicates
from vlm.models import DuplicateGroup, MovieIdentity, SeasonCompleteness, SeriesIdentity, VideoFile
from vlm.reports import (
generate_completeness_report,
generate_duplicate_report,
generate_summary_report,
)
# Custom strategies for generating test data
-1
View File
@@ -1,7 +1,6 @@
"""Tests for the parse CLI command."""
import json
from pathlib import Path
from click.testing import CliRunner
+1 -4
View File
@@ -3,13 +3,10 @@
This module tests the CLI interface for quarantine operations.
"""
import json
from pathlib import Path
from click.testing import CliRunner
import pytest
from click.testing import CliRunner
from vlm.cli import main
from vlm.config import Config
@pytest.fixture
+2 -3
View File
@@ -4,10 +4,9 @@ Tests the report commands to ensure they properly wire to the Report Generator.
"""
import json
import csv
from pathlib import Path
from datetime import datetime, timezone
from click.testing import CliRunner
from vlm.cli import main
+1 -1
View File
@@ -1,8 +1,8 @@
"""Tests for CLI rollback command."""
import json
from pathlib import Path
from datetime import datetime, timezone
from pathlib import Path
import pytest
from click.testing import CliRunner
-1
View File
@@ -1,6 +1,5 @@
"""Tests for CLI scan command options."""
from pathlib import Path
from unittest.mock import patch
from click.testing import CliRunner
+1 -3
View File
@@ -1,13 +1,11 @@
"""Tests for CLI state commands."""
import json
import tempfile
from pathlib import Path
import pytest
from click.testing import CliRunner
from vlm.cli import main, default_config_path
from vlm.cli import default_config_path, main
@pytest.fixture
+5 -3
View File
@@ -1,9 +1,11 @@
"""Unit tests for Configuration Manager."""
from pathlib import Path
import pytest
import yaml
from pathlib import Path
from vlm.config import Config, load_config, create_default_config, validate_config
from vlm.config import Config, create_default_config, load_config, validate_config
class TestConfig:
@@ -311,7 +313,7 @@ class TestCreateDefaultConfig:
"""Test that create_default_config creates parent directories."""
config_file = tmp_path / "subdir" / "config.yaml"
config = create_default_config(config_file)
create_default_config(config_file)
assert config_file.exists()
assert config_file.parent.exists()
+1 -4
View File
@@ -1,12 +1,9 @@
"""Integration tests for duplicate resolution with embedded video metadata."""
import json
from pathlib import Path
import pytest
from vlm.io import load_identities_json, identities_to_analysis_input
from vlm.analysis import detect_duplicates
from vlm.io import identities_to_analysis_input, load_identities_json
class TestDuplicateQualityWithMetadata:
+3 -2
View File
@@ -1,10 +1,11 @@
"""Unit tests for duplicate resolution strategies."""
import pytest
from pathlib import Path
from vlm.models import MovieIdentity
import pytest
from vlm.duplicate_resolve import DuplicateResolutionError, choose_keep_index
from vlm.models import MovieIdentity
def _mi(title: str = "Test", year: int | None = 2020) -> MovieIdentity:
+1 -2
View File
@@ -5,7 +5,6 @@ Tests execution mode handling, dry-run simulation, and actual file operations.
import logging
from datetime import datetime, timezone
from pathlib import Path
from uuid import uuid4
import pytest
@@ -573,7 +572,7 @@ class TestRollbackLogSaving:
data = json.load(f)
# Verify timestamps are in ISO format
from datetime import datetime, timezone
from datetime import datetime
executed_at = datetime.fromisoformat(data["executed_at"])
assert executed_at is not None
+1 -1
View File
@@ -16,7 +16,7 @@ from vlm.io import (
save_execution_plan,
save_identities_json,
)
from vlm.models import ExecutionPlan, FileOperation, VideoFile
from vlm.models import ExecutionPlan, FileOperation
class TestVideoFileFromRecord:
+3 -4
View File
@@ -1,17 +1,16 @@
"""Unit tests for logging configuration."""
import logging
import tempfile
from pathlib import Path
import pytest
from vlm.logging_config import (
setup_logging,
get_logger,
log_operation,
MAX_LOG_SIZE,
default_log_dir,
get_logger,
log_operation,
setup_logging,
)
+5 -6
View File
@@ -1,10 +1,13 @@
"""Tests for the identity parser module."""
import pytest
from hypothesis import assume, given, settings
from hypothesis import strategies as st
from vlm.parser import (
group_episodes,
normalize_title,
parse_movie,
parse_series,
normalize_title,
remove_quality_tags,
remove_release_groups,
)
@@ -506,10 +509,6 @@ class TestEpisodeGrouping:
# Property-Based Tests
# ============================================================================
from hypothesis import given, strategies as st, assume, settings
from vlm.parser import group_episodes
import logging
# Custom strategies for generating test data
@st.composite
-1
View File
@@ -1,7 +1,6 @@
"""Security tests for path generation and execution boundaries."""
from datetime import datetime, timezone
from pathlib import Path
from uuid import uuid4
from vlm.config import Config
+1 -4
View File
@@ -1,11 +1,9 @@
"""Tests for plan review helpers."""
import csv
from pathlib import Path
from vlm.models import ExecutionPlan, FileOperation
from vlm.plan_render import render_review_verdict
from vlm.plan_review import (
REVIEW_APPLIED_AT_KEY,
build_duplicate_path_maps,
build_identity_lookup,
check_review_requirements,
@@ -15,7 +13,6 @@ from vlm.plan_review import (
review_plan,
save_review_csv,
)
from vlm.plan_render import render_review_verdict
from vlm.plan_structure_preview import build_structure_preview_lines
from vlm.planner import apply_review_to_plan, load_plan, save_plan
from vlm.utils import utc_now
+10 -7
View File
@@ -1,10 +1,11 @@
"""Unit tests for plan generator."""
import json
import pytest
from datetime import datetime, timezone
from pathlib import Path
import pytest
from vlm.config import Config
from vlm.models import (
ExecutionPlan,
@@ -1011,7 +1012,7 @@ def test_save_plan_to_json(config, tmp_path):
def test_load_plan_from_json(config, tmp_path):
"""Test loading execution plan from JSON file."""
from vlm.planner import save_plan, load_plan
from vlm.planner import load_plan, save_plan
# Create and save a plan
video_file = VideoFile(
@@ -1058,7 +1059,7 @@ def test_load_plan_from_json(config, tmp_path):
def test_save_and_load_plan_with_conflicts(config, tmp_path):
"""Test saving and loading plan with conflict information."""
from vlm.planner import save_plan, load_plan
from vlm.planner import load_plan, save_plan
# Set up config with tmp_path as library root
config.library_root = tmp_path
@@ -1102,7 +1103,7 @@ def test_save_and_load_plan_with_conflicts(config, tmp_path):
def test_save_and_load_plan_with_no_op_operations(config, tmp_path):
"""Test saving and loading plan with no-op operations."""
from vlm.planner import save_plan, load_plan
from vlm.planner import load_plan, save_plan
# Create files that will generate no-op operations
files_and_identities = [
@@ -1189,7 +1190,7 @@ def test_save_plan_json_is_human_readable(config, tmp_path):
def test_save_plan_with_multiple_operations(config, tmp_path):
"""Test saving plan with multiple operations of different types."""
from vlm.planner import save_plan, load_plan
from vlm.planner import load_plan, save_plan
files_and_identities = [
# Movie (move)
@@ -1265,9 +1266,10 @@ def test_load_plan_file_not_found(tmp_path):
def test_load_plan_invalid_json(tmp_path):
"""Test loading plan from invalid JSON raises JSONDecodeError."""
from vlm.planner import load_plan
import json
from vlm.planner import load_plan
invalid_json_path = tmp_path / "invalid.json"
with open(invalid_json_path, 'w') as f:
f.write("{ this is not valid json }")
@@ -1278,9 +1280,10 @@ def test_load_plan_invalid_json(tmp_path):
def test_plan_json_includes_all_required_fields(config, tmp_path):
"""Test that saved JSON includes plan_id, created_at, operations, and summary."""
from vlm.planner import save_plan
import json
from vlm.planner import save_plan
video_file = VideoFile(
path=Path("/mnt/nas/videos/movie/Movie.2020.mkv"),
filename="Movie.2020.mkv",
+5 -4
View File
@@ -1,13 +1,14 @@
"""Tests for quarantine manager."""
import json
import pytest
from datetime import datetime
from pathlib import Path
from datetime import datetime, timezone
from vlm.quarantine import QuarantineManager
import pytest
from vlm.config import Config
from vlm.models import QuarantineEntry, QuarantineManifest
from vlm.models import QuarantineManifest
from vlm.quarantine import QuarantineManager
class TestQuarantineManager:
+10 -9
View File
@@ -7,19 +7,20 @@ import csv
import json
import os
import time
import pytest
from io import StringIO
from pathlib import Path
from datetime import datetime, timezone
from vlm.models import SeasonCompleteness, DuplicateGroup, VideoFile, MovieIdentity, SeriesIdentity
from pathlib import Path
import pytest
from vlm.models import DuplicateGroup, MovieIdentity, SeasonCompleteness, SeriesIdentity, VideoFile
from vlm.reports import (
generate_inventory_report,
generate_completeness_report,
generate_duplicate_report,
generate_summary_report,
_format_duration,
_format_episode_list,
_format_size,
_format_duration
generate_completeness_report,
generate_duplicate_report,
generate_inventory_report,
generate_summary_report,
)
+8 -3
View File
@@ -4,11 +4,16 @@ Tests the complete workflow from analysis to report generation.
"""
import json
from pathlib import Path
from datetime import datetime, timezone
from vlm.models import SeriesIdentity, VideoFile, MovieIdentity
from pathlib import Path
from vlm.analysis import analyze_series_completeness, detect_duplicates
from vlm.reports import generate_completeness_report, generate_duplicate_report, generate_summary_report
from vlm.models import MovieIdentity, SeriesIdentity, VideoFile
from vlm.reports import (
generate_completeness_report,
generate_duplicate_report,
generate_summary_report,
)
class TestReportsIntegration:
+8 -11
View File
@@ -1,15 +1,14 @@
"""Unit tests for the inventory scanner module."""
import os
import threading
import tempfile
import time
import csv
import json
import os
import subprocess
import threading
import time
from datetime import datetime, timezone
from pathlib import Path
from unittest.mock import patch, MagicMock
import subprocess
import json
from unittest.mock import MagicMock, patch
import pytest
@@ -17,10 +16,10 @@ from vlm.config import Config
from vlm.models import VideoFile
from vlm.scanner import (
categorize_file,
scan_library,
extract_metadata,
save_inventory_csv,
load_inventory_csv,
save_inventory_csv,
scan_library,
)
@@ -932,7 +931,6 @@ class TestInventoryReports:
assert output_file.exists()
# Read and verify content
import csv
with open(output_file, 'r', encoding='utf-8') as f:
# Skip comment lines
lines = [line for line in f if not line.startswith('#')]
@@ -1179,7 +1177,6 @@ class TestInventoryReports:
save_inventory_json(video_files, json_file, library_root)
# Read CSV data
import csv
with open(csv_file, 'r', encoding='utf-8') as f:
lines = [line for line in f if not line.startswith('#')]
reader = csv.DictReader(lines)
+4 -7
View File
@@ -2,16 +2,13 @@
import json
import os
import pytest
from datetime import datetime, timezone
from pathlib import Path
from vlm.state import (
load_state,
save_state,
StateManager,
VALID_STATUSES
)
import pytest
from vlm.models import FileState, StateStore
from vlm.state import VALID_STATUSES, StateManager, load_state, save_state
class TestLoadSaveState:
-3
View File
@@ -1,10 +1,7 @@
"""Tests for utility functions."""
import tempfile
from pathlib import Path
import pytest
from vlm.utils import canonical_path, canonical_path_str, format_size, utc_now

Some files were not shown because too many files have changed in this diff Show More